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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
media / audio / alive_checker_unittest.cc [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include <utility>
#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "base/synchronization/waitable_event.h"
#include "base/task/sequenced_task_runner.h"
#include "base/test/task_environment.h"
#include "base/threading/thread.h"
#include "base/time/time.h"
#include "media/audio/alive_checker.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace media {
namespace {
int kCheckIntervalMs = 10;
int kTimeoutMs = 50;
} // namespace
class MockPowerObserverHelper : public PowerObserverHelper {
public:
MockPowerObserverHelper(scoped_refptr<base::SequencedTaskRunner> task_runner,
base::RepeatingClosure suspend_callback,
base::RepeatingClosure resume_callback)
: PowerObserverHelper(std::move(task_runner),
std::move(suspend_callback),
std::move(resume_callback)) {}
bool IsSuspending() const override {
DCHECK(TaskRunnerForTesting()->RunsTasksInCurrentSequence());
return is_suspending_;
}
void Suspend() {
DCHECK(TaskRunnerForTesting()->RunsTasksInCurrentSequence());
is_suspending_ = true;
SuspendCallbackForTesting()->Run();
}
void Resume() {
DCHECK(TaskRunnerForTesting()->RunsTasksInCurrentSequence());
is_suspending_ = false;
ResumeCallbackForTesting()->Run();
}
private:
bool is_suspending_ = false;
};
class AliveCheckerTest : public testing::Test {
public:
AliveCheckerTest()
: alive_checker_thread_("AliveCheckerThread"),
detected_dead_event_(base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED) {
alive_checker_thread_.StartAndWaitForTesting();
}
AliveCheckerTest(const AliveCheckerTest&) = delete;
AliveCheckerTest& operator=(const AliveCheckerTest&) = delete;
void OnDetectedDead() {
EXPECT_TRUE(alive_checker_thread_.task_runner()->BelongsToCurrentThread());
detected_dead_event_.Signal();
}
std::unique_ptr<PowerObserverHelper> CreatePowerObserverHelper(
scoped_refptr<base::SequencedTaskRunner> task_runner,
base::RepeatingClosure suspend_callback,
base::RepeatingClosure resume_callback) {
std::unique_ptr<MockPowerObserverHelper> mock_power_observer_helper =
std::make_unique<MockPowerObserverHelper>(std::move(task_runner),
std::move(suspend_callback),
std::move(resume_callback));
mock_power_observer_helper_ = mock_power_observer_helper.get();
return mock_power_observer_helper;
}
protected:
~AliveCheckerTest() override {
base::WaitableEvent done(base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED);
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE,
base::BindOnce(&AliveCheckerTest::ResetAliveCheckerOnAliveCheckerThread,
base::Unretained(this), &done));
done.Wait();
}
void CreateAliveChecker(bool stop_at_first_alive_notification,
bool pause_check_during_suspend) {
base::WaitableEvent done(base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED);
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE,
base::BindOnce(
&AliveCheckerTest::CreateAliveCheckerOnAliveCheckerThread,
base::Unretained(this), stop_at_first_alive_notification,
pause_check_during_suspend, &done));
done.Wait();
}
void StartAliveChecker() {
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&AliveChecker::Start,
base::Unretained(alive_checker_.get())));
}
void StopAliveChecker() {
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&AliveChecker::Stop,
base::Unretained(alive_checker_.get())));
}
// Notifies |alive_checker_| that we're alive, and if
// |remaining_notifications| > 1, posts a delayed task to itself on
// |alive_checker_thread_| with |remaining_notifications| decreased by 1. Can
// be called on any task runner.
void NotifyAliveMultipleTimes(int remaining_notifications,
base::TimeDelta delay) {
alive_checker_->NotifyAlive();
if (remaining_notifications > 1) {
alive_checker_thread_.task_runner()->PostDelayedTask(
FROM_HERE,
base::BindOnce(&AliveCheckerTest::NotifyAliveMultipleTimes,
base::Unretained(this), remaining_notifications - 1,
delay),
delay);
}
}
void WaitUntilDetectedDead() {
detected_dead_event_.Wait();
detected_dead_event_.Reset();
}
// Returns true if the dead callback (AliveCheckerTest::OnDetectedDead) is run
// by the AliveChecker, false if timed out.
bool WaitUntilDetectedDeadWithTimeout(base::TimeDelta timeout) {
bool signaled = detected_dead_event_.TimedWait(timeout);
detected_dead_event_.Reset();
return signaled;
}
// Calls AliveChecker::DetectedDead() on the |alive_checker_thread_| and
// returns the result.
bool GetDetectedDead() {
bool detected_dead = false;
base::WaitableEvent done(base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED);
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE,
base::BindOnce(&AliveCheckerTest::GetDetectedDeadOnAliveCheckerThread,
base::Unretained(this), &detected_dead, &done));
done.Wait();
return detected_dead;
}
// The test task environment.
base::test::TaskEnvironment task_environment_;
// The thread the checker is run on.
base::Thread alive_checker_thread_;
// AliveChecker under test.
std::unique_ptr<AliveChecker> alive_checker_;
// Mocks suspend status. Set in CreatePowerObserverHelper, owned by
// |alive_checker_|.
raw_ptr<MockPowerObserverHelper> mock_power_observer_helper_;
private:
void CreateAliveCheckerOnAliveCheckerThread(
bool stop_at_first_alive_notification,
bool pause_check_during_suspend,
base::WaitableEvent* done) {
EXPECT_TRUE(alive_checker_thread_.task_runner()->BelongsToCurrentThread());
if (pause_check_during_suspend) {
alive_checker_ = std::make_unique<AliveChecker>(
base::BindRepeating(&AliveCheckerTest::OnDetectedDead,
base::Unretained(this)),
base::Milliseconds(kCheckIntervalMs), base::Milliseconds(kTimeoutMs),
stop_at_first_alive_notification,
base::BindOnce(&AliveCheckerTest::CreatePowerObserverHelper,
base::Unretained(this)));
} else {
alive_checker_ = std::make_unique<AliveChecker>(
base::BindRepeating(&AliveCheckerTest::OnDetectedDead,
base::Unretained(this)),
base::Milliseconds(kCheckIntervalMs), base::Milliseconds(kTimeoutMs),
stop_at_first_alive_notification, false);
}
done->Signal();
}
void GetDetectedDeadOnAliveCheckerThread(bool* detected_dead,
base::WaitableEvent* done) {
EXPECT_TRUE(alive_checker_thread_.task_runner()->BelongsToCurrentThread());
*detected_dead = alive_checker_->DetectedDead();
done->Signal();
}
void ResetAliveCheckerOnAliveCheckerThread(base::WaitableEvent* done) {
EXPECT_TRUE(alive_checker_thread_.task_runner()->BelongsToCurrentThread());
mock_power_observer_helper_ = nullptr;
alive_checker_.reset();
done->Signal();
}
// Event to signal that we got a dead detection callback.
base::WaitableEvent detected_dead_event_;
};
// Start the checker, don't send alive notifications, and run until it detects
// dead. Verify that it only detects once. Repeat once.
TEST_F(AliveCheckerTest, NoAliveNotificationsDetectTwice) {
CreateAliveChecker(false, false);
StartAliveChecker();
EXPECT_FALSE(GetDetectedDead());
WaitUntilDetectedDead();
EXPECT_TRUE(GetDetectedDead());
// Verify that AliveChecker doesn't detect (runs the callback) a second time.
// It can take up to the timeout + the check interval until detection. Add a
// margin to this. The detect state should still be that we have detected
// dead.
EXPECT_FALSE(WaitUntilDetectedDeadWithTimeout(
base::Milliseconds(kTimeoutMs + kCheckIntervalMs + 10)));
EXPECT_TRUE(GetDetectedDead());
// Start again, the detect state should be reset.
StartAliveChecker();
EXPECT_FALSE(GetDetectedDead());
WaitUntilDetectedDead();
EXPECT_TRUE(GetDetectedDead());
}
// Setup the checker to stop at first alive notification. Start it and notify
// that the client is alive once. Verify that we get no dead detection.
TEST_F(AliveCheckerTest, StopAtFirstAliveNotification_DoNotify) {
CreateAliveChecker(true, false);
StartAliveChecker();
alive_checker_->NotifyAlive();
// It can take up to the timeout + the check interval until detection. Add a
// margin to this.
EXPECT_FALSE(WaitUntilDetectedDeadWithTimeout(
base::Milliseconds(kTimeoutMs + kCheckIntervalMs + 10)));
EXPECT_FALSE(GetDetectedDead());
}
// Setup the checker to stop at first alive notification. Start it and run until
// it detects dead.
TEST_F(AliveCheckerTest, StopAtFirstAliveNotification_DontNotify) {
CreateAliveChecker(true, false);
StartAliveChecker();
WaitUntilDetectedDead();
EXPECT_TRUE(GetDetectedDead());
}
// Setup the checker to pause checking when suspended. Suspend and verify that
// it doesn't detect dead. Start the checker, don't send alive notifications,
// and and verify that it doesn't detect dead. Resume and run until it detects
// dead.
TEST_F(AliveCheckerTest, SuspendResume_StartBetweenSuspendAndResume) {
CreateAliveChecker(false, true);
ASSERT_TRUE(mock_power_observer_helper_);
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&MockPowerObserverHelper::Suspend,
base::Unretained(mock_power_observer_helper_)));
StartAliveChecker();
// It can take up to the timeout + the check interval until detection. Add a
// margin to this.
EXPECT_FALSE(WaitUntilDetectedDeadWithTimeout(
base::Milliseconds(kTimeoutMs + kCheckIntervalMs + 10)));
EXPECT_FALSE(GetDetectedDead());
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&MockPowerObserverHelper::Resume,
base::Unretained(mock_power_observer_helper_)));
WaitUntilDetectedDead();
EXPECT_TRUE(GetDetectedDead());
}
// Setup the checker to stop at first alive notification and pause checking when
// suspended. Start the checker, send one alive notifications, and verify it
// doesn't detect dead. Suspend and verify that it doesn't detect dead. Resume
// and and verify that it doesn't detect dead.
TEST_F(AliveCheckerTest, SuspendResumeWithAutoStop_NotifyBeforeSuspend) {
CreateAliveChecker(true, true);
ASSERT_TRUE(mock_power_observer_helper_);
StartAliveChecker();
alive_checker_->NotifyAlive();
// It can take up to the timeout + the check interval until detection. Add a
// margin to this.
EXPECT_FALSE(WaitUntilDetectedDeadWithTimeout(
base::Milliseconds(kTimeoutMs + kCheckIntervalMs + 10)));
EXPECT_FALSE(GetDetectedDead());
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&MockPowerObserverHelper::Suspend,
base::Unretained(mock_power_observer_helper_)));
EXPECT_FALSE(WaitUntilDetectedDeadWithTimeout(
base::Milliseconds(kTimeoutMs + kCheckIntervalMs + 10)));
EXPECT_FALSE(GetDetectedDead());
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&MockPowerObserverHelper::Resume,
base::Unretained(mock_power_observer_helper_)));
EXPECT_FALSE(WaitUntilDetectedDeadWithTimeout(
base::Milliseconds(kTimeoutMs + kCheckIntervalMs + 10)));
EXPECT_FALSE(GetDetectedDead());
}
// Setup the checker to stop at first alive notification and pause checking when
// suspended. Start the checker, send one alive notifications, and verify it
// doesn't detect dead. Start it again, suspend and verify that it doesn't
// detect dead. Resume and run until detected dead.
TEST_F(AliveCheckerTest,
SuspendResumeWithAutoStop_NotifyBeforeSuspendAndRestart) {
CreateAliveChecker(true, true);
ASSERT_TRUE(mock_power_observer_helper_);
StartAliveChecker();
alive_checker_->NotifyAlive();
// It can take up to the timeout + the check interval until detection. Add a
// margin to this.
EXPECT_FALSE(WaitUntilDetectedDeadWithTimeout(
base::Milliseconds(kTimeoutMs + kCheckIntervalMs + 10)));
EXPECT_FALSE(GetDetectedDead());
StartAliveChecker();
EXPECT_FALSE(GetDetectedDead());
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&MockPowerObserverHelper::Suspend,
base::Unretained(mock_power_observer_helper_)));
EXPECT_FALSE(WaitUntilDetectedDeadWithTimeout(
base::Milliseconds(kTimeoutMs + kCheckIntervalMs + 10)));
EXPECT_FALSE(GetDetectedDead());
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&MockPowerObserverHelper::Resume,
base::Unretained(mock_power_observer_helper_)));
WaitUntilDetectedDead();
EXPECT_TRUE(GetDetectedDead());
}
// Setup the checker to stop at first alive notification and pause checking when
// suspended. Start the checker, suspend. Send one alive notification and
// verify it doesn't detected dead. Resume and verify it doesn't detected dead.
TEST_F(AliveCheckerTest,
SuspendResumeWithAutoStop_NotifyBetweenSuspendAndResume) {
CreateAliveChecker(true, true);
ASSERT_TRUE(mock_power_observer_helper_);
StartAliveChecker();
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&MockPowerObserverHelper::Suspend,
base::Unretained(mock_power_observer_helper_)));
alive_checker_->NotifyAlive();
// It can take up to the timeout + the check interval until detection. Add a
// margin to this.
EXPECT_FALSE(WaitUntilDetectedDeadWithTimeout(
base::Milliseconds(kTimeoutMs + kCheckIntervalMs + 10)));
EXPECT_FALSE(GetDetectedDead());
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&MockPowerObserverHelper::Resume,
base::Unretained(mock_power_observer_helper_)));
EXPECT_FALSE(WaitUntilDetectedDeadWithTimeout(
base::Milliseconds(kTimeoutMs + kCheckIntervalMs + 10)));
EXPECT_FALSE(GetDetectedDead());
}
// Setup the checker to stop at first alive notification and pause checking when
// suspended. Start the checker, suspend, resume, send one alive notification
// and verify it doesn't detected dead.
TEST_F(AliveCheckerTest, SuspendResumeWithAutoStop_NotifyAfterResume) {
CreateAliveChecker(true, true);
ASSERT_TRUE(mock_power_observer_helper_);
StartAliveChecker();
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&MockPowerObserverHelper::Suspend,
base::Unretained(mock_power_observer_helper_)));
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&MockPowerObserverHelper::Resume,
base::Unretained(mock_power_observer_helper_)));
alive_checker_->NotifyAlive();
// It can take up to the timeout + the check interval until detection. Add a
// margin to this.
EXPECT_FALSE(WaitUntilDetectedDeadWithTimeout(
base::Milliseconds(kTimeoutMs + kCheckIntervalMs + 10)));
EXPECT_FALSE(GetDetectedDead());
}
// Setup the checker to stop at first alive notification and pause checking when
// suspended. Start the checker suspend, and and verify it doesn't detected
// dead. Resume and run until it detects dead.
TEST_F(AliveCheckerTest, SuspendResumeWithAutoStop_DontNotify) {
CreateAliveChecker(true, true);
ASSERT_TRUE(mock_power_observer_helper_);
StartAliveChecker();
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&MockPowerObserverHelper::Suspend,
base::Unretained(mock_power_observer_helper_)));
// It can take up to the timeout + the check interval until detection. Add a
// margin to this.
EXPECT_FALSE(WaitUntilDetectedDeadWithTimeout(
base::Milliseconds(kTimeoutMs + kCheckIntervalMs + 10)));
EXPECT_FALSE(GetDetectedDead());
alive_checker_thread_.task_runner()->PostTask(
FROM_HERE, base::BindOnce(&MockPowerObserverHelper::Resume,
base::Unretained(mock_power_observer_helper_)));
WaitUntilDetectedDead();
EXPECT_TRUE(GetDetectedDead());
}
} // namespace media