Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Unified Diff: services/preferences/tracked/registry_hash_store_contents_win_unittest.cc

Issue 2926453002: Fix a race condition in ~RegistryHashStoreContentsWin (Closed)
Patch Set: Add temp_scoped_dir_cleaner to a build file Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: services/preferences/tracked/registry_hash_store_contents_win_unittest.cc
diff --git a/services/preferences/tracked/registry_hash_store_contents_win_unittest.cc b/services/preferences/tracked/registry_hash_store_contents_win_unittest.cc
index 468843437fb8ebfa64327206d963c3cd0d980065..d85fdbf1e8b23dc8752ba97cac3ac07821e04f67 100644
--- a/services/preferences/tracked/registry_hash_store_contents_win_unittest.cc
+++ b/services/preferences/tracked/registry_hash_store_contents_win_unittest.cc
@@ -4,9 +4,13 @@
#include "services/preferences/tracked/registry_hash_store_contents_win.h"
+#include "base/bind.h"
+#include "base/files/scoped_temp_dir.h"
+#include "base/memory/ptr_util.h"
#include "base/strings/string16.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/test_reg_util_win.h"
+#include "base/threading/thread.h"
#include "base/values.h"
#include "base/win/registry.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -33,7 +37,8 @@ class RegistryHashStoreContentsWinTest : public testing::Test {
ASSERT_NO_FATAL_FAILURE(
registry_override_manager_.OverrideRegistry(HKEY_CURRENT_USER));
- contents.reset(new RegistryHashStoreContentsWin(kRegistryPath, kStoreKey));
+ contents.reset(
+ new RegistryHashStoreContentsWin(kRegistryPath, kStoreKey, nullptr));
}
std::unique_ptr<HashStoreContents> contents;
@@ -118,3 +123,90 @@ TEST_F(RegistryHashStoreContentsWinTest, TestReset) {
EXPECT_FALSE(contents->GetSplitMacs(kSplitPrefPath, &split_macs));
EXPECT_EQ(0U, split_macs.size());
}
+
+TEST(RegistryHashStoreContentsWinScopedTest, TestScopedDirsCleared) {
+ std::string stored_mac;
+
+ base::ScopedTempDir temp_dir;
+ ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
+ const base::string16 registry_path =
+ temp_dir.GetPath().DirName().BaseName().LossyDisplayName();
+
+ RegistryHashStoreContentsWin verifying_contents(registry_path, kStoreKey,
+ nullptr);
+
+ scoped_refptr<TempScopedDirRegistryCleaner> temp_scoped_dir_cleaner =
+ base::MakeRefCounted<TempScopedDirRegistryCleaner>();
+ std::unique_ptr<RegistryHashStoreContentsWin> contentsA =
+ base::MakeUnique<RegistryHashStoreContentsWin>(registry_path, kStoreKey,
+ temp_scoped_dir_cleaner);
+ std::unique_ptr<RegistryHashStoreContentsWin> contentsB =
+ base::MakeUnique<RegistryHashStoreContentsWin>(registry_path, kStoreKey,
+ temp_scoped_dir_cleaner);
+
+ contentsA->SetMac(kAtomicPrefPath, kTestStringA);
+ contentsB->SetMac(kAtomicPrefPath, kTestStringB);
+
+ temp_scoped_dir_cleaner = nullptr;
+ EXPECT_TRUE(verifying_contents.GetMac(kAtomicPrefPath, &stored_mac));
+ EXPECT_EQ(kTestStringB, stored_mac);
+
+ contentsB.reset();
+ EXPECT_TRUE(verifying_contents.GetMac(kAtomicPrefPath, &stored_mac));
+ EXPECT_EQ(kTestStringB, stored_mac);
+
+ contentsA.reset();
+ EXPECT_FALSE(verifying_contents.GetMac(kAtomicPrefPath, &stored_mac));
+}
+
+void OffThreadTempScopedDirDestructor(
+ base::string16 registry_path,
+ std::unique_ptr<HashStoreContents> contents) {
+ std::string stored_mac;
+
+ RegistryHashStoreContentsWin verifying_contents(registry_path, kStoreKey,
+ nullptr);
+
+ contents->SetMac(kAtomicPrefPath, kTestStringB);
+ EXPECT_TRUE(verifying_contents.GetMac(kAtomicPrefPath, &stored_mac));
+ EXPECT_EQ(kTestStringB, stored_mac);
+
+ contents.reset();
+ EXPECT_FALSE(verifying_contents.GetMac(kAtomicPrefPath, &stored_mac));
+}
+
+TEST(RegistryHashStoreContentsWinScopedTest, TestScopedDirsClearedMultiThread) {
+ std::string stored_mac;
+
+ base::ScopedTempDir temp_dir;
+ ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
+ const base::string16 registry_path =
+ temp_dir.GetPath().DirName().BaseName().LossyDisplayName();
+
+ RegistryHashStoreContentsWin verifying_contents(registry_path, kStoreKey,
+ nullptr);
+
+ base::Thread test_thread("scoped_dir_cleaner_test_thread");
+ test_thread.StartAndWaitForTesting();
+
+ scoped_refptr<TempScopedDirRegistryCleaner> temp_scoped_dir_cleaner =
+ base::MakeRefCounted<TempScopedDirRegistryCleaner>();
+ std::unique_ptr<RegistryHashStoreContentsWin> contents =
+ base::MakeUnique<RegistryHashStoreContentsWin>(
+ registry_path, kStoreKey, std::move(temp_scoped_dir_cleaner));
+ base::OnceClosure other_thread_closure =
+ base::BindOnce(&OffThreadTempScopedDirDestructor, registry_path,
+ base::Passed(contents->MakeCopy()));
+
+ contents->SetMac(kAtomicPrefPath, kTestStringA);
+ contents.reset();
+
+ EXPECT_TRUE(verifying_contents.GetMac(kAtomicPrefPath, &stored_mac));
+ EXPECT_EQ(kTestStringA, stored_mac);
+
+ test_thread.task_runner()->PostTask(FROM_HERE,
+ std::move(other_thread_closure));
+ test_thread.FlushForTesting();
+
+ EXPECT_FALSE(verifying_contents.GetMac(kAtomicPrefPath, &stored_mac));
+}

Powered by Google App Engine
This is Rietveld 408576698