Chromium Code Reviews

Unified Diff: chrome_frame/test/chrome_frame_test_utils.h

Issue 5564009: Temporary workaround to get tests that reference singletons either directly o... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « chrome_frame/chrome_frame_unittest_main.cc ('k') | chrome_frame/test/chrome_frame_test_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/chrome_frame_test_utils.h
===================================================================
--- chrome_frame/test/chrome_frame_test_utils.h (revision 68663)
+++ chrome_frame/test/chrome_frame_test_utils.h (working copy)
@@ -21,6 +21,8 @@
#include "base/message_loop.h"
#include "base/process_util.h"
#include "base/scoped_comptr_win.h"
+#include "base/scoped_ptr.h"
+#include "base/win/registry.h"
#include "chrome_frame/test_utils.h"
#include "chrome_frame/test/simulate_input.h"
@@ -177,6 +179,41 @@
// during test runs.
base::ProcessHandle StartCrashService();
+class TempRegKeyOverride {
+ public:
+ static const wchar_t kTempTestKeyPath[];
+
+ TempRegKeyOverride(HKEY override, const wchar_t* temp_name);
+ ~TempRegKeyOverride();
+
+ static void DeleteAllTempKeys();
+
+ protected:
+ HKEY override_;
+ base::win::RegKey temp_key_;
+ std::wstring temp_name_;
+};
+
+// Used in tests where we reference the registry and don't want to run into
+// problems where existing registry settings might conflict with the
+// expectations of the test.
+class ScopedVirtualizeHklmAndHkcu {
+ public:
+ ScopedVirtualizeHklmAndHkcu();
+ ~ScopedVirtualizeHklmAndHkcu();
+
+ protected:
+ scoped_ptr<TempRegKeyOverride> hklm_;
+ scoped_ptr<TempRegKeyOverride> hkcu_;
+};
+
} // namespace chrome_frame_test
+// TODO(tommi): This is a temporary workaround while we're getting our
+// Singleton story straight. Ideally each test should clear up any singletons
+// it might have created, but test cases do not implicitly have their own
+// AtExitManager, so we have this workaround method for tests that depend on
+// "fresh" singletons. The implementation is in chrome_frame_unittest_main.cc.
+void DeleteAllSingletons();
+
#endif // CHROME_FRAME_TEST_CHROME_FRAME_TEST_UTILS_H_
« no previous file with comments | « chrome_frame/chrome_frame_unittest_main.cc ('k') | chrome_frame/test/chrome_frame_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine