-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule_unittest.cc
320 lines (245 loc) · 9.7 KB
/
module_unittest.cc
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/*
* Copyright 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "module.h"
#include "module_unittest_generated.h"
#include "os/handler.h"
#include "os/thread.h"
#include "gtest/gtest.h"
#include <functional>
#include <future>
#include <string>
using ::bluetooth::os::Thread;
namespace bluetooth {
namespace {
class ModuleTest : public ::testing::Test {
protected:
void SetUp() override {
thread_ = new Thread("test_thread", Thread::Priority::NORMAL);
registry_ = new ModuleRegistry();
}
void TearDown() override {
delete registry_;
delete thread_;
}
ModuleRegistry* registry_;
Thread* thread_;
};
os::Handler* test_module_no_dependency_handler = nullptr;
class TestModuleNoDependency : public Module {
public:
static const ModuleFactory Factory;
protected:
void ListDependencies(ModuleList* list) override {
}
void Start() override {
// A module is not considered started until Start() finishes
EXPECT_FALSE(GetModuleRegistry()->IsStarted<TestModuleNoDependency>());
test_module_no_dependency_handler = GetHandler();
}
void Stop() override {
// A module is not considered stopped until after Stop() finishes
EXPECT_TRUE(GetModuleRegistry()->IsStarted<TestModuleNoDependency>());
}
std::string ToString() const override {
return std::string("TestModuleNoDependency");
}
};
const ModuleFactory TestModuleNoDependency::Factory = ModuleFactory([]() {
return new TestModuleNoDependency();
});
os::Handler* test_module_one_dependency_handler = nullptr;
class TestModuleOneDependency : public Module {
public:
static const ModuleFactory Factory;
protected:
void ListDependencies(ModuleList* list) override {
list->add<TestModuleNoDependency>();
}
void Start() override {
EXPECT_TRUE(GetModuleRegistry()->IsStarted<TestModuleNoDependency>());
// A module is not considered started until Start() finishes
EXPECT_FALSE(GetModuleRegistry()->IsStarted<TestModuleOneDependency>());
test_module_one_dependency_handler = GetHandler();
}
void Stop() override {
EXPECT_TRUE(GetModuleRegistry()->IsStarted<TestModuleNoDependency>());
// A module is not considered stopped until after Stop() finishes
EXPECT_TRUE(GetModuleRegistry()->IsStarted<TestModuleOneDependency>());
}
std::string ToString() const override {
return std::string("TestModuleOneDependency");
}
};
const ModuleFactory TestModuleOneDependency::Factory = ModuleFactory([]() {
return new TestModuleOneDependency();
});
class TestModuleNoDependencyTwo : public Module {
public:
static const ModuleFactory Factory;
protected:
void ListDependencies(ModuleList* list) override {
}
void Start() override {
// A module is not considered started until Start() finishes
EXPECT_FALSE(GetModuleRegistry()->IsStarted<TestModuleNoDependencyTwo>());
}
void Stop() override {
// A module is not considered stopped until after Stop() finishes
EXPECT_TRUE(GetModuleRegistry()->IsStarted<TestModuleNoDependencyTwo>());
}
std::string ToString() const override {
return std::string("TestModuleNoDependencyTwo");
}
};
const ModuleFactory TestModuleNoDependencyTwo::Factory = ModuleFactory([]() {
return new TestModuleNoDependencyTwo();
});
class TestModuleTwoDependencies : public Module {
public:
static const ModuleFactory Factory;
protected:
void ListDependencies(ModuleList* list) override {
list->add<TestModuleOneDependency>();
list->add<TestModuleNoDependencyTwo>();
}
void Start() override {
EXPECT_TRUE(GetModuleRegistry()->IsStarted<TestModuleOneDependency>());
EXPECT_TRUE(GetModuleRegistry()->IsStarted<TestModuleNoDependencyTwo>());
// A module is not considered started until Start() finishes
EXPECT_FALSE(GetModuleRegistry()->IsStarted<TestModuleTwoDependencies>());
}
void Stop() override {
EXPECT_TRUE(GetModuleRegistry()->IsStarted<TestModuleOneDependency>());
EXPECT_TRUE(GetModuleRegistry()->IsStarted<TestModuleNoDependencyTwo>());
// A module is not considered stopped until after Stop() finishes
EXPECT_TRUE(GetModuleRegistry()->IsStarted<TestModuleTwoDependencies>());
}
std::string ToString() const override {
return std::string("TestModuleTwoDependencies");
}
};
const ModuleFactory TestModuleTwoDependencies::Factory = ModuleFactory([]() {
return new TestModuleTwoDependencies();
});
// To generate module unittest flatbuffer headers:
// $ flatc --cpp module_unittest.fbs
class TestModuleDumpState : public Module {
public:
static const ModuleFactory Factory;
std::string test_string_{"Initial Test String"};
protected:
void ListDependencies(ModuleList* list) override {
list->add<TestModuleNoDependency>();
}
void Start() override {
EXPECT_TRUE(GetModuleRegistry()->IsStarted<TestModuleNoDependency>());
// A module is not considered started until Start() finishes
EXPECT_FALSE(GetModuleRegistry()->IsStarted<TestModuleDumpState>());
test_module_one_dependency_handler = GetHandler();
}
void Stop() override {
EXPECT_TRUE(GetModuleRegistry()->IsStarted<TestModuleNoDependency>());
// A module is not considered stopped until after Stop() finishes
EXPECT_TRUE(GetModuleRegistry()->IsStarted<TestModuleDumpState>());
}
std::string ToString() const override {
return std::string("TestModuleDumpState");
}
DumpsysDataFinisher GetDumpsysData(flatbuffers::FlatBufferBuilder* fb_builder) const override {
auto string = fb_builder->CreateString(test_string_.c_str());
auto builder = ModuleUnitTestDataBuilder(*fb_builder);
builder.add_title(string);
auto table = builder.Finish();
return [table](DumpsysDataBuilder* builder) { builder->add_module_unittest_data(table); };
}
};
const ModuleFactory TestModuleDumpState::Factory = ModuleFactory([]() { return new TestModuleDumpState(); });
TEST_F(ModuleTest, no_dependency) {
ModuleList list;
list.add<TestModuleNoDependency>();
registry_->Start(&list, thread_);
EXPECT_TRUE(registry_->IsStarted<TestModuleNoDependency>());
EXPECT_FALSE(registry_->IsStarted<TestModuleOneDependency>());
EXPECT_FALSE(registry_->IsStarted<TestModuleNoDependencyTwo>());
EXPECT_FALSE(registry_->IsStarted<TestModuleTwoDependencies>());
registry_->StopAll();
EXPECT_FALSE(registry_->IsStarted<TestModuleNoDependency>());
EXPECT_FALSE(registry_->IsStarted<TestModuleOneDependency>());
EXPECT_FALSE(registry_->IsStarted<TestModuleNoDependencyTwo>());
EXPECT_FALSE(registry_->IsStarted<TestModuleTwoDependencies>());
}
TEST_F(ModuleTest, one_dependency) {
ModuleList list;
list.add<TestModuleOneDependency>();
registry_->Start(&list, thread_);
EXPECT_TRUE(registry_->IsStarted<TestModuleNoDependency>());
EXPECT_TRUE(registry_->IsStarted<TestModuleOneDependency>());
EXPECT_FALSE(registry_->IsStarted<TestModuleNoDependencyTwo>());
EXPECT_FALSE(registry_->IsStarted<TestModuleTwoDependencies>());
registry_->StopAll();
EXPECT_FALSE(registry_->IsStarted<TestModuleNoDependency>());
EXPECT_FALSE(registry_->IsStarted<TestModuleOneDependency>());
EXPECT_FALSE(registry_->IsStarted<TestModuleNoDependencyTwo>());
EXPECT_FALSE(registry_->IsStarted<TestModuleTwoDependencies>());
}
TEST_F(ModuleTest, two_dependencies) {
ModuleList list;
list.add<TestModuleTwoDependencies>();
registry_->Start(&list, thread_);
EXPECT_TRUE(registry_->IsStarted<TestModuleNoDependency>());
EXPECT_TRUE(registry_->IsStarted<TestModuleOneDependency>());
EXPECT_TRUE(registry_->IsStarted<TestModuleNoDependencyTwo>());
EXPECT_TRUE(registry_->IsStarted<TestModuleTwoDependencies>());
registry_->StopAll();
EXPECT_FALSE(registry_->IsStarted<TestModuleNoDependency>());
EXPECT_FALSE(registry_->IsStarted<TestModuleOneDependency>());
EXPECT_FALSE(registry_->IsStarted<TestModuleNoDependencyTwo>());
EXPECT_FALSE(registry_->IsStarted<TestModuleTwoDependencies>());
}
void post_to_module_one_handler() {
std::this_thread::sleep_for(std::chrono::milliseconds(100));
test_module_one_dependency_handler->Post(common::BindOnce([] { FAIL(); }));
}
TEST_F(ModuleTest, shutdown_with_unhandled_callback) {
ModuleList list;
list.add<TestModuleOneDependency>();
registry_->Start(&list, thread_);
test_module_no_dependency_handler->Post(common::BindOnce(&post_to_module_one_handler));
registry_->StopAll();
}
TEST_F(ModuleTest, dump_state) {
static const char* title = "Test Dump Title";
ModuleList list;
list.add<TestModuleDumpState>();
registry_->Start(&list, thread_);
ModuleDumper dumper(*registry_, title);
std::string output;
dumper.DumpState(&output);
auto data = flatbuffers::GetRoot<DumpsysData>(output.data());
EXPECT_STREQ(title, data->title()->c_str());
auto test_data = data->module_unittest_data();
EXPECT_STREQ("Initial Test String", test_data->title()->c_str());
TestModuleDumpState* test_module =
static_cast<TestModuleDumpState*>(registry_->Start(&TestModuleDumpState::Factory, nullptr));
test_module->test_string_ = "A Second Test String";
dumper.DumpState(&output);
data = flatbuffers::GetRoot<DumpsysData>(output.data());
test_data = data->module_unittest_data();
EXPECT_STREQ("A Second Test String", test_data->title()->c_str());
registry_->StopAll();
}
} // namespace
} // namespace bluetooth