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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
base / test / test_mock_time_task_runner.cc [blame]
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/test/test_mock_time_task_runner.h"
#include <optional>
#include <utility>
#include "base/check_op.h"
#include "base/containers/circular_deque.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/task/single_thread_task_runner.h"
namespace base {
// A SingleThreadTaskRunner which forwards everything to its |target_|. This
// serves two purposes:
// 1) If a TaskRunner CurrentDefaultHandle owned by TestMockTimeTaskRunner were
// to be set to point to that TestMockTimeTaskRunner, a reference cycle
// would result. As |target_| here is a non-refcounting raw pointer, the
// cycle is broken.
// 2) Since SingleThreadTaskRunner is ref-counted, it's quite easy for it to
// accidentally get captured between tests in a singleton somewhere.
// Indirecting via NonOwningProxyTaskRunner permits TestMockTimeTaskRunner
// to be cleaned up (removing the RunLoop::Delegate in the kBoundToThread
// mode), and to also cleanly flag any actual attempts to use the leaked
// task runner.
class TestMockTimeTaskRunner::NonOwningProxyTaskRunner
: public SingleThreadTaskRunner {
public:
explicit NonOwningProxyTaskRunner(SingleThreadTaskRunner* target)
: target_(target) {
DCHECK(target_);
}
NonOwningProxyTaskRunner(const NonOwningProxyTaskRunner&) = delete;
NonOwningProxyTaskRunner& operator=(const NonOwningProxyTaskRunner&) = delete;
// Detaches this NonOwningProxyTaskRunner instance from its |target_|. It is
// invalid to post tasks after this point but RunsTasksInCurrentSequence()
// will still pass on the original thread for convenience with legacy code.
void Detach() {
AutoLock scoped_lock(lock_);
target_ = nullptr;
}
// SingleThreadTaskRunner:
bool RunsTasksInCurrentSequence() const override {
AutoLock scoped_lock(lock_);
if (target_)
return target_->RunsTasksInCurrentSequence();
return thread_checker_.CalledOnValidThread();
}
bool PostDelayedTask(const Location& from_here,
OnceClosure task,
TimeDelta delay) override {
AutoLock scoped_lock(lock_);
if (target_)
return target_->PostDelayedTask(from_here, std::move(task), delay);
// The associated TestMockTimeTaskRunner is dead, so fail this PostTask.
return false;
}
bool PostNonNestableDelayedTask(const Location& from_here,
OnceClosure task,
TimeDelta delay) override {
AutoLock scoped_lock(lock_);
if (target_) {
return target_->PostNonNestableDelayedTask(from_here, std::move(task),
delay);
}
// The associated TestMockTimeTaskRunner is dead, so fail this PostTask.
return false;
}
private:
friend class RefCountedThreadSafe<NonOwningProxyTaskRunner>;
~NonOwningProxyTaskRunner() override = default;
mutable Lock lock_;
raw_ptr<SingleThreadTaskRunner> target_; // guarded by lock_
// Used to implement RunsTasksInCurrentSequence, without relying on |target_|.
ThreadCheckerImpl thread_checker_;
};
// TestMockTimeTaskRunner::TestOrderedPendingTask -----------------------------
// Subclass of TestPendingTask which has a strictly monotonically increasing ID
// for every task, so that tasks posted with the same 'time to run' can be run
// in the order of being posted.
struct TestMockTimeTaskRunner::TestOrderedPendingTask
: public base::TestPendingTask {
TestOrderedPendingTask();
TestOrderedPendingTask(const Location& location,
OnceClosure task,
TimeTicks post_time,
TimeDelta delay,
size_t ordinal,
TestNestability nestability);
TestOrderedPendingTask(const TestOrderedPendingTask&) = delete;
TestOrderedPendingTask& operator=(const TestOrderedPendingTask&) = delete;
TestOrderedPendingTask(TestOrderedPendingTask&&);
~TestOrderedPendingTask();
TestOrderedPendingTask& operator=(TestOrderedPendingTask&&);
size_t ordinal;
};
TestMockTimeTaskRunner::TestOrderedPendingTask::TestOrderedPendingTask()
: ordinal(0) {
}
TestMockTimeTaskRunner::TestOrderedPendingTask::TestOrderedPendingTask(
TestOrderedPendingTask&&) = default;
TestMockTimeTaskRunner::TestOrderedPendingTask::TestOrderedPendingTask(
const Location& location,
OnceClosure task,
TimeTicks post_time,
TimeDelta delay,
size_t ordinal,
TestNestability nestability)
: base::TestPendingTask(location,
std::move(task),
post_time,
delay,
nestability),
ordinal(ordinal) {}
TestMockTimeTaskRunner::TestOrderedPendingTask::~TestOrderedPendingTask() =
default;
TestMockTimeTaskRunner::TestOrderedPendingTask&
TestMockTimeTaskRunner::TestOrderedPendingTask::operator=(
TestOrderedPendingTask&&) = default;
// TestMockTimeTaskRunner -----------------------------------------------------
// TODO(gab): This should also set the SequenceToken for the current thread.
// Ref. TestMockTimeTaskRunner::RunsTasksInCurrentSequence().
TestMockTimeTaskRunner::ScopedContext::ScopedContext(
scoped_refptr<TestMockTimeTaskRunner> scope)
: single_thread_task_runner_current_default_handle_override_(scope) {
scope->RunUntilIdle();
}
TestMockTimeTaskRunner::ScopedContext::~ScopedContext() = default;
bool TestMockTimeTaskRunner::TemporalOrder::operator()(
const TestOrderedPendingTask& first_task,
const TestOrderedPendingTask& second_task) const {
if (first_task.GetTimeToRun() == second_task.GetTimeToRun())
return first_task.ordinal > second_task.ordinal;
return first_task.GetTimeToRun() > second_task.GetTimeToRun();
}
TestMockTimeTaskRunner::TestMockTimeTaskRunner(Type type)
: TestMockTimeTaskRunner(Time::UnixEpoch(), TimeTicks(), type) {}
TestMockTimeTaskRunner::TestMockTimeTaskRunner(Time start_time,
TimeTicks start_ticks,
Type type)
: now_(start_time),
now_ticks_(start_ticks),
tasks_lock_cv_(&tasks_lock_),
proxy_task_runner_(MakeRefCounted<NonOwningProxyTaskRunner>(this)),
mock_clock_(this) {
if (type == Type::kBoundToThread) {
RunLoop::RegisterDelegateForCurrentThread(this);
thread_task_runner_handle_ =
std::make_unique<SingleThreadTaskRunner::CurrentDefaultHandle>(
proxy_task_runner_);
}
}
TestMockTimeTaskRunner::~TestMockTimeTaskRunner() {
proxy_task_runner_->Detach();
}
void TestMockTimeTaskRunner::FastForwardBy(TimeDelta delta) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK_GE(delta, TimeDelta());
const TimeTicks original_now_ticks = NowTicks();
ProcessTasksNoLaterThan(delta);
ForwardClocksUntilTickTime(original_now_ticks + delta);
}
void TestMockTimeTaskRunner::AdvanceMockTickClock(TimeDelta delta) {
ForwardClocksUntilTickTime(NowTicks() + delta);
}
void TestMockTimeTaskRunner::AdvanceWallClock(TimeDelta delta) {
now_ += delta;
OnAfterTimePassed();
}
void TestMockTimeTaskRunner::RunUntilIdle() {
DCHECK(thread_checker_.CalledOnValidThread());
ProcessTasksNoLaterThan(TimeDelta());
}
void TestMockTimeTaskRunner::ProcessNextNTasks(int n) {
DCHECK(thread_checker_.CalledOnValidThread());
ProcessTasksNoLaterThan(TimeDelta::Max(), n);
}
void TestMockTimeTaskRunner::FastForwardUntilNoTasksRemain() {
DCHECK(thread_checker_.CalledOnValidThread());
ProcessTasksNoLaterThan(TimeDelta::Max());
}
void TestMockTimeTaskRunner::ClearPendingTasks() {
AutoLock scoped_lock(tasks_lock_);
// This is repeated in case task destruction triggers further tasks.
while (!tasks_.empty()) {
TaskPriorityQueue cleanup_tasks;
tasks_.swap(cleanup_tasks);
// Destroy task objects with |tasks_lock_| released. Task deletion can cause
// calls to NonOwningProxyTaskRunner::RunsTasksInCurrentSequence()
// (e.g. for DCHECKs), which causes |NonOwningProxyTaskRunner::lock_| to be
// grabbed.
//
// On the other hand, calls from NonOwningProxyTaskRunner::PostTask ->
// TestMockTimeTaskRunner::PostTask acquire locks as
// |NonOwningProxyTaskRunner::lock_| followed by |tasks_lock_|, so it's
// desirable to avoid the reverse order, for deadlock freedom.
AutoUnlock scoped_unlock(tasks_lock_);
while (!cleanup_tasks.empty())
cleanup_tasks.pop();
}
}
Time TestMockTimeTaskRunner::Now() const {
AutoLock scoped_lock(tasks_lock_);
return now_;
}
TimeTicks TestMockTimeTaskRunner::NowTicks() const {
AutoLock scoped_lock(tasks_lock_);
return now_ticks_;
}
Clock* TestMockTimeTaskRunner::GetMockClock() const {
DCHECK(thread_checker_.CalledOnValidThread());
return &mock_clock_;
}
const TickClock* TestMockTimeTaskRunner::GetMockTickClock() const {
DCHECK(thread_checker_.CalledOnValidThread());
return &mock_clock_;
}
base::circular_deque<TestPendingTask>
TestMockTimeTaskRunner::TakePendingTasks() {
AutoLock scoped_lock(tasks_lock_);
base::circular_deque<TestPendingTask> tasks;
while (!tasks_.empty()) {
// It's safe to remove const and consume |task| here, since |task| is not
// used for ordering the item.
if (!tasks_.top().task.IsCancelled()) {
tasks.push_back(
std::move(const_cast<TestOrderedPendingTask&>(tasks_.top())));
}
tasks_.pop();
}
return tasks;
}
bool TestMockTimeTaskRunner::HasPendingTask() {
DCHECK(thread_checker_.CalledOnValidThread());
AutoLock scoped_lock(tasks_lock_);
while (!tasks_.empty() && tasks_.top().task.IsCancelled())
tasks_.pop();
return !tasks_.empty();
}
size_t TestMockTimeTaskRunner::GetPendingTaskCount() {
DCHECK(thread_checker_.CalledOnValidThread());
AutoLock scoped_lock(tasks_lock_);
TaskPriorityQueue preserved_tasks;
while (!tasks_.empty()) {
if (!tasks_.top().task.IsCancelled()) {
preserved_tasks.push(
std::move(const_cast<TestOrderedPendingTask&>(tasks_.top())));
}
tasks_.pop();
}
tasks_.swap(preserved_tasks);
return tasks_.size();
}
TimeDelta TestMockTimeTaskRunner::NextPendingTaskDelay() {
DCHECK(thread_checker_.CalledOnValidThread());
AutoLock scoped_lock(tasks_lock_);
while (!tasks_.empty() && tasks_.top().task.IsCancelled())
tasks_.pop();
return tasks_.empty() ? TimeDelta::Max()
: tasks_.top().GetTimeToRun() - now_ticks_;
}
void TestMockTimeTaskRunner::DetachFromThread() {
thread_checker_.DetachFromThread();
}
// TODO(gab): Combine |thread_checker_| with a SequenceToken to differentiate
// between tasks running in the scope of this TestMockTimeTaskRunner and other
// task runners sharing this thread. http://crbug.com/631186
bool TestMockTimeTaskRunner::RunsTasksInCurrentSequence() const {
return thread_checker_.CalledOnValidThread();
}
bool TestMockTimeTaskRunner::PostDelayedTask(const Location& from_here,
OnceClosure task,
TimeDelta delay) {
AutoLock scoped_lock(tasks_lock_);
tasks_.push(TestOrderedPendingTask(from_here, std::move(task), now_ticks_,
delay, next_task_ordinal_++,
TestPendingTask::NESTABLE));
tasks_lock_cv_.Signal();
return true;
}
bool TestMockTimeTaskRunner::PostDelayedTaskAt(
subtle::PostDelayedTaskPassKey,
const Location& from_here,
OnceClosure task,
TimeTicks delayed_run_time,
subtle::DelayPolicy deadline_policy) {
return PostDelayedTask(
from_here, std::move(task),
delayed_run_time.is_null() ? TimeDelta() : delayed_run_time - now_ticks_);
}
bool TestMockTimeTaskRunner::PostNonNestableDelayedTask(
const Location& from_here,
OnceClosure task,
TimeDelta delay) {
return PostDelayedTask(from_here, std::move(task), delay);
}
void TestMockTimeTaskRunner::OnBeforeSelectingTask() {
// Empty default implementation.
}
void TestMockTimeTaskRunner::OnAfterTimePassed() {
// Empty default implementation.
}
void TestMockTimeTaskRunner::OnAfterTaskRun() {
// Empty default implementation.
}
void TestMockTimeTaskRunner::ProcessTasksNoLaterThan(TimeDelta max_delta,
int limit) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK_GE(max_delta, TimeDelta());
// Multiple test task runners can share the same thread for determinism in
// unit tests. Make sure this TestMockTimeTaskRunner's tasks run in its scope.
std::optional<SingleThreadTaskRunner::CurrentHandleOverrideForTesting>
ttrh_override;
if (!SingleThreadTaskRunner::HasCurrentDefault() ||
SingleThreadTaskRunner::GetCurrentDefault() != proxy_task_runner_.get()) {
ttrh_override.emplace(proxy_task_runner_.get());
}
const TimeTicks original_now_ticks = NowTicks();
for (int i = 0; !quit_run_loop_ && (limit < 0 || i < limit); i++) {
OnBeforeSelectingTask();
TestPendingTask task_info;
if (!DequeueNextTask(original_now_ticks, max_delta, &task_info))
break;
if (task_info.task.IsCancelled())
continue;
// If tasks were posted with a negative delay, task_info.GetTimeToRun() will
// be less than |now_ticks_|. ForwardClocksUntilTickTime() takes care of not
// moving the clock backwards in this case.
ForwardClocksUntilTickTime(task_info.GetTimeToRun());
std::move(task_info.task).Run();
OnAfterTaskRun();
}
}
void TestMockTimeTaskRunner::ForwardClocksUntilTickTime(TimeTicks later_ticks) {
DCHECK(thread_checker_.CalledOnValidThread());
{
AutoLock scoped_lock(tasks_lock_);
if (later_ticks <= now_ticks_)
return;
now_ += later_ticks - now_ticks_;
now_ticks_ = later_ticks;
}
OnAfterTimePassed();
}
bool TestMockTimeTaskRunner::DequeueNextTask(const TimeTicks& reference,
const TimeDelta& max_delta,
TestPendingTask* next_task) {
DCHECK(thread_checker_.CalledOnValidThread());
AutoLock scoped_lock(tasks_lock_);
if (!tasks_.empty() &&
(tasks_.top().GetTimeToRun() - reference) <= max_delta) {
// It's safe to remove const and consume |task| here, since |task| is not
// used for ordering the item.
*next_task = std::move(const_cast<TestOrderedPendingTask&>(tasks_.top()));
tasks_.pop();
return true;
}
return false;
}
void TestMockTimeTaskRunner::Run(bool application_tasks_allowed,
TimeDelta timeout) {
DCHECK(thread_checker_.CalledOnValidThread());
// Since TestMockTimeTaskRunner doesn't process system messages: there's no
// hope for anything but an application task to call Quit(). If this RunLoop
// can't process application tasks (i.e. disallowed by default in nested
// RunLoops) it's guaranteed to hang...
DCHECK(application_tasks_allowed)
<< "This is a nested RunLoop instance and needs to be of "
"Type::kNestableTasksAllowed.";
// This computation relies on saturated arithmetic.
TimeTicks run_until = now_ticks_ + timeout;
while (!quit_run_loop_ && now_ticks_ < run_until) {
RunUntilIdle();
if (quit_run_loop_ || ShouldQuitWhenIdle())
break;
// Peek into |tasks_| to perform one of two things:
// A) If there are no remaining tasks, wait until one is posted and
// restart from the top.
// B) If there is a remaining delayed task. Fast-forward to reach the next
// round of tasks.
TimeDelta auto_fast_forward_by;
{
AutoLock scoped_lock(tasks_lock_);
if (tasks_.empty()) {
while (tasks_.empty())
tasks_lock_cv_.Wait();
continue;
}
auto_fast_forward_by =
std::min(run_until, tasks_.top().GetTimeToRun()) - now_ticks_;
}
FastForwardBy(auto_fast_forward_by);
}
quit_run_loop_ = false;
}
void TestMockTimeTaskRunner::Quit() {
DCHECK(thread_checker_.CalledOnValidThread());
quit_run_loop_ = true;
}
void TestMockTimeTaskRunner::EnsureWorkScheduled() {
// Nothing to do: TestMockTimeTaskRunner::Run() will always process tasks and
// doesn't need an extra kick on nested runs.
}
TimeTicks TestMockTimeTaskRunner::MockClock::NowTicks() const {
return task_runner_->NowTicks();
}
Time TestMockTimeTaskRunner::MockClock::Now() const {
return task_runner_->Now();
}
} // namespace base