This repository was archived by the owner on Mar 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack.cpp
65 lines (48 loc) · 1.55 KB
/
stack.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <unet/exception.hpp>
#include <unet/stack.hpp>
namespace unet {
using testing::Invoke;
using testing::MockFunction;
using testing::NiceMock;
using testing::Test;
class MockDev : public Dev {
public:
MOCK_METHOD2(send, std::size_t(const std::uint8_t*, std::size_t));
MOCK_METHOD2(read, std::size_t(std::uint8_t*, std::size_t));
MOCK_CONST_METHOD0(maxTransmissionUnit, std::size_t());
};
class StackTest : public Test {
public:
StackTest()
: stack{std::make_unique<NiceMock<MockDev>>(), EthernetAddr{},
Ipv4AddrCidr{Ipv4Addr{}, 32}, Ipv4Addr{}} {}
Stack stack;
};
TEST_F(StackTest, LoopRunStopAndRunAgain) {
MockFunction<void()> f;
auto timer = stack.createTimer(f.AsStdFunction());
timer->runAfter(std::chrono::seconds{0});
EXPECT_CALL(f, Call()).Times(2).WillRepeatedly(
Invoke([this]() { stack.stopLoop(); }));
stack.runLoop();
timer->runAfter(std::chrono::seconds{0});
stack.runLoop();
}
TEST_F(StackTest, LoopRunStopThrowAndRunAgain) {
MockFunction<void()> f1;
auto timer1 = stack.createTimer(f1.AsStdFunction());
timer1->runAfter(std::chrono::seconds{0});
EXPECT_CALL(f1, Call()).WillOnce(Invoke([this]() {
stack.stopLoop();
stack.runLoop();
}));
ASSERT_THROW(stack.runLoop(), Exception);
MockFunction<void()> f2;
auto timer2 = stack.createTimer(f2.AsStdFunction());
timer2->runAfter(std::chrono::seconds{0});
EXPECT_CALL(f2, Call()).WillOnce(Invoke([this]() { stack.stopLoop(); }));
stack.runLoop();
}
} // namespace unet