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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
#include <cerrno>
#include <functional>
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <memory>
#include <sdeventplus/event.hpp>
#include <sdeventplus/exception.hpp>
#include <sdeventplus/source/child.hpp>
#include <sdeventplus/test/sdevent.hpp>
#include <sys/wait.h>
#include <systemd/sd-event.h>
#include <type_traits>
#include <utility>
namespace sdeventplus
{
namespace source
{
namespace
{
using testing::DoAll;
using testing::Return;
using testing::SaveArg;
using testing::SetArgPointee;
using UniqueEvent = std::unique_ptr<Event, std::function<void(Event*)>>;
class ChildTest : public testing::Test
{
protected:
testing::StrictMock<test::SdEventMock> mock;
sd_event_source* const expected_source =
reinterpret_cast<sd_event_source*>(1234);
sd_event* const expected_event = reinterpret_cast<sd_event*>(2345);
UniqueEvent event = make_event(expected_event);
UniqueEvent make_event(sd_event* event)
{
auto deleter = [this, event](Event* e) {
EXPECT_CALL(this->mock, sd_event_unref(event))
.WillOnce(Return(nullptr));
delete e;
};
return UniqueEvent(new Event(event, std::false_type(), &mock), deleter);
}
void expect_destruct()
{
{
testing::InSequence sequence;
EXPECT_CALL(mock, sd_event_source_set_enabled(expected_source,
SD_EVENT_OFF))
.WillOnce(Return(0));
EXPECT_CALL(mock, sd_event_source_unref(expected_source))
.WillOnce(Return(nullptr));
}
EXPECT_CALL(mock, sd_event_unref(expected_event))
.WillOnce(Return(nullptr));
}
};
TEST_F(ChildTest, ConstructSuccess)
{
const pid_t pid = 50;
const int options = WEXITED;
EXPECT_CALL(mock, sd_event_ref(expected_event))
.WillOnce(Return(expected_event));
sd_event_child_handler_t handler;
EXPECT_CALL(mock, sd_event_add_child(expected_event, testing::_, pid,
options, testing::_, nullptr))
.WillOnce(DoAll(SetArgPointee<1>(expected_source), SaveArg<4>(&handler),
Return(0)));
void* userdata;
EXPECT_CALL(mock, sd_event_source_set_userdata(expected_source, testing::_))
.WillOnce(DoAll(SaveArg<1>(&userdata), Return(nullptr)));
int completions = 0;
const siginfo_t* return_si;
Child::Callback callback = [&](Child&, const siginfo_t* si) {
return_si = si;
completions++;
};
Child child(*event, pid, options, std::move(callback));
EXPECT_FALSE(callback);
EXPECT_EQ(&child, userdata);
EXPECT_EQ(0, completions);
const siginfo_t* expected_si = reinterpret_cast<siginfo_t*>(865);
EXPECT_EQ(0, handler(nullptr, expected_si, &child));
EXPECT_EQ(1, completions);
EXPECT_EQ(expected_si, return_si);
child.set_callback(std::bind([]() {}));
EXPECT_EQ(0, handler(nullptr, expected_si, &child));
EXPECT_EQ(1, completions);
expect_destruct();
}
TEST_F(ChildTest, ConstructError)
{
const pid_t pid = 50;
const int options = WEXITED;
EXPECT_CALL(mock, sd_event_add_child(expected_event, testing::_, pid,
options, testing::_, nullptr))
.WillOnce(Return(-EINVAL));
int completions = 0;
Child::Callback callback = [&completions](Child&, const siginfo_t*) {
completions++;
};
EXPECT_THROW(Child(*event, pid, options, std::move(callback)),
SdEventError);
EXPECT_TRUE(callback);
EXPECT_EQ(0, completions);
}
class ChildMethodTest : public ChildTest
{
protected:
std::unique_ptr<Child> child;
void SetUp()
{
const pid_t pid = 50;
const int options = WEXITED;
EXPECT_CALL(mock, sd_event_ref(expected_event))
.WillOnce(Return(expected_event));
EXPECT_CALL(mock, sd_event_add_child(expected_event, testing::_, pid,
options, testing::_, nullptr))
.WillOnce(DoAll(SetArgPointee<1>(expected_source), Return(0)));
EXPECT_CALL(mock,
sd_event_source_set_userdata(expected_source, testing::_))
.WillOnce(Return(nullptr));
child = std::make_unique<Child>(*event, pid, options,
[](Child&, const siginfo_t*) {});
}
void TearDown()
{
expect_destruct();
child.reset();
}
};
TEST_F(ChildMethodTest, GetPidSuccess)
{
const pid_t pid = 32;
EXPECT_CALL(mock,
sd_event_source_get_child_pid(expected_source, testing::_))
.WillOnce(DoAll(SetArgPointee<1>(pid), Return(0)));
EXPECT_EQ(pid, child->get_pid());
}
TEST_F(ChildMethodTest, GetPidError)
{
EXPECT_CALL(mock,
sd_event_source_get_child_pid(expected_source, testing::_))
.WillOnce(Return(-EINVAL));
EXPECT_THROW(child->get_pid(), SdEventError);
}
} // namespace
} // namespace source
} // namespace sdeventplus
|