Chromium Code Reviews| Index: chrome/browser/sync/glue/sync_backend_registrar_unittest.cc |
| diff --git a/chrome/browser/sync/glue/sync_backend_registrar_unittest.cc b/chrome/browser/sync/glue/sync_backend_registrar_unittest.cc |
| index cd2d29ddf4edfdb88cc9ecefb6feab6cab9e8586..4eaa7f8ae6b89df70a832d23c9d522fdc9a57fcd 100644 |
| --- a/chrome/browser/sync/glue/sync_backend_registrar_unittest.cc |
| +++ b/chrome/browser/sync/glue/sync_backend_registrar_unittest.cc |
| @@ -256,6 +256,86 @@ TEST_F(SyncBackendRegistrarTest, ActivateDeactivateNonUIDataType) { |
| TriggerChanges(registrar_.get(), AUTOFILL); |
| } |
| +class SyncBackendRegistrarShutdownTest : public testing::Test { |
| + public: |
| + void BlockDBThread() { |
| + EXPECT_FALSE(db_thread_lock_.Try()); |
| + |
| + db_thread_blocked_.Signal(); |
| + base::AutoLock l(db_thread_lock_); |
| + } |
| + |
| + protected: |
| + friend class TestRegistrar; |
| + |
| + SyncBackendRegistrarShutdownTest() |
| + : thread_bundle_(content::TestBrowserThreadBundle::REAL_DB_THREAD | |
| + content::TestBrowserThreadBundle::REAL_FILE_THREAD | |
| + content::TestBrowserThreadBundle::REAL_IO_THREAD), |
| + db_thread_blocked_(false, false) {} |
| + |
| + virtual ~SyncBackendRegistrarShutdownTest() {} |
| + |
| + content::TestBrowserThreadBundle thread_bundle_; |
| + base::WaitableEvent db_thread_blocked_; |
| + base::Lock db_thread_lock_; |
| +}; |
| + |
| +// Wrap SyncBackendRegistrar so that we can monitor its lifetime. |
| +class TestRegistrar : public SyncBackendRegistrar { |
| + public: |
| + explicit TestRegistrar(Profile* profile) |
| + : SyncBackendRegistrar("test", profile, scoped_ptr<base::Thread>()) {} |
| + |
| + ~TestRegistrar() override { |
| + BrowserThread::PostTask( |
| + BrowserThread::UI, FROM_HERE, base::MessageLoop::QuitClosure()); |
| + } |
| +}; |
| + |
| +TEST_F(SyncBackendRegistrarShutdownTest, BlockingShutdown) { |
| + // Take ownership of |db_thread_lock_| so that the DB thread can't acquire it. |
| + db_thread_lock_.Acquire(); |
| + |
| + // This will block the DB thread by waiting on |db_thread_lock_|. |
| + BrowserThread::PostTask( |
| + BrowserThread::DB, |
| + FROM_HERE, |
| + base::Bind(&SyncBackendRegistrarShutdownTest::BlockDBThread, |
| + base::Unretained(this))); |
| + |
| + TestingProfile profile; |
| + scoped_ptr<TestRegistrar> registrar(new TestRegistrar(&profile)); |
| + base::Thread* sync_thread = registrar->sync_thread(); |
| + |
| + // Stop here until the DB thread gets a chance to run and block on the lock. |
| + // Please note that since the task above didn't finish, the task to |
| + // initialize the worker on the DB thread hasn't had a chance to run yet too. |
| + // Which means ModelSafeWorker::SetWorkingLoopToCurrent hasn't been called |
| + // for the DB worker. |
| + db_thread_blocked_.Wait(); |
| + |
| + registrar->SetInitialTypes(ModelTypeSet()); |
| + |
| + // Start the shutdown. |
| + registrar->RequestWorkerStopOnUIThread(); |
| + |
| + sync_thread->message_loop()->PostTask( |
| + FROM_HERE, |
| + base::Bind(&SyncBackendRegistrar::Shutdown, |
| + base::Unretained(registrar.release()))); |
| + |
| + // The test verifies that the sync thread doesn't block because |
| + // of the blocked DB thread and can finish the shutdown. |
| + sync_thread->message_loop()->RunUntilIdle(); |
| + |
| + db_thread_lock_.Release(); |
| + |
| + // Run the main thread loop until all workers have been removed and the |
| + // registrar destroyed. |
| + base::MessageLoop::current()->Run(); |
|
Nicolas Zea
2014/10/22 17:06:44
nit: Run() is deprecated. The preferred approach t
stanisc
2014/10/23 17:51:13
Done.
|
| +} |
| + |
| } // namespace |
| } // namespace browser_sync |