| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/threading/thread.h" | 5 #include "base/threading/thread.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/location.h" | 10 #include "base/location.h" |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 EXPECT_FALSE(a.message_loop()); | 187 EXPECT_FALSE(a.message_loop()); |
| 188 EXPECT_FALSE(a.IsRunning()); | 188 EXPECT_FALSE(a.IsRunning()); |
| 189 } | 189 } |
| 190 | 190 |
| 191 TEST_F(ThreadTest, ThreadName) { | 191 TEST_F(ThreadTest, ThreadName) { |
| 192 Thread a("ThreadName"); | 192 Thread a("ThreadName"); |
| 193 EXPECT_TRUE(a.Start()); | 193 EXPECT_TRUE(a.Start()); |
| 194 EXPECT_EQ("ThreadName", a.thread_name()); | 194 EXPECT_EQ("ThreadName", a.thread_name()); |
| 195 } | 195 } |
| 196 | 196 |
| 197 // Make sure Init() is called after Start() and before | 197 // Make sure we can't use a thread between Start() and Init(). |
| 198 // WaitUntilThreadInitialized() returns. | |
| 199 TEST_F(ThreadTest, SleepInsideInit) { | 198 TEST_F(ThreadTest, SleepInsideInit) { |
| 200 SleepInsideInitThread t; | 199 SleepInsideInitThread t; |
| 201 EXPECT_FALSE(t.InitCalled()); | 200 EXPECT_FALSE(t.InitCalled()); |
| 202 t.StartAndWaitForTesting(); | 201 t.Start(); |
| 203 EXPECT_TRUE(t.InitCalled()); | 202 EXPECT_TRUE(t.InitCalled()); |
| 204 } | 203 } |
| 205 | 204 |
| 206 // Make sure that the destruction sequence is: | 205 // Make sure that the destruction sequence is: |
| 207 // | 206 // |
| 208 // (1) Thread::CleanUp() | 207 // (1) Thread::CleanUp() |
| 209 // (2) MessageLoop::~MessageLoop() | 208 // (2) MessageLoop::~MessageLoop() |
| 210 // MessageLoop::DestructionObservers called. | 209 // MessageLoop::DestructionObservers called. |
| 211 TEST_F(ThreadTest, CleanUp) { | 210 TEST_F(ThreadTest, CleanUp) { |
| 212 EventList captured_events; | 211 EventList captured_events; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 227 | 226 |
| 228 // Upon leaving this scope, the thread is deleted. | 227 // Upon leaving this scope, the thread is deleted. |
| 229 } | 228 } |
| 230 | 229 |
| 231 // Check the order of events during shutdown. | 230 // Check the order of events during shutdown. |
| 232 ASSERT_EQ(static_cast<size_t>(THREAD_NUM_EVENTS), captured_events.size()); | 231 ASSERT_EQ(static_cast<size_t>(THREAD_NUM_EVENTS), captured_events.size()); |
| 233 EXPECT_EQ(THREAD_EVENT_INIT, captured_events[0]); | 232 EXPECT_EQ(THREAD_EVENT_INIT, captured_events[0]); |
| 234 EXPECT_EQ(THREAD_EVENT_CLEANUP, captured_events[1]); | 233 EXPECT_EQ(THREAD_EVENT_CLEANUP, captured_events[1]); |
| 235 EXPECT_EQ(THREAD_EVENT_MESSAGE_LOOP_DESTROYED, captured_events[2]); | 234 EXPECT_EQ(THREAD_EVENT_MESSAGE_LOOP_DESTROYED, captured_events[2]); |
| 236 } | 235 } |
| OLD | NEW |