1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Main entry point for all unit tests.
7 #include "rlz_test_helpers.h"
12 #include "base/strings/string16.h"
13 #include "rlz/lib/rlz_lib.h"
14 #include "testing/gtest/include/gtest/gtest.h"
18 #include "base/win/registry.h"
19 #include "base/win/windows_version.h"
20 #elif defined(OS_POSIX)
21 #include "base/files/file_path.h"
22 #include "rlz/lib/rlz_value_store.h"
29 // Path to recursively copy into the replacemment hives. These are needed
30 // to make sure certain win32 APIs continue to run correctly once the real
31 // hives are replaced.
32 const wchar_t kHKLMAccessProviders
[] =
33 L
"System\\CurrentControlSet\\Control\\Lsa\\AccessProviders";
35 struct RegistryValue
{
38 std::vector
<uint8
> data
;
41 struct RegistryKeyData
{
42 std::vector
<RegistryValue
> values
;
43 std::map
<base::string16
, RegistryKeyData
> keys
;
46 void ReadRegistryTree(const base::win::RegKey
& src
, RegistryKeyData
* data
) {
49 base::win::RegistryValueIterator
i(src
.Handle(), L
"");
51 data
->values
.reserve(i
.ValueCount());
52 for (; i
.Valid(); ++i
) {
53 RegistryValue
& value
= *data
->values
.insert(data
->values
.end(),
55 const uint8
* data
= reinterpret_cast<const uint8
*>(i
.Value());
56 value
.name
.assign(i
.Name());
57 value
.type
= i
.Type();
58 value
.data
.assign(data
, data
+ i
.ValueSize());
62 // Next read subkeys recursively.
63 for (base::win::RegistryKeyIterator
i(src
.Handle(), L
"");
65 ReadRegistryTree(base::win::RegKey(src
.Handle(), i
.Name(), KEY_READ
),
66 &data
->keys
[base::string16(i
.Name())]);
70 void WriteRegistryTree(const RegistryKeyData
& data
, base::win::RegKey
* dest
) {
71 // First write values.
72 for (size_t i
= 0; i
< data
.values
.size(); ++i
) {
73 const RegistryValue
& value
= data
.values
[i
];
74 dest
->WriteValue(value
.name
.c_str(),
75 value
.data
.size() ? &value
.data
[0] : NULL
,
76 static_cast<DWORD
>(value
.data
.size()),
80 // Next write values recursively.
81 for (std::map
<base::string16
, RegistryKeyData
>::const_iterator iter
=
83 iter
!= data
.keys
.end(); ++iter
) {
84 base::win::RegKey
key(dest
->Handle(), iter
->first
.c_str(), KEY_ALL_ACCESS
);
85 WriteRegistryTree(iter
->second
, &key
);
89 // Initialize temporary HKLM/HKCU registry hives used for testing.
90 // Testing RLZ requires reading and writing to the Windows registry. To keep
91 // the tests isolated from the machine's state, as well as to prevent the tests
92 // from causing side effects in the registry, HKCU and HKLM are overridden for
93 // the duration of the tests. RLZ tests don't expect the HKCU and KHLM hives to
94 // be empty though, and this function initializes the minimum value needed so
95 // that the test will run successfully.
96 void InitializeRegistryOverridesForTesting(
97 registry_util::RegistryOverrideManager
* override_manager
) {
98 // For the moment, the HKCU hive requires no initialization.
99 const bool do_copy
= (base::win::GetVersion() >= base::win::VERSION_WIN7
);
100 RegistryKeyData data
;
103 // Copy the following HKLM subtrees to the temporary location so that the
104 // win32 APIs used by the tests continue to work:
106 // HKLM\System\CurrentControlSet\Control\Lsa\AccessProviders
108 // This seems to be required since Win7.
109 ReadRegistryTree(base::win::RegKey(HKEY_LOCAL_MACHINE
,
110 kHKLMAccessProviders
,
114 override_manager
->OverrideRegistry(HKEY_LOCAL_MACHINE
);
115 override_manager
->OverrideRegistry(HKEY_CURRENT_USER
);
118 base::win::RegKey
key(
119 HKEY_LOCAL_MACHINE
, kHKLMAccessProviders
, KEY_ALL_ACCESS
);
120 WriteRegistryTree(data
, &key
);
126 #endif // defined(OS_WIN)
128 void RlzLibTestNoMachineStateHelper::SetUp() {
130 InitializeRegistryOverridesForTesting(&override_manager_
);
131 #elif defined(OS_MACOSX)
132 base::mac::ScopedNSAutoreleasePool pool
;
133 #endif // defined(OS_WIN)
134 #if defined(OS_POSIX)
135 ASSERT_TRUE(temp_dir_
.CreateUniqueTempDir());
136 rlz_lib::testing::SetRlzStoreDirectory(temp_dir_
.path());
137 #endif // defined(OS_POSIX)
140 void RlzLibTestNoMachineStateHelper::TearDown() {
141 #if defined(OS_POSIX)
142 rlz_lib::testing::SetRlzStoreDirectory(base::FilePath());
143 #endif // defined(OS_POSIX)
146 void RlzLibTestNoMachineState::SetUp() {
147 m_rlz_test_helper_
.SetUp();
150 void RlzLibTestNoMachineState::TearDown() {
151 m_rlz_test_helper_
.TearDown();
154 void RlzLibTestBase::SetUp() {
155 RlzLibTestNoMachineState::SetUp();
157 rlz_lib::CreateMachineState();
158 #endif // defined(OS_WIN)