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
|
// Copyright (c) 2011 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.
#include "base/threading/worker_pool.h"
#include "base/bind.h"
#include "base/location.h"
#include "base/message_loop.h"
#include "base/task.h"
#include "base/test/test_timeouts.h"
#include "base/time.h"
#include "base/threading/thread_checker_impl.h"
#include "base/synchronization/waitable_event.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/platform_test.h"
typedef PlatformTest WorkerPoolTest;
namespace base {
namespace {
class PostTaskTestTask : public Task {
public:
explicit PostTaskTestTask(WaitableEvent* event) : event_(event) {
}
void Run() {
event_->Signal();
}
private:
WaitableEvent* event_;
};
class PostTaskAndReplyTester
: public base::RefCountedThreadSafe<PostTaskAndReplyTester> {
public:
PostTaskAndReplyTester() : finished_(false), test_event_(false, false) {
}
void RunTest() {
ASSERT_TRUE(thread_checker_.CalledOnValidThread());
WorkerPool::PostTaskAndReply(
FROM_HERE,
base::Bind(&PostTaskAndReplyTester::OnWorkerThread, this),
base::Bind(&PostTaskAndReplyTester::OnOriginalThread, this),
false);
test_event_.Wait();
}
void OnWorkerThread() {
// We're not on the original thread.
EXPECT_FALSE(thread_checker_.CalledOnValidThread());
test_event_.Signal();
}
void OnOriginalThread() {
EXPECT_TRUE(thread_checker_.CalledOnValidThread());
finished_ = true;
}
bool finished() const {
return finished_;
}
private:
bool finished_;
WaitableEvent test_event_;
// The Impl version performs its checks even in release builds.
ThreadCheckerImpl thread_checker_;
};
} // namespace
TEST_F(WorkerPoolTest, PostTask) {
WaitableEvent test_event(false, false);
WaitableEvent long_test_event(false, false);
WorkerPool::PostTask(FROM_HERE, new PostTaskTestTask(&test_event), false);
WorkerPool::PostTask(FROM_HERE, new PostTaskTestTask(&long_test_event), true);
test_event.Wait();
long_test_event.Wait();
}
TEST_F(WorkerPoolTest, PostTaskAndReply) {
MessageLoop message_loop;
scoped_refptr<PostTaskAndReplyTester> tester(new PostTaskAndReplyTester());
tester->RunTest();
const TimeDelta kMaxDuration =
TimeDelta::FromMilliseconds(TestTimeouts::tiny_timeout_ms());
TimeTicks start = TimeTicks::Now();
while (!tester->finished() && TimeTicks::Now() - start < kMaxDuration) {
MessageLoop::current()->RunAllPending();
}
EXPECT_TRUE(tester->finished());
}
} // namespace base
|