forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmock_timer.h
76 lines (58 loc) · 2.04 KB
/
mock_timer.h
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
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BASE_TIMER_MOCK_TIMER_H_
#define BASE_TIMER_MOCK_TIMER_H_
#include "base/test/simple_test_tick_clock.h"
#include "base/timer/timer.h"
namespace base {
class TestSimpleTaskRunner;
// A mock implementation of base::OneShotTimer which requires being explicitly
// Fire()'d.
// Prefer using TaskEnvironment::MOCK_TIME + FastForward*() to this when
// possible.
class MockOneShotTimer : public OneShotTimer {
public:
MockOneShotTimer();
~MockOneShotTimer() override;
// Testing method.
void Fire();
private:
// Timer implementation.
// MockOneShotTimer doesn't support SetTaskRunner. Do not use this.
void SetTaskRunner(scoped_refptr<SequencedTaskRunner> task_runner) override;
SimpleTestTickClock clock_;
scoped_refptr<TestSimpleTaskRunner> test_task_runner_;
};
// See MockOneShotTimer's comment. Prefer using
// TaskEnvironment::MOCK_TIME.
class MockRepeatingTimer : public RepeatingTimer {
public:
MockRepeatingTimer();
~MockRepeatingTimer() override;
// Testing method.
void Fire();
private:
// Timer implementation.
// MockRepeatingTimer doesn't support SetTaskRunner. Do not use this.
void SetTaskRunner(scoped_refptr<SequencedTaskRunner> task_runner) override;
SimpleTestTickClock clock_;
scoped_refptr<TestSimpleTaskRunner> test_task_runner_;
};
// See MockOneShotTimer's comment. Prefer using
// TaskEnvironment::MOCK_TIME.
class MockRetainingOneShotTimer : public RetainingOneShotTimer {
public:
MockRetainingOneShotTimer();
~MockRetainingOneShotTimer() override;
// Testing method.
void Fire();
private:
// Timer implementation.
// MockRetainingOneShotTimer doesn't support SetTaskRunner. Do not use this.
void SetTaskRunner(scoped_refptr<SequencedTaskRunner> task_runner) override;
SimpleTestTickClock clock_;
scoped_refptr<TestSimpleTaskRunner> test_task_runner_;
};
} // namespace base
#endif // BASE_TIMER_MOCK_TIMER_H_