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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
|
// 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 "base/command_line.h"
#include "base/file_path.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/installer/util/install_util.h"
#include "chrome/installer/util/util_constants.h"
#include "chrome/test/mini_installer_test/chrome_mini_installer.h"
#include "chrome/test/mini_installer_test/mini_installer_test_constants.h"
#include "chrome/test/mini_installer_test/mini_installer_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
// Although the C++ style guide disallows use of namespace directive, use
// here because this is not only a .cc file, but also a test.
using namespace mini_installer_constants; // NOLINT
namespace {
class MiniInstallTest : public testing::Test {
public:
MiniInstallTest() : chrome_frame_(false) {}
static void CleanTheSystem() {
const CommandLine* cmd = CommandLine::ForCurrentProcess();
if (cmd->HasSwitch(installer::switches::kChromeFrame)) {
ChromeMiniInstaller systeminstall(kSystemInstall,
cmd->HasSwitch(installer::switches::kChromeFrame));
systeminstall.UnInstall();
} else {
ChromeMiniInstaller userinstall(kUserInstall,
cmd->HasSwitch(installer::switches::kChromeFrame));
userinstall.UnInstall();
ChromeMiniInstaller systeminstall(kSystemInstall,
cmd->HasSwitch(installer::switches::kChromeFrame));
systeminstall.UnInstall();
}
}
virtual void SetUp() {
// Parse test command-line arguments.
const CommandLine* cmd = CommandLine::ForCurrentProcess();
std::wstring build =
cmd->GetSwitchValueNative(switches::kInstallerTestBuild);
if (build.empty())
build = L"latest";
chrome_frame_ = cmd->HasSwitch(installer::switches::kChromeFrame);
CleanTheSystem();
// Separate the test output from cleaning output
printf("\nBEGIN test----------------------------------------\n");
// Create a few differently configured installers that are used in
// the tests, for convenience.
user_inst_.reset(new ChromeMiniInstaller(kUserInstall,
chrome_frame_));
sys_inst_.reset(new ChromeMiniInstaller(kSystemInstall,
chrome_frame_));
sys_inst_->SetBuildUnderTest(build);
user_inst_->SetBuildUnderTest(build);
}
static void TearDownTestCase() {
// Uninstall Chrome from the system after tests are run.
CleanTheSystem();
}
protected:
// Decided if ChromeFrame tests should be run.
bool chrome_frame_;
// Installers created in test fixture setup for convenience.
scoped_ptr<ChromeMiniInstaller> user_inst_;
scoped_ptr<ChromeMiniInstaller> sys_inst_;
};
} // namespace
#if defined(GOOGLE_CHROME_BUILD)
// Could use a parameterized gtest to slim down this list of tests, but since
// these tests will often be run manually, don't want to have obscure test
// names.
// Install full installer at system level.
TEST_F(MiniInstallTest, FullInstallerSys) {
sys_inst_->InstallFullInstaller(false);
}
// Install full installer at user level.
TEST_F(MiniInstallTest, FullInstallerUser) {
if (!chrome_frame_)
user_inst_->InstallFullInstaller(false);
}
// Overinstall full installer.
TEST_F(MiniInstallTest, FullOverPreviousFullUser) {
if (!chrome_frame_)
user_inst_->OverInstallOnFullInstaller(kFullInstall, false);
}
TEST_F(MiniInstallTest, FullOverPreviousFullSys) {
sys_inst_->OverInstallOnFullInstaller(kFullInstall, false);
}
// Overinstall full Chrome Frame installer while IE browser is running.
TEST_F(MiniInstallTest, FullFrameOverPreviousFullIERunningSys) {
if (chrome_frame_)
sys_inst_->OverInstallOnFullInstaller(kFullInstall, true);
}
// Overinstall diff installer.
TEST_F(MiniInstallTest, DiffOverPreviousFullUser) {
if (!chrome_frame_)
user_inst_->OverInstallOnFullInstaller(kDiffInstall, false);
}
TEST_F(MiniInstallTest, DiffOverPreviousFullSys) {
sys_inst_->OverInstallOnFullInstaller(kDiffInstall, false);
}
// Overinstall diff Chrome Frame installer while IE browser is running.
TEST_F(MiniInstallTest, DiffFrameOverPreviousFullIERunningSys) {
if (chrome_frame_)
sys_inst_->OverInstallOnFullInstaller(kDiffInstall, true);
}
// Repair version folder.
TEST_F(MiniInstallTest, RepairFolderOnFullUser) {
if (!chrome_frame_)
user_inst_->Repair(ChromeMiniInstaller::VERSION_FOLDER);
}
TEST_F(MiniInstallTest, RepairFolderOnFullSys) {
sys_inst_->Repair(ChromeMiniInstaller::VERSION_FOLDER);
}
// Repair registry.
TEST_F(MiniInstallTest, RepairRegistryOnFullUser) {
if (!chrome_frame_)
user_inst_->Repair(ChromeMiniInstaller::REGISTRY);
}
TEST_F(MiniInstallTest, RepairRegistryOnFullSys) {
sys_inst_->Repair(ChromeMiniInstaller::REGISTRY);
}
// Run full Chrome Frame install then uninstall it while IE browser is running.
TEST_F(MiniInstallTest, FullInstallAndUnInstallChromeFrameWithIERunning) {
if (chrome_frame_) {
sys_inst_->InstallFullInstaller(false);
sys_inst_->UnInstallChromeFrameWithIERunning();
}
}
// Install standalone.
TEST_F(MiniInstallTest, InstallStandaloneUser) {
if (!chrome_frame_)
user_inst_->InstallStandaloneInstaller();
}
// This test doesn't make sense. Disabling for now.
TEST_F(MiniInstallTest, DISABLED_MiniInstallerOverChromeMetaInstallerTest) {
if (!chrome_frame_)
user_inst_->OverInstall();
}
// Encountering issue 9593. Disabling temporarily.
TEST_F(MiniInstallTest,
DISABLED_InstallLatestStableFullInstallerOverChromeMetaInstaller) {
if (!chrome_frame_)
user_inst_->OverInstall();
}
// Encountering issue 9593. Disabling temporarily.
TEST_F(MiniInstallTest,
DISABLED_InstallLatestDevFullInstallerOverChromeMetaInstallerTest) {
if (!chrome_frame_)
user_inst_->OverInstall();
}
#endif
TEST_F(MiniInstallTest, InstallMiniInstallerSys) {
sys_inst_->Install();
}
#if defined(OS_WIN)
// http://crbug.com/57157 - Fails on windows.
#define MAYBE_InstallMiniInstallerUser FLAKY_InstallMiniInstallerUser
#else
#define MAYBE_InstallMiniInstallerUser InstallMiniInstallerUser
#endif
TEST_F(MiniInstallTest, MAYBE_InstallMiniInstallerUser) {
user_inst_->Install();
}
TEST_F(MiniInstallTest, MiniInstallTestValidWindowsVersion) {
// We run the tests on all supported OSes.
// Make sure the code agrees.
EXPECT_TRUE(InstallUtil::IsOSSupported());
}
|