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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
// Copyright (c) 2006-2008 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.
//
// Unit tests for GoogleChromeDistribution class.
#include <windows.h>
#include "base/registry.h"
#include "base/scoped_ptr.h"
#include "base/file_util.h"
#include "chrome/common/json_value_serializer.h"
#include "chrome/installer/util/browser_distribution.h"
#include "chrome/installer/util/google_update_constants.h"
#include "chrome/installer/util/google_chrome_distribution.h"
#include "chrome/installer/util/master_preferences.h"
#include "chrome/installer/util/work_item_list.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
class GoogleChromeDistributionTest : public testing::Test {
protected:
virtual void SetUp() {
// Currently no setup required.
}
virtual void TearDown() {
// Currently no tear down required.
}
// Creates "ap" key with the value given as parameter. Also adds work
// items to work_item_list given so that they can be rolled back later.
bool CreateApKey(WorkItemList* work_item_list, std::wstring value) {
HKEY reg_root = HKEY_CURRENT_USER;
std::wstring reg_key = GetApKeyPath();
work_item_list->AddCreateRegKeyWorkItem(reg_root, reg_key);
work_item_list->AddSetRegValueWorkItem(reg_root, reg_key,
google_update::kRegApField, value.c_str(), true);
if (!work_item_list->Do()) {
work_item_list->Rollback();
return false;
}
return true;
}
// Returns the key path of "ap" key Google\Update\ClientState\<chrome-guid>
std::wstring GetApKeyPath() {
std::wstring reg_key(google_update::kRegPathClientState);
reg_key.append(L"\\");
reg_key.append(google_update::kChromeGuid);
return reg_key;
}
// Utility method to read "ap" key value
std::wstring ReadApKeyValue() {
RegKey key;
std::wstring ap_key_value;
std::wstring reg_key = GetApKeyPath();
if (key.Open(HKEY_CURRENT_USER, reg_key.c_str(), KEY_ALL_ACCESS) &&
key.ReadValue(google_update::kRegApField, &ap_key_value)) {
return ap_key_value;
}
return std::wstring();
}
};
} // namespace
#if defined(GOOGLE_CHROME_BUILD)
TEST_F(GoogleChromeDistributionTest, GetNewGoogleUpdateApKeyTest) {
GoogleChromeDistribution* dist = static_cast<GoogleChromeDistribution*>(
BrowserDistribution::GetDistribution());
installer_util::InstallStatus s = installer_util::FIRST_INSTALL_SUCCESS;
installer_util::InstallStatus f = installer_util::INSTALL_FAILED;
// Incremental Installer that worked.
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(true, s, L""), L"");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(true, s, L"1.1"), L"1.1");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(true, s, L"1.1-dev"), L"1.1-dev");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(true, s, L"-full"), L"");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(true, s, L"1.1-full"), L"1.1");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(true, s, L"1.1-dev-full"),
L"1.1-dev");
// Incremental Installer that failed.
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(true, f, L""), L"-full");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(true, f, L"1.1"), L"1.1-full");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(true, f, L"1.1-dev"),
L"1.1-dev-full");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(true, f, L"-full"), L"-full");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(true, f, L"1.1-full"), L"1.1-full");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(true, f, L"1.1-dev-full"),
L"1.1-dev-full");
// Full Installer that worked.
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(false, s, L""), L"");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(false, s, L"1.1"), L"1.1");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(false, s, L"1.1-dev"), L"1.1-dev");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(false, s, L"-full"), L"");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(false, s, L"1.1-full"), L"1.1");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(false, s, L"1.1-dev-full"),
L"1.1-dev");
// Full Installer that failed.
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(false, f, L""), L"");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(false, f, L"1.1"), L"1.1");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(false, f, L"1.1-dev"), L"1.1-dev");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(false, f, L"-full"), L"");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(false, f, L"1.1-full"), L"1.1");
EXPECT_EQ(dist->GetNewGoogleUpdateApKey(false, f, L"1.1-dev-full"),
L"1.1-dev");
}
TEST_F(GoogleChromeDistributionTest, UpdateDiffInstallStatusTest) {
// Get Google Chrome distribution
GoogleChromeDistribution* dist = static_cast<GoogleChromeDistribution*>(
BrowserDistribution::GetDistribution());
scoped_ptr<WorkItemList> work_item_list(WorkItem::CreateWorkItemList());
// Test incremental install failure
if (!CreateApKey(work_item_list.get(), L""))
FAIL() << "Failed to create ap key.";
dist->UpdateDiffInstallStatus(false, true, installer_util::INSTALL_FAILED);
EXPECT_STREQ(ReadApKeyValue().c_str(), L"-full");
work_item_list->Rollback();
work_item_list.reset(WorkItem::CreateWorkItemList());
// Test incremental install success
if (!CreateApKey(work_item_list.get(), L""))
FAIL() << "Failed to create ap key.";
dist->UpdateDiffInstallStatus(false, true,
installer_util::FIRST_INSTALL_SUCCESS);
EXPECT_STREQ(ReadApKeyValue().c_str(), L"");
work_item_list->Rollback();
work_item_list.reset(WorkItem::CreateWorkItemList());
// Test full install failure
if (!CreateApKey(work_item_list.get(), L"-full"))
FAIL() << "Failed to create ap key.";
dist->UpdateDiffInstallStatus(false, false, installer_util::INSTALL_FAILED);
EXPECT_STREQ(ReadApKeyValue().c_str(), L"");
work_item_list->Rollback();
work_item_list.reset(WorkItem::CreateWorkItemList());
// Test full install success
if (!CreateApKey(work_item_list.get(), L"-full"))
FAIL() << "Failed to create ap key.";
dist->UpdateDiffInstallStatus(false, false,
installer_util::FIRST_INSTALL_SUCCESS);
EXPECT_STREQ(ReadApKeyValue().c_str(), L"");
work_item_list->Rollback();
work_item_list.reset(WorkItem::CreateWorkItemList());
// Test the case of when "ap" key doesnt exist at all
std::wstring ap_key_value = ReadApKeyValue();
std::wstring reg_key = GetApKeyPath();
HKEY reg_root = HKEY_CURRENT_USER;
bool ap_key_deleted = false;
RegKey key;
if (!key.Open(HKEY_CURRENT_USER, reg_key.c_str(), KEY_ALL_ACCESS)) {
work_item_list->AddCreateRegKeyWorkItem(reg_root, reg_key);
if (!work_item_list->Do())
FAIL() << "Failed to create ClientState key.";
} else if (key.DeleteValue(google_update::kRegApField)) {
ap_key_deleted = true;
}
// try differential installer
dist->UpdateDiffInstallStatus(false, true, installer_util::INSTALL_FAILED);
EXPECT_STREQ(ReadApKeyValue().c_str(), L"-full");
// try full installer now
dist->UpdateDiffInstallStatus(false, false, installer_util::INSTALL_FAILED);
EXPECT_STREQ(ReadApKeyValue().c_str(), L"");
// Now cleanup to leave the system in unchanged state.
// - Diff installer creates an ap key if it didnt exist, so delete this ap key
// - If we created any reg key path for ap, roll it back
// - Finally restore the original value of ap key.
key.Open(HKEY_CURRENT_USER, reg_key.c_str(), KEY_ALL_ACCESS);
key.DeleteValue(google_update::kRegApField);
work_item_list->Rollback();
if (ap_key_deleted) {
work_item_list.reset(WorkItem::CreateWorkItemList());
if (!CreateApKey(work_item_list.get(), ap_key_value))
FAIL() << "Failed to restore ap key.";
}
}
TEST_F(GoogleChromeDistributionTest, TestExtractUninstallMetrics) {
// A make-believe JSON preferences file.
std::string pref_string(
"{ \n"
" \"foo\": \"bar\",\n"
" \"uninstall_metrics\": { \n"
" \"last_launch_time_sec\": \"1235341118\","
" \"last_observed_running_time_sec\": \"1235341183\","
" \"launch_count\": \"11\","
" \"page_load_count\": \"68\","
" \"uptime_sec\": \"809\"\n"
" },\n"
" \"blah\": {\n"
" \"this_sentence_is_true\": false\n"
" },\n"
" \"user_experience_metrics\": { \n"
" \"client_id_timestamp\": \"1234567890\","
" \"reporting_enabled\": true\n"
" }\n"
"} \n");
// The URL string we expect to be generated from said make-believe file.
std::wstring expected_url_string(
L"&last_launch_time_sec=1235341118"
L"&last_observed_running_time_sec=1235341183"
L"&launch_count=11&page_load_count=68&uptime_sec=809&");
expected_url_string += installer_util::kUninstallInstallationDate;
expected_url_string += L"=1234567890";
JSONStringValueSerializer json_deserializer(pref_string);
std::string error_message;
scoped_ptr<Value> root(json_deserializer.Deserialize(&error_message));
ASSERT_TRUE(root.get());
std::wstring uninstall_metrics_string;
GoogleChromeDistribution* dist = static_cast<GoogleChromeDistribution*>(
BrowserDistribution::GetDistribution());
EXPECT_TRUE(
dist->ExtractUninstallMetrics(*static_cast<DictionaryValue*>(root.get()),
&uninstall_metrics_string));
EXPECT_EQ(expected_url_string, uninstall_metrics_string);
}
#endif
TEST(MasterPreferences, ParseDistroParams) {
std::wstring prefs;
ASSERT_TRUE(file_util::CreateTemporaryFileName(&prefs));
const char text[] =
"{ \n"
" \"distribution\": { \n"
" \"skip_first_run_ui\": true,\n"
" \"show_welcome_page\": true,\n"
" \"import_search_engine\": true,\n"
" \"import_history\": true,\n"
" \"create_all_shortcuts\": true,\n"
" \"do_not_launch_chrome\": true,\n"
" \"make_chrome_default\": true,\n"
" \"system_level\": true,\n"
" \"verbose_logging\": true,\n"
" \"require_eula\": true,\n"
" \"alternate_shortcut_text\": true\n"
"},\n"
" \"blah\": {\n"
" \"import_history\": false\n"
" }\n"
"} \n";
EXPECT_TRUE(file_util::WriteFile(prefs, text, sizeof(text)));
int result = installer_util::ParseDistributionPreferences(prefs);
EXPECT_FALSE(result & installer_util::MASTER_PROFILE_NOT_FOUND);
EXPECT_FALSE(result & installer_util::MASTER_PROFILE_ERROR);
EXPECT_TRUE(result & installer_util::MASTER_PROFILE_NO_FIRST_RUN_UI);
EXPECT_TRUE(result & installer_util::MASTER_PROFILE_SHOW_WELCOME);
EXPECT_TRUE(result & installer_util::MASTER_PROFILE_IMPORT_SEARCH_ENGINE);
EXPECT_TRUE(result & installer_util::MASTER_PROFILE_IMPORT_HISTORY);
EXPECT_TRUE(result & installer_util::MASTER_PROFILE_CREATE_ALL_SHORTCUTS);
EXPECT_TRUE(result & installer_util::MASTER_PROFILE_DO_NOT_LAUNCH_CHROME);
EXPECT_TRUE(result & installer_util::MASTER_PROFILE_MAKE_CHROME_DEFAULT);
EXPECT_TRUE(result & installer_util::MASTER_PROFILE_SYSTEM_LEVEL);
EXPECT_TRUE(result & installer_util::MASTER_PROFILE_VERBOSE_LOGGING);
EXPECT_TRUE(result & installer_util::MASTER_PROFILE_REQUIRE_EULA);
EXPECT_TRUE(result & installer_util::MASTER_PROFILE_ALT_SHORTCUT_TXT);
EXPECT_TRUE(file_util::Delete(prefs, false));
}
TEST(BrowserDistribution, StringsTest) {
BrowserDistribution *dist = BrowserDistribution::GetDistribution();
ASSERT_TRUE(dist != NULL);
std::wstring name = dist->GetApplicationName();
std::wstring desc = dist->GetAppDescription();
// TODO(cpu) finish the test when the translated strings arrive.
}
|