1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
// Copyright (c) 2011 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 "chrome/installer/util/product_unittest.h"
#include "base/logging.h"
#include "base/test/test_reg_util_win.h"
#include "base/utf_string_conversions.h"
#include "chrome/installer/util/chrome_frame_distribution.h"
#include "chrome/installer/util/google_update_constants.h"
#include "chrome/installer/util/installation_state.h"
#include "chrome/installer/util/installer_state.h"
#include "chrome/installer/util/master_preferences.h"
#include "chrome/installer/util/product.h"
using base::win::RegKey;
using installer::Product;
using installer::MasterPreferences;
using registry_util::RegistryOverrideManager;
void TestWithTempDir::SetUp() {
// Name a subdirectory of the user temp directory.
ASSERT_TRUE(test_dir_.CreateUniqueTempDir());
}
void TestWithTempDir::TearDown() {
logging::CloseLogFile();
ASSERT_TRUE(test_dir_.Delete());
}
////////////////////////////////////////////////////////////////////////////////
void TestWithTempDirAndDeleteTempOverrideKeys::SetUp() {
TestWithTempDir::SetUp();
}
void TestWithTempDirAndDeleteTempOverrideKeys::TearDown() {
TestWithTempDir::TearDown();
}
////////////////////////////////////////////////////////////////////////////////
class ProductTest : public TestWithTempDirAndDeleteTempOverrideKeys {
protected:
};
// This test is flaky on Win, see http://crbug.com/100567
#if defined(OS_WIN)
#define MAYBE_ProductInstallBasic DISABLED_ProductInstallBasic
#else
#define MAYBE_ProductInstallBasic ProductInstallBasic
#endif
TEST_F(ProductTest, MAYBE_ProductInstallBasic) {
// TODO(tommi): We should mock this and use our mocked distribution.
const bool multi_install = false;
const bool system_level = true;
CommandLine cmd_line = CommandLine::FromString(
std::wstring(L"setup.exe") +
(multi_install ? L" --multi-install --chrome" : L"") +
(system_level ? L" --system-level" : L""));
installer::MasterPreferences prefs(cmd_line);
installer::InstallationState machine_state;
machine_state.Initialize();
installer::InstallerState installer_state;
installer_state.Initialize(cmd_line, prefs, machine_state);
const Product* product = installer_state.products()[0];
BrowserDistribution* distribution = product->distribution();
EXPECT_EQ(BrowserDistribution::CHROME_BROWSER, distribution->GetType());
FilePath user_data(product->GetUserDataPath());
EXPECT_FALSE(user_data.empty());
EXPECT_NE(std::wstring::npos,
user_data.value().find(installer::kInstallUserDataDir));
FilePath program_files;
PathService::Get(base::DIR_PROGRAM_FILES, &program_files);
// The User Data path should never be under program files, even though
// system_level is true.
EXPECT_EQ(std::wstring::npos,
user_data.value().find(program_files.value()));
// There should be no installed version in the registry.
machine_state.Initialize();
EXPECT_TRUE(machine_state.GetProductState(
system_level, distribution->GetType()) == NULL);
HKEY root = installer_state.root_key();
{
RegistryOverrideManager override_manager;
override_manager.OverrideRegistry(root, L"root_pit");
// Let's pretend chrome is installed.
RegKey version_key(root, distribution->GetVersionKey().c_str(),
KEY_ALL_ACCESS);
ASSERT_TRUE(version_key.Valid());
const char kCurrentVersion[] = "1.2.3.4";
scoped_ptr<Version> current_version(
Version::GetVersionFromString(kCurrentVersion));
version_key.WriteValue(google_update::kRegVersionField,
UTF8ToWide(current_version->GetString()).c_str());
// We started out with a non-msi product.
machine_state.Initialize();
const installer::ProductState* chrome_state =
machine_state.GetProductState(system_level, distribution->GetType());
EXPECT_TRUE(chrome_state != NULL);
if (chrome_state != NULL) {
EXPECT_TRUE(chrome_state->version().Equals(*current_version.get()));
EXPECT_FALSE(chrome_state->is_msi());
}
// Create a make-believe client state key.
RegKey key;
std::wstring state_key_path(distribution->GetStateKey());
ASSERT_EQ(ERROR_SUCCESS,
key.Create(root, state_key_path.c_str(), KEY_ALL_ACCESS));
// Set the MSI marker, refresh, and verify that we now see the MSI marker.
EXPECT_TRUE(product->SetMsiMarker(system_level, true));
machine_state.Initialize();
chrome_state =
machine_state.GetProductState(system_level, distribution->GetType());
EXPECT_TRUE(chrome_state != NULL);
if (chrome_state != NULL)
EXPECT_TRUE(chrome_state->is_msi());
}
}
TEST_F(ProductTest, LaunchChrome) {
// TODO(tommi): Test Product::LaunchChrome and
// Product::LaunchChromeAndWait.
LOG(ERROR) << "Test not implemented.";
}
|