Remove use of deprecated SkImage::getTexture() from gl_renderer.cc
[chromium-blink-merge.git] / base / threading / worker_pool_unittest.cc
blob9a9ab951b9e9931100689c4f4638a13a8b6e9b31
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 #include "base/threading/worker_pool.h"
7 #include "base/bind.h"
8 #include "base/bind_helpers.h"
9 #include "base/location.h"
10 #include "base/message_loop/message_loop.h"
11 #include "base/run_loop.h"
12 #include "base/synchronization/waitable_event.h"
13 #include "base/test/test_timeouts.h"
14 #include "base/threading/thread_checker_impl.h"
15 #include "base/time/time.h"
16 #include "testing/gtest/include/gtest/gtest.h"
17 #include "testing/platform_test.h"
19 typedef PlatformTest WorkerPoolTest;
21 namespace base {
23 namespace {
25 class PostTaskAndReplyTester
26 : public base::RefCountedThreadSafe<PostTaskAndReplyTester> {
27 public:
28 PostTaskAndReplyTester() : finished_(false), test_event_(false, false) {}
30 void RunTest() {
31 ASSERT_TRUE(thread_checker_.CalledOnValidThread());
32 WorkerPool::PostTaskAndReply(
33 FROM_HERE,
34 base::Bind(&PostTaskAndReplyTester::OnWorkerThread, this),
35 base::Bind(&PostTaskAndReplyTester::OnOriginalThread, this),
36 false);
38 test_event_.Wait();
41 void OnWorkerThread() {
42 // We're not on the original thread.
43 EXPECT_FALSE(thread_checker_.CalledOnValidThread());
45 test_event_.Signal();
48 void OnOriginalThread() {
49 EXPECT_TRUE(thread_checker_.CalledOnValidThread());
50 finished_ = true;
53 bool finished() const {
54 return finished_;
57 private:
58 friend class base::RefCountedThreadSafe<PostTaskAndReplyTester>;
59 ~PostTaskAndReplyTester() {}
61 bool finished_;
62 WaitableEvent test_event_;
64 // The Impl version performs its checks even in release builds.
65 ThreadCheckerImpl thread_checker_;
68 } // namespace
70 TEST_F(WorkerPoolTest, PostTask) {
71 WaitableEvent test_event(false, false);
72 WaitableEvent long_test_event(false, false);
74 WorkerPool::PostTask(FROM_HERE,
75 base::Bind(&WaitableEvent::Signal,
76 base::Unretained(&test_event)),
77 false);
78 WorkerPool::PostTask(FROM_HERE,
79 base::Bind(&WaitableEvent::Signal,
80 base::Unretained(&long_test_event)),
81 true);
83 test_event.Wait();
84 long_test_event.Wait();
87 #if defined(OS_WIN) || defined(OS_LINUX)
88 // Flaky on Windows and Linux (http://crbug.com/130337)
89 #define MAYBE_PostTaskAndReply DISABLED_PostTaskAndReply
90 #else
91 #define MAYBE_PostTaskAndReply PostTaskAndReply
92 #endif
94 TEST_F(WorkerPoolTest, MAYBE_PostTaskAndReply) {
95 MessageLoop message_loop;
96 scoped_refptr<PostTaskAndReplyTester> tester(new PostTaskAndReplyTester());
97 tester->RunTest();
99 const TimeDelta kMaxDuration = TestTimeouts::tiny_timeout();
100 TimeTicks start = TimeTicks::Now();
101 while (!tester->finished() && TimeTicks::Now() - start < kMaxDuration) {
102 #if defined(OS_IOS)
103 // Ensure that the other thread has a chance to run even on a single-core
104 // device.
105 pthread_yield_np();
106 #endif
107 RunLoop().RunUntilIdle();
109 EXPECT_TRUE(tester->finished());
112 } // namespace base