diff options
author | zelidrag@chromium.org <zelidrag@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-08 04:40:59 +0000 |
---|---|---|
committer | zelidrag@chromium.org <zelidrag@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-08 04:40:59 +0000 |
commit | 0de615a09db2bc15d4395063ec9683c1499c59a1 (patch) | |
tree | cadb1ae00204ebd53756a6dbb19d17832cb9fa84 /chrome/browser/extensions/test_extension_prefs.cc | |
parent | 667be6ec365f627ba2a5628cfc8de0054a111b2f (diff) | |
download | chromium_src-0de615a09db2bc15d4395063ec9683c1499c59a1.zip chromium_src-0de615a09db2bc15d4395063ec9683c1499c59a1.tar.gz chromium_src-0de615a09db2bc15d4395063ec9683c1499c59a1.tar.bz2 |
Moved JsonPrefStore to use SequencedWorkerPool instead of FILE thread. The pool also ensures that the same file requests are written in order received and that they block on shutdown.
BUG=153367
TEST=existing unit/browser tests
Review URL: https://codereview.chromium.org/11027070
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166603 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/test_extension_prefs.cc')
-rw-r--r-- | chrome/browser/extensions/test_extension_prefs.cc | 44 |
1 files changed, 21 insertions, 23 deletions
diff --git a/chrome/browser/extensions/test_extension_prefs.cc b/chrome/browser/extensions/test_extension_prefs.cc index 7c3cf8e..f03df25 100644 --- a/chrome/browser/extensions/test_extension_prefs.cc +++ b/chrome/browser/extensions/test_extension_prefs.cc @@ -11,6 +11,8 @@ #include "base/message_loop.h" #include "base/message_loop_proxy.h" #include "base/prefs/json_pref_store.h" +#include "base/run_loop.h" +#include "base/sequenced_task_runner.h" #include "base/synchronization/waitable_event.h" #include "base/values.h" #include "chrome/browser/extensions/extension_pref_store.h" @@ -31,6 +33,8 @@ namespace extensions { namespace { +void DoNothing() {} + // Mock ExtensionPrefs class with artificial clock to guarantee that no two // extensions get the same installation time stamp and we can reliably // assert the installation order in the tests below. @@ -54,9 +58,10 @@ class MockExtensionPrefs : public ExtensionPrefs { } // namespace -TestExtensionPrefs::TestExtensionPrefs() - : pref_service_(NULL), - extensions_disabled_(false) { +TestExtensionPrefs::TestExtensionPrefs( + base::SequencedTaskRunner* task_runner) : pref_service_(NULL), + task_runner_(task_runner), + extensions_disabled_(false) { EXPECT_TRUE(temp_dir_.CreateUniqueTempDir()); preferences_file_ = temp_dir_.path().AppendASCII("Preferences"); extensions_dir_ = temp_dir_.path().AppendASCII("Extensions"); @@ -65,36 +70,29 @@ TestExtensionPrefs::TestExtensionPrefs() RecreateExtensionPrefs(); } -TestExtensionPrefs::~TestExtensionPrefs() {} +TestExtensionPrefs::~TestExtensionPrefs() { +} void TestExtensionPrefs::RecreateExtensionPrefs() { // We persist and reload the PrefService's PrefStores because this process // deletes all empty dictionaries. The ExtensionPrefs implementation // needs to be able to handle this situation. if (pref_service_.get()) { - // The PrefService writes its persistent file on the file thread, so we - // need to wait for any pending I/O to complete before creating a new - // PrefService. - base::WaitableEvent io_finished(false, false); - pref_service_-> CommitPendingWrite(); - EXPECT_TRUE(BrowserThread::PostTask( - BrowserThread::FILE, - FROM_HERE, - base::Bind(&base::WaitableEvent::Signal, - base::Unretained(&io_finished)))); - - // If the FILE thread is in fact the current thread (possible in testing - // scenarios), we have to ensure the task has a chance to run. If the FILE - // thread is a different thread, the test must ensure that thread is running - // (otherwise the Wait below will hang). - MessageLoop::current()->RunAllPending(); - - io_finished.Wait(); + // Commit a pending write (which posts a task to task_runner_) and wait for + // it to finish. + pref_service_->CommitPendingWrite(); + base::RunLoop run_loop; + ASSERT_TRUE( + task_runner_->PostTaskAndReply( + FROM_HERE, + base::Bind(&DoNothing), + run_loop.QuitClosure())); + run_loop.Run(); } extension_pref_value_map_.reset(new ExtensionPrefValueMap); PrefServiceMockBuilder builder; - builder.WithUserFilePrefs(preferences_file_); + builder.WithUserFilePrefs(preferences_file_, task_runner_); builder.WithExtensionPrefs( new ExtensionPrefStore(extension_pref_value_map_.get(), false)); pref_service_.reset(builder.Create()); |