1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // This file defines tests that implementations of TaskRunner should
6 // pass in order to be conformant, as well as test cases for optional behavior.
7 // Here's how you use it to test your implementation.
9 // Say your class is called MyTaskRunner. Then you need to define a
10 // class called MyTaskRunnerTestDelegate in my_task_runner_unittest.cc
13 // class MyTaskRunnerTestDelegate {
15 // // Tasks posted to the task runner after this and before
16 // // StopTaskRunner() is called is called should run successfully.
17 // void StartTaskRunner() {
21 // // Should return the task runner implementation. Only called
22 // // after StartTaskRunner and before StopTaskRunner.
23 // scoped_refptr<MyTaskRunner> GetTaskRunner() {
27 // // Stop the task runner and make sure all tasks posted before
28 // // this is called are run. Caveat: delayed tasks are not run,
29 // they're simply deleted.
30 // void StopTaskRunner() {
35 // The TaskRunnerTest test harness will have a member variable of
36 // this delegate type and will call its functions in the various
39 // Then you simply #include this file as well as gtest.h and add the
40 // following statement to my_task_runner_unittest.cc:
42 // INSTANTIATE_TYPED_TEST_CASE_P(
43 // MyTaskRunner, TaskRunnerTest, MyTaskRunnerTestDelegate);
47 // The optional test harnesses TaskRunnerAffinityTest can be
48 // instanciated in the same way, using the same delegate:
50 // INSTANTIATE_TYPED_TEST_CASE_P(
51 // MyTaskRunner, TaskRunnerAffinityTest, MyTaskRunnerTestDelegate);
54 #ifndef BASE_TEST_TASK_RUNNER_TEST_TEMPLATE_H_
55 #define BASE_TEST_TASK_RUNNER_TEST_TEMPLATE_H_
60 #include "base/basictypes.h"
61 #include "base/bind.h"
62 #include "base/callback.h"
63 #include "base/location.h"
64 #include "base/memory/ref_counted.h"
65 #include "base/single_thread_task_runner.h"
66 #include "base/synchronization/condition_variable.h"
67 #include "base/synchronization/lock.h"
68 #include "base/task_runner.h"
69 #include "base/threading/thread.h"
70 #include "base/tracked_objects.h"
71 #include "testing/gtest/include/gtest/gtest.h"
77 // Utility class that keeps track of how many times particular tasks
79 class TaskTracker
: public RefCountedThreadSafe
<TaskTracker
> {
83 // Returns a closure that runs the given task and increments the run
84 // count of |i| by one. |task| may be null. It is guaranteed that
85 // only one task wrapped by a given tracker will be run at a time.
86 Closure
WrapTask(const Closure
& task
, int i
);
88 std::map
<int, int> GetTaskRunCounts() const;
90 // Returns after the tracker observes a total of |count| task completions.
91 void WaitForCompletedTasks(int count
);
94 friend class RefCountedThreadSafe
<TaskTracker
>;
98 void RunTask(const Closure
& task
, int i
);
101 std::map
<int, int> task_run_counts_
;
103 ConditionVariable task_runs_cv_
;
105 DISALLOW_COPY_AND_ASSIGN(TaskTracker
);
108 } // namespace internal
110 template <typename TaskRunnerTestDelegate
>
111 class TaskRunnerTest
: public testing::Test
{
113 TaskRunnerTest() : task_tracker_(new internal::TaskTracker()) {}
115 const scoped_refptr
<internal::TaskTracker
> task_tracker_
;
116 TaskRunnerTestDelegate delegate_
;
119 TYPED_TEST_CASE_P(TaskRunnerTest
);
121 // We can't really test much, since TaskRunner provides very few
124 // Post a bunch of tasks to the task runner. They should all
126 TYPED_TEST_P(TaskRunnerTest
, Basic
) {
127 std::map
<int, int> expected_task_run_counts
;
129 this->delegate_
.StartTaskRunner();
130 scoped_refptr
<TaskRunner
> task_runner
= this->delegate_
.GetTaskRunner();
131 // Post each ith task i+1 times.
132 for (int i
= 0; i
< 20; ++i
) {
133 const Closure
& ith_task
= this->task_tracker_
->WrapTask(Closure(), i
);
134 for (int j
= 0; j
< i
+ 1; ++j
) {
135 task_runner
->PostTask(FROM_HERE
, ith_task
);
136 ++expected_task_run_counts
[i
];
139 this->delegate_
.StopTaskRunner();
141 EXPECT_EQ(expected_task_run_counts
,
142 this->task_tracker_
->GetTaskRunCounts());
145 // Post a bunch of delayed tasks to the task runner. They should all
147 TYPED_TEST_P(TaskRunnerTest
, Delayed
) {
148 std::map
<int, int> expected_task_run_counts
;
149 int expected_total_tasks
= 0;
151 this->delegate_
.StartTaskRunner();
152 scoped_refptr
<TaskRunner
> task_runner
= this->delegate_
.GetTaskRunner();
153 // Post each ith task i+1 times with delays from 0-i.
154 for (int i
= 0; i
< 20; ++i
) {
155 const Closure
& ith_task
= this->task_tracker_
->WrapTask(Closure(), i
);
156 for (int j
= 0; j
< i
+ 1; ++j
) {
157 task_runner
->PostDelayedTask(
158 FROM_HERE
, ith_task
, base::TimeDelta::FromMilliseconds(j
));
159 ++expected_task_run_counts
[i
];
160 ++expected_total_tasks
;
163 this->task_tracker_
->WaitForCompletedTasks(expected_total_tasks
);
164 this->delegate_
.StopTaskRunner();
166 EXPECT_EQ(expected_task_run_counts
,
167 this->task_tracker_
->GetTaskRunCounts());
170 // The TaskRunnerTest test case verifies behaviour that is expected from a
171 // task runner in order to be conformant.
172 REGISTER_TYPED_TEST_CASE_P(TaskRunnerTest
, Basic
, Delayed
);
176 // Calls RunsTasksOnCurrentThread() on |task_runner| and expects it to
177 // equal |expected_value|.
178 void ExpectRunsTasksOnCurrentThread(
180 const scoped_refptr
<TaskRunner
>& task_runner
);
182 } // namespace internal
184 template <typename TaskRunnerTestDelegate
>
185 class TaskRunnerAffinityTest
: public TaskRunnerTest
<TaskRunnerTestDelegate
> {};
187 TYPED_TEST_CASE_P(TaskRunnerAffinityTest
);
189 // Post a bunch of tasks to the task runner as well as to a separate
190 // thread, each checking the value of RunsTasksOnCurrentThread(),
191 // which should return true for the tasks posted on the task runner
192 // and false for the tasks posted on the separate thread.
193 TYPED_TEST_P(TaskRunnerAffinityTest
, RunsTasksOnCurrentThread
) {
194 std::map
<int, int> expected_task_run_counts
;
196 Thread
thread("Non-task-runner thread");
197 ASSERT_TRUE(thread
.Start());
198 this->delegate_
.StartTaskRunner();
200 scoped_refptr
<TaskRunner
> task_runner
= this->delegate_
.GetTaskRunner();
201 // Post each ith task i+1 times on the task runner and i+1 times on
202 // the non-task-runner thread.
203 for (int i
= 0; i
< 20; ++i
) {
204 const Closure
& ith_task_runner_task
=
205 this->task_tracker_
->WrapTask(
206 Bind(&internal::ExpectRunsTasksOnCurrentThread
,
209 const Closure
& ith_non_task_runner_task
=
210 this->task_tracker_
->WrapTask(
211 Bind(&internal::ExpectRunsTasksOnCurrentThread
,
214 for (int j
= 0; j
< i
+ 1; ++j
) {
215 task_runner
->PostTask(FROM_HERE
, ith_task_runner_task
);
216 thread
.task_runner()->PostTask(FROM_HERE
, ith_non_task_runner_task
);
217 expected_task_run_counts
[i
] += 2;
221 this->delegate_
.StopTaskRunner();
224 EXPECT_EQ(expected_task_run_counts
,
225 this->task_tracker_
->GetTaskRunCounts());
228 // TaskRunnerAffinityTest tests that the TaskRunner implementation
229 // can determine if tasks will never be run on a specific thread.
230 REGISTER_TYPED_TEST_CASE_P(TaskRunnerAffinityTest
, RunsTasksOnCurrentThread
);
234 #endif // BASE_TEST_TASK_RUNNER_TEST_TEMPLATE_H_