| // Copyright 2016 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 <memory> |
| |
| #include "base/run_loop.h" |
| #include "base/test/bind_test_util.h" |
| #include "base/test/task_environment.h" |
| #include "build/build_config.h" |
| #include "chrome/updater/persisted_data.h" |
| #include "chrome/updater/prefs.h" |
| #include "chrome/updater/prefs_impl.h" |
| #include "chrome/updater/registration_data.h" |
| #include "components/prefs/testing_pref_service.h" |
| #include "components/update_client/update_client.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| |
| namespace updater { |
| |
| TEST(PrefsTest, PrefsCommitPendingWrites) { |
| base::test::TaskEnvironment task_environment( |
| base::test::SingleThreadTaskEnvironment::MainThreadType::UI); |
| auto pref = std::make_unique<TestingPrefServiceSimple>(); |
| update_client::RegisterPrefs(pref->registry()); |
| auto metadata = base::MakeRefCounted<PersistedData>(pref.get()); |
| |
| // Writes something to prefs. |
| metadata->SetBrandCode("someappid", "brand"); |
| EXPECT_STREQ(metadata->GetBrandCode("someappid").c_str(), "brand"); |
| |
| // Tests writing to storage completes. |
| PrefsCommitPendingWrites(pref.get()); |
| } |
| |
| #if defined(OS_WIN) |
| |
| TEST(PrefsTest, AcquireGlobalPrefsLock_LockAgainSameThread) { |
| base::test::TaskEnvironment task_environment( |
| base::test::SingleThreadTaskEnvironment::MainThreadType::UI); |
| |
| std::unique_ptr<ScopedPrefsLock> lock = |
| AcquireGlobalPrefsLock(base::TimeDelta::FromSeconds(0)); |
| EXPECT_TRUE(lock); |
| |
| std::unique_ptr<ScopedPrefsLock> same_thread_lock = |
| AcquireGlobalPrefsLock(base::TimeDelta::FromSeconds(0)); |
| EXPECT_TRUE(same_thread_lock); |
| } |
| |
| TEST(PrefsTest, AcquireGlobalPrefsLock_LockThenTryLockInThreadFail) { |
| base::test::TaskEnvironment task_environment( |
| base::test::SingleThreadTaskEnvironment::MainThreadType::UI); |
| |
| std::unique_ptr<ScopedPrefsLock> lock = |
| AcquireGlobalPrefsLock(base::TimeDelta::FromSeconds(0)); |
| EXPECT_TRUE(lock); |
| |
| base::RunLoop run_loop; |
| base::ThreadPool::PostTaskAndReplyWithResult( |
| FROM_HERE, base::BindOnce([]() { |
| std::unique_ptr<ScopedPrefsLock> lock = |
| AcquireGlobalPrefsLock(base::TimeDelta::FromSeconds(0)); |
| return lock.get() != nullptr; |
| }), |
| base::OnceCallback<void(bool)>( |
| base::BindLambdaForTesting([&run_loop](bool acquired_lock) { |
| EXPECT_FALSE(acquired_lock); |
| run_loop.Quit(); |
| }))); |
| run_loop.Run(); |
| } |
| |
| TEST(PrefsTest, AcquireGlobalPrefsLock_TryLockInThreadSuccess) { |
| base::test::TaskEnvironment task_environment( |
| base::test::SingleThreadTaskEnvironment::MainThreadType::UI); |
| |
| base::RunLoop run_loop; |
| base::ThreadPool::PostTaskAndReplyWithResult( |
| FROM_HERE, base::BindOnce([]() { |
| std::unique_ptr<ScopedPrefsLock> lock = |
| AcquireGlobalPrefsLock(base::TimeDelta::FromSeconds(0)); |
| return lock.get() != nullptr; |
| }), |
| base::OnceCallback<void(bool)>( |
| base::BindLambdaForTesting([&run_loop](bool acquired_lock) { |
| EXPECT_TRUE(acquired_lock); |
| run_loop.Quit(); |
| }))); |
| run_loop.Run(); |
| |
| auto lock = AcquireGlobalPrefsLock(base::TimeDelta::FromSeconds(0)); |
| EXPECT_TRUE(lock); |
| } |
| |
| #endif |
| |
| } // namespace updater |