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 pathtimer.cpp
112 lines (83 loc) · 2.54 KB
/
timer.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <unet/timer.hpp>
namespace unet {
using testing::InSequence;
using testing::Invoke;
using testing::MockFunction;
static const std::chrono::steady_clock::time_point kTpNowBase{};
TEST(TimerTest, RunAfter) {
TimerManager manager{kTpNowBase};
MockFunction<void()> f;
MockFunction<void()> g;
{
InSequence s;
EXPECT_CALL(g, Call());
EXPECT_CALL(f, Call());
EXPECT_CALL(g, Call());
}
Timer timer{manager, f.AsStdFunction()};
timer.runAfter(std::chrono::seconds{1});
manager.run(kTpNowBase + std::chrono::seconds{1});
g.Call();
manager.run(kTpNowBase + std::chrono::seconds{2});
g.Call();
}
TEST(TimerTest, RunAfterInCallback) {
TimerManager manager{kTpNowBase};
Timer* p;
MockFunction<void()> f;
MockFunction<void()> g;
{
InSequence s;
EXPECT_CALL(f, Call()).WillOnce(Invoke([&p]() {
// Make sure an infinite loop does not happen...
p->runAfter(std::chrono::seconds{0});
}));
EXPECT_CALL(g, Call());
EXPECT_CALL(f, Call());
}
Timer timer{manager, f.AsStdFunction()};
timer.runAfter(std::chrono::seconds{0});
p = &timer;
manager.run(kTpNowBase + std::chrono::seconds{1});
g.Call();
manager.run(kTpNowBase + std::chrono::seconds{2});
}
TEST(TimerTest, RunAfterMultipleWithSameDelay) {
TimerManager manager{kTpNowBase};
MockFunction<void()> f;
MockFunction<void()> g;
EXPECT_CALL(f, Call()).Times(1);
EXPECT_CALL(g, Call()).Times(1);
Timer timerf{manager, f.AsStdFunction()};
timerf.runAfter(std::chrono::seconds{0});
Timer timerg{manager, g.AsStdFunction()};
timerg.runAfter(std::chrono::seconds{0});
manager.run(kTpNowBase + std::chrono::seconds{1});
}
TEST(TimerTest, DropTimer) {
TimerManager manager{kTpNowBase};
MockFunction<void()> f;
EXPECT_CALL(f, Call()).Times(1);
{
Timer timer{manager, f.AsStdFunction()};
timer.runAfter(std::chrono::seconds{0});
manager.run(kTpNowBase + std::chrono::seconds{1});
}
manager.run(kTpNowBase + std::chrono::seconds{2});
}
TEST(TimerTest, DropTimerInCallback) {
TimerManager manager{kTpNowBase};
std::shared_ptr<Timer> timer;
timer = std::make_shared<Timer>(manager, [&timer]() { timer.reset(); });
timer->runAfter(std::chrono::seconds{0});
manager.run(kTpNowBase + std::chrono::seconds{1});
}
TEST(TimerTest, Now) {
TimerManager manager{kTpNowBase};
ASSERT_EQ(manager.now(), kTpNowBase);
manager.run(kTpNowBase + std::chrono::seconds{1});
ASSERT_EQ(manager.now(), kTpNowBase + std::chrono::seconds{1});
}
} // namespace unet