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
|
// Copyright (c) 2012 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/browser/themes/theme_service.h"
#include "base/file_util.h"
#include "base/path_service.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/extensions/extension_service_unittest.h"
#include "chrome/browser/extensions/unpacked_installer.h"
#include "chrome/browser/managed_mode/managed_user_service.h"
#include "chrome/browser/managed_mode/managed_user_service_factory.h"
#include "chrome/browser/themes/custom_theme_supplier.h"
#include "chrome/browser/themes/theme_service_factory.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/base/testing_browser_process.h"
#include "chrome/test/base/testing_profile.h"
#include "chrome/test/base/testing_profile_manager.h"
#include "content/public/test/test_utils.h"
#include "extensions/common/extension.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace theme_service_internal {
class ThemeServiceTest : public ExtensionServiceTestBase {
public:
ThemeServiceTest() : is_managed_(false),
manager_(TestingBrowserProcess::GetGlobal()) {}
virtual ~ThemeServiceTest() {}
// Moves a minimal theme to |temp_dir_path| and unpacks it from that
// directory.
std::string LoadUnpackedThemeAt(const base::FilePath& temp_dir) {
base::FilePath dst_manifest_path = temp_dir.AppendASCII("manifest.json");
base::FilePath test_data_dir;
EXPECT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir));
base::FilePath src_manifest_path =
test_data_dir.AppendASCII("extensions/theme_minimal/manifest.json");
EXPECT_TRUE(base::CopyFile(src_manifest_path, dst_manifest_path));
scoped_refptr<extensions::UnpackedInstaller> installer(
extensions::UnpackedInstaller::Create(service_));
content::WindowedNotificationObserver observer(
chrome::NOTIFICATION_EXTENSION_LOADED,
content::Source<Profile>(profile_.get()));
installer->Load(temp_dir);
observer.Wait();
std::string extension_id =
content::Details<extensions::Extension>(observer.details())->id();
// Let the ThemeService finish creating the theme pack.
base::MessageLoop::current()->RunUntilIdle();
return extension_id;
}
// Update the theme with |extension_id|.
void UpdateUnpackedTheme(const std::string& extension_id) {
int updated_notification = service_->IsExtensionEnabled(extension_id) ?
chrome::NOTIFICATION_EXTENSION_LOADED :
chrome::NOTIFICATION_EXTENSION_UPDATE_DISABLED;
const base::FilePath& path =
service_->GetInstalledExtension(extension_id)->path();
scoped_refptr<extensions::UnpackedInstaller> installer(
extensions::UnpackedInstaller::Create(service_));
content::WindowedNotificationObserver observer(updated_notification,
content::Source<Profile>(profile_.get()));
installer->Load(path);
observer.Wait();
// Let the ThemeService finish creating the theme pack.
base::MessageLoop::current()->RunUntilIdle();
}
virtual void SetUp() {
ExtensionServiceTestBase::SetUp();
ExtensionServiceTestBase::ExtensionServiceInitParams params =
CreateDefaultInitParams();
params.profile_is_managed = is_managed_;
InitializeExtensionService(params);
service_->Init();
ASSERT_TRUE(manager_.SetUp());
}
const CustomThemeSupplier* get_theme_supplier(ThemeService* theme_service) {
return theme_service->get_theme_supplier();
}
TestingProfileManager* manager() {
return &manager_;
}
protected:
bool is_managed_;
private:
TestingProfileManager manager_;
};
// Installs then uninstalls a theme and makes sure that the ThemeService
// reverts to the default theme after the uninstall.
TEST_F(ThemeServiceTest, ThemeInstallUninstall) {
ThemeService* theme_service =
ThemeServiceFactory::GetForProfile(profile_.get());
theme_service->UseDefaultTheme();
// Let the ThemeService uninstall unused themes.
base::MessageLoop::current()->RunUntilIdle();
base::ScopedTempDir temp_dir;
ASSERT_TRUE(temp_dir.CreateUniqueTempDir());
const std::string& extension_id = LoadUnpackedThemeAt(temp_dir.path());
EXPECT_FALSE(theme_service->UsingDefaultTheme());
EXPECT_EQ(extension_id, theme_service->GetThemeID());
// Now uninstall the extension, should revert to the default theme.
service_->UninstallExtension(extension_id, false, NULL);
EXPECT_TRUE(theme_service->UsingDefaultTheme());
}
// Test that a theme extension is disabled when not in use. A theme may be
// installed but not in use if it there is an infobar to revert to the previous
// theme.
TEST_F(ThemeServiceTest, DisableUnusedTheme) {
ThemeService* theme_service =
ThemeServiceFactory::GetForProfile(profile_.get());
theme_service->UseDefaultTheme();
// Let the ThemeService uninstall unused themes.
base::MessageLoop::current()->RunUntilIdle();
base::ScopedTempDir temp_dir1;
ASSERT_TRUE(temp_dir1.CreateUniqueTempDir());
base::ScopedTempDir temp_dir2;
ASSERT_TRUE(temp_dir2.CreateUniqueTempDir());
// 1) Installing a theme should disable the previously active theme.
const std::string& extension1_id = LoadUnpackedThemeAt(temp_dir1.path());
EXPECT_FALSE(theme_service->UsingDefaultTheme());
EXPECT_EQ(extension1_id, theme_service->GetThemeID());
EXPECT_TRUE(service_->IsExtensionEnabled(extension1_id));
// Show an infobar to prevent the current theme from being uninstalled.
theme_service->OnInfobarDisplayed();
const std::string& extension2_id = LoadUnpackedThemeAt(temp_dir2.path());
EXPECT_EQ(extension2_id, theme_service->GetThemeID());
EXPECT_TRUE(service_->IsExtensionEnabled(extension2_id));
EXPECT_TRUE(service_->GetExtensionById(extension1_id,
ExtensionService::INCLUDE_DISABLED));
// 2) Enabling a disabled theme extension should swap the current theme.
service_->EnableExtension(extension1_id);
base::MessageLoop::current()->RunUntilIdle();
EXPECT_EQ(extension1_id, theme_service->GetThemeID());
EXPECT_TRUE(service_->IsExtensionEnabled(extension1_id));
EXPECT_TRUE(service_->GetExtensionById(extension2_id,
ExtensionService::INCLUDE_DISABLED));
// 3) Using SetTheme() with a disabled theme should enable and set the
// theme. This is the case when the user reverts to the previous theme
// via an infobar.
const extensions::Extension* extension2 =
service_->GetInstalledExtension(extension2_id);
theme_service->SetTheme(extension2);
base::MessageLoop::current()->RunUntilIdle();
EXPECT_EQ(extension2_id, theme_service->GetThemeID());
EXPECT_TRUE(service_->IsExtensionEnabled(extension2_id));
EXPECT_TRUE(service_->GetExtensionById(extension1_id,
ExtensionService::INCLUDE_DISABLED));
// 4) Disabling the current theme extension should revert to the default theme
// and uninstall any installed theme extensions.
theme_service->OnInfobarDestroyed();
EXPECT_FALSE(theme_service->UsingDefaultTheme());
service_->DisableExtension(extension2_id,
extensions::Extension::DISABLE_USER_ACTION);
base::MessageLoop::current()->RunUntilIdle();
EXPECT_TRUE(theme_service->UsingDefaultTheme());
EXPECT_FALSE(service_->GetInstalledExtension(extension1_id));
EXPECT_FALSE(service_->GetInstalledExtension(extension2_id));
}
// Test the ThemeService's behavior when a theme is upgraded.
TEST_F(ThemeServiceTest, ThemeUpgrade) {
// Setup.
ThemeService* theme_service =
ThemeServiceFactory::GetForProfile(profile_.get());
theme_service->UseDefaultTheme();
// Let the ThemeService uninstall unused themes.
base::MessageLoop::current()->RunUntilIdle();
theme_service->OnInfobarDisplayed();
base::ScopedTempDir temp_dir1;
ASSERT_TRUE(temp_dir1.CreateUniqueTempDir());
base::ScopedTempDir temp_dir2;
ASSERT_TRUE(temp_dir2.CreateUniqueTempDir());
const std::string& extension1_id = LoadUnpackedThemeAt(temp_dir1.path());
const std::string& extension2_id = LoadUnpackedThemeAt(temp_dir2.path());
// Test the initial state.
EXPECT_TRUE(service_->GetExtensionById(extension1_id,
ExtensionService::INCLUDE_DISABLED));
EXPECT_EQ(extension2_id, theme_service->GetThemeID());
// 1) Upgrading the current theme should not revert to the default theme.
content::WindowedNotificationObserver theme_change_observer(
chrome::NOTIFICATION_BROWSER_THEME_CHANGED,
content::Source<ThemeService>(theme_service));
UpdateUnpackedTheme(extension2_id);
// The ThemeService should have sent an theme change notification even though
// the id of the current theme did not change.
theme_change_observer.Wait();
EXPECT_EQ(extension2_id, theme_service->GetThemeID());
EXPECT_TRUE(service_->GetExtensionById(extension1_id,
ExtensionService::INCLUDE_DISABLED));
// 2) Upgrading a disabled theme should not change the current theme.
UpdateUnpackedTheme(extension1_id);
EXPECT_EQ(extension2_id, theme_service->GetThemeID());
EXPECT_TRUE(service_->GetExtensionById(extension1_id,
ExtensionService::INCLUDE_DISABLED));
}
class ThemeServiceManagedUserTest : public ThemeServiceTest {
public:
ThemeServiceManagedUserTest() {}
virtual ~ThemeServiceManagedUserTest() {}
virtual void SetUp() OVERRIDE {
is_managed_ = true;
ThemeServiceTest::SetUp();
}
};
// Checks that managed users have their own default theme.
TEST_F(ThemeServiceManagedUserTest, ManagedUserThemeReplacesDefaultTheme) {
ThemeService* theme_service =
ThemeServiceFactory::GetForProfile(profile_.get());
theme_service->UseDefaultTheme();
EXPECT_TRUE(theme_service->UsingDefaultTheme());
EXPECT_TRUE(get_theme_supplier(theme_service));
EXPECT_EQ(get_theme_supplier(theme_service)->get_theme_type(),
CustomThemeSupplier::MANAGED_USER_THEME);
}
#if defined(OS_LINUX) && !defined(OS_CHROMEOS)
// Checks that managed users don't use the system theme even if it is the
// default. The system theme is only available on Linux.
TEST_F(ThemeServiceManagedUserTest, ManagedUserThemeReplacesNativeTheme) {
profile_->GetPrefs()->SetBoolean(prefs::kUsesSystemTheme, true);
ThemeService* theme_service =
ThemeServiceFactory::GetForProfile(profile_.get());
theme_service->UseDefaultTheme();
EXPECT_TRUE(theme_service->UsingDefaultTheme());
EXPECT_TRUE(get_theme_supplier(theme_service));
EXPECT_EQ(get_theme_supplier(theme_service)->get_theme_type(),
CustomThemeSupplier::MANAGED_USER_THEME);
}
#endif
}; // namespace theme_service_internal
|