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 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
|
// 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 <stddef.h>
#include <stdint.h>
#include <vector>
#include "base/base_switches.h"
#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/path_service.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "build/build_config.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/extensions/extension_browsertest.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/extensions/extension_util.h"
#include "chrome/browser/prefs/chrome_pref_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/testing_profile.h"
#include "chrome/test/base/ui_test_utils.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_switches.h"
#include "content/public/test/browser_test_utils.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/extension_system.h"
#include "extensions/browser/shared_user_script_master.h"
#include "extensions/browser/user_script_loader.h"
#include "extensions/common/extension.h"
#include "extensions/common/extension_set.h"
#include "extensions/common/feature_switch.h"
#include "extensions/common/manifest.h"
#include "extensions/common/switches.h"
#include "net/base/filename_util.h"
#if defined(OS_CHROMEOS)
#include "chrome/browser/chromeos/profiles/profile_helper.h"
#endif
using extensions::FeatureSwitch;
using extensions::ExtensionRegistry;
// This file contains high-level startup tests for the extensions system. We've
// had many silly bugs where command line flags did not get propagated correctly
// into the services, so we didn't start correctly.
class ExtensionStartupTestBase : public InProcessBrowserTest {
public:
ExtensionStartupTestBase() : unauthenticated_load_allowed_(true) {
num_expected_extensions_ = 3;
}
protected:
// InProcessBrowserTest
void SetUpCommandLine(base::CommandLine* command_line) override {
if (load_extensions_.empty()) {
// If no |load_extensions_| were specified, allow unauthenticated
// extension settings to be loaded from Preferences as if they had been
// authenticated correctly before they were handed to the ExtensionSystem.
command_line->AppendSwitchASCII(
switches::kForceFieldTrials,
base::StringPrintf(
"%s/%s/", chrome_prefs::internals::kSettingsEnforcementTrialName,
chrome_prefs::internals::kSettingsEnforcementGroupNoEnforcement));
#if defined(OFFICIAL_BUILD) && (defined(OS_WIN) || defined(OS_MACOSX))
// In Windows and MacOS official builds, it is not possible to disable
// settings enforcement.
unauthenticated_load_allowed_ = false;
#endif
} else {
base::FilePath::StringType paths = base::JoinString(
load_extensions_, base::FilePath::StringType(1, ','));
command_line->AppendSwitchNative(extensions::switches::kLoadExtension,
paths);
command_line->AppendSwitch(switches::kDisableExtensionsFileAccessCheck);
}
}
bool SetUpUserDataDirectory() override {
base::FilePath profile_dir;
base::PathService::Get(chrome::DIR_USER_DATA, &profile_dir);
profile_dir = profile_dir.AppendASCII(TestingProfile::kTestUserProfileDir);
base::CreateDirectory(profile_dir);
preferences_file_ = profile_dir.Append(chrome::kPreferencesFilename);
user_scripts_dir_ = profile_dir.AppendASCII("User Scripts");
extensions_dir_ = profile_dir.AppendASCII("Extensions");
if (load_extensions_.empty()) {
base::FilePath src_dir;
base::PathService::Get(chrome::DIR_TEST_DATA, &src_dir);
src_dir = src_dir.AppendASCII("extensions").AppendASCII("good");
base::CopyFile(src_dir.Append(chrome::kPreferencesFilename),
preferences_file_);
base::CopyDirectory(src_dir.AppendASCII("Extensions"), profile_dir,
true); // recursive
}
return true;
}
void SetUpInProcessBrowserTestFixture() override {
// Bots are on a domain, turn off the domain check for settings hardening in
// order to be able to test all SettingsEnforcement groups.
chrome_prefs::DisableDomainCheckForTesting();
}
void TearDown() override {
EXPECT_TRUE(base::DeleteFile(preferences_file_, false));
// TODO(phajdan.jr): Check return values of the functions below, carefully.
base::DeleteFile(user_scripts_dir_, true);
base::DeleteFile(extensions_dir_, true);
InProcessBrowserTest::TearDown();
}
static int GetNonComponentEnabledExtensionCount(Profile* profile) {
extensions::ExtensionRegistry* registry =
extensions::ExtensionRegistry::Get(profile);
int found_extensions = 0;
for (const auto& extension : registry->enabled_extensions()) {
if (!extensions::Manifest::IsComponentLocation(extension->location()))
++found_extensions;
}
return found_extensions;
}
void WaitForServicesToStart(int num_expected_extensions,
bool expect_extensions_enabled) {
if (!unauthenticated_load_allowed_)
num_expected_extensions = 0;
ASSERT_EQ(num_expected_extensions,
GetNonComponentEnabledExtensionCount(browser()->profile()));
extensions::ExtensionService* service =
extensions::ExtensionSystem::Get(browser()->profile())
->extension_service();
ASSERT_EQ(expect_extensions_enabled, service->extensions_enabled());
content::WindowedNotificationObserver user_scripts_observer(
extensions::NOTIFICATION_USER_SCRIPTS_UPDATED,
content::NotificationService::AllSources());
extensions::SharedUserScriptMaster* master =
extensions::ExtensionSystem::Get(browser()->profile())
->shared_user_script_master();
if (!master->script_loader()->initial_load_complete())
user_scripts_observer.Wait();
ASSERT_TRUE(master->script_loader()->initial_load_complete());
}
void TestInjection(bool expect_css, bool expect_script) {
if (!unauthenticated_load_allowed_) {
expect_css = false;
expect_script = false;
}
// Load a page affected by the content script and test to see the effect.
base::FilePath test_file;
base::PathService::Get(chrome::DIR_TEST_DATA, &test_file);
test_file =
test_file.AppendASCII("extensions").AppendASCII("test_file.html");
ui_test_utils::NavigateToURL(browser(), net::FilePathToFileURL(test_file));
bool result = false;
ASSERT_TRUE(content::ExecuteScriptAndExtractBool(
browser()->tab_strip_model()->GetActiveWebContents(),
"window.domAutomationController.send("
" document.defaultView.getComputedStyle(document.body, null)."
" getPropertyValue('background-color') == 'rgb(245, 245, 220)')",
&result));
EXPECT_EQ(expect_css, result);
result = false;
ASSERT_TRUE(content::ExecuteScriptAndExtractBool(
browser()->tab_strip_model()->GetActiveWebContents(),
"window.domAutomationController.send(document.title == 'Modified')",
&result));
EXPECT_EQ(expect_script, result);
}
base::FilePath preferences_file_;
base::FilePath extensions_dir_;
base::FilePath user_scripts_dir_;
// True unless unauthenticated extension settings are not allowed to be
// loaded in this configuration.
bool unauthenticated_load_allowed_;
// Extensions to load from the command line.
std::vector<base::FilePath::StringType> load_extensions_;
int num_expected_extensions_;
};
// ExtensionsStartupTest
// Ensures that we can startup the browser with --enable-extensions and some
// extensions installed and see them run and do basic things.
typedef ExtensionStartupTestBase ExtensionsStartupTest;
// Broken in official builds, http://crbug.com/474659
IN_PROC_BROWSER_TEST_F(ExtensionsStartupTest, DISABLED_Test) {
WaitForServicesToStart(num_expected_extensions_, true);
TestInjection(true, true);
}
// Broken in official builds, http://crbug.com/474659
// Sometimes times out on Mac. http://crbug.com/48151
// Tests that disallowing file access on an extension prevents it from injecting
// script into a page with a file URL.
IN_PROC_BROWSER_TEST_F(ExtensionsStartupTest, DISABLED_NoFileAccess) {
WaitForServicesToStart(num_expected_extensions_, true);
// Keep a separate list of extensions for which to disable file access, since
// doing so reloads them.
std::vector<const extensions::Extension*> extension_list;
extensions::ExtensionRegistry* registry =
extensions::ExtensionRegistry::Get(browser()->profile());
for (extensions::ExtensionSet::const_iterator it =
registry->enabled_extensions().begin();
it != registry->enabled_extensions().end(); ++it) {
if ((*it)->location() == extensions::Manifest::COMPONENT)
continue;
if (extensions::util::AllowFileAccess((*it)->id(), browser()->profile()))
extension_list.push_back(it->get());
}
for (size_t i = 0; i < extension_list.size(); ++i) {
content::WindowedNotificationObserver user_scripts_observer(
extensions::NOTIFICATION_USER_SCRIPTS_UPDATED,
content::NotificationService::AllSources());
extensions::util::SetAllowFileAccess(extension_list[i]->id(),
browser()->profile(), false);
user_scripts_observer.Wait();
}
TestInjection(false, false);
}
// ExtensionsLoadTest
// Ensures that we can startup the browser with --load-extension and see them
// run.
class ExtensionsLoadTest : public ExtensionStartupTestBase {
public:
ExtensionsLoadTest() {
base::FilePath one_extension_path;
base::PathService::Get(chrome::DIR_TEST_DATA, &one_extension_path);
one_extension_path = one_extension_path.AppendASCII("extensions")
.AppendASCII("good")
.AppendASCII("Extensions")
.AppendASCII("behllobkkfkfnphdnhnkndlbkcpglgmj")
.AppendASCII("1.0.0.0");
load_extensions_.push_back(one_extension_path.value());
}
};
IN_PROC_BROWSER_TEST_F(ExtensionsLoadTest, Test) {
WaitForServicesToStart(1, true);
TestInjection(true, true);
}
#if defined(OS_CHROMEOS)
IN_PROC_BROWSER_TEST_F(ExtensionsLoadTest,
SigninProfileCommandLineExtensionsDontLoad) {
// The --load-extension command line flag should not be applied to the sign-in
// profile.
EXPECT_EQ(0, GetNonComponentEnabledExtensionCount(
chromeos::ProfileHelper::GetSigninProfile()));
}
#endif // defined(OS_CHROMEOS)
// ExtensionsLoadMultipleTest
// Ensures that we can startup the browser with multiple extensions
// via --load-extension=X1,X2,X3.
class ExtensionsLoadMultipleTest : public ExtensionStartupTestBase {
public:
ExtensionsLoadMultipleTest() {
base::FilePath one_extension_path;
base::PathService::Get(chrome::DIR_TEST_DATA, &one_extension_path);
one_extension_path = one_extension_path.AppendASCII("extensions")
.AppendASCII("good")
.AppendASCII("Extensions")
.AppendASCII("behllobkkfkfnphdnhnkndlbkcpglgmj")
.AppendASCII("1.0.0.0");
load_extensions_.push_back(one_extension_path.value());
base::FilePath second_extension_path;
base::PathService::Get(chrome::DIR_TEST_DATA, &second_extension_path);
second_extension_path =
second_extension_path.AppendASCII("extensions").AppendASCII("app");
load_extensions_.push_back(second_extension_path.value());
base::FilePath third_extension_path;
base::PathService::Get(chrome::DIR_TEST_DATA, &third_extension_path);
third_extension_path =
third_extension_path.AppendASCII("extensions").AppendASCII("app1");
load_extensions_.push_back(third_extension_path.value());
base::FilePath fourth_extension_path;
base::PathService::Get(chrome::DIR_TEST_DATA, &fourth_extension_path);
fourth_extension_path =
fourth_extension_path.AppendASCII("extensions").AppendASCII("app2");
load_extensions_.push_back(fourth_extension_path.value());
}
};
IN_PROC_BROWSER_TEST_F(ExtensionsLoadMultipleTest, Test) {
WaitForServicesToStart(4, true);
TestInjection(true, true);
}
// TODO(catmullings): Remove test in future chrome release, perhaps M59.
class DeprecatedLoadComponentExtensionSwitchBrowserTest
: public extensions::ExtensionBrowserTest {
public:
DeprecatedLoadComponentExtensionSwitchBrowserTest() {}
void SetUpCommandLine(base::CommandLine* command_line) override;
ExtensionRegistry* GetExtensionRegistry() {
return ExtensionRegistry::Get(browser()->profile());
}
};
void DeprecatedLoadComponentExtensionSwitchBrowserTest::SetUpCommandLine(
base::CommandLine* command_line) {
extensions::ExtensionBrowserTest::SetUpCommandLine(command_line);
base::FilePath fp1(test_data_dir_.AppendASCII("app_dot_com_app/"));
base::FilePath fp2(test_data_dir_.AppendASCII("app/"));
command_line->AppendSwitchASCII(
"load-component-extension",
fp1.AsUTF8Unsafe() + "," + fp2.AsUTF8Unsafe());
}
// Tests that the --load-component-extension flag is not supported.
IN_PROC_BROWSER_TEST_F(DeprecatedLoadComponentExtensionSwitchBrowserTest,
DefunctLoadComponentExtensionFlag) {
EXPECT_TRUE(extension_service()->extensions_enabled());
// Checks that the extensions loaded with the --load-component-extension flag
// are not installed.
bool is_app_dot_com_extension_installed = false;
bool is_app_test_extension_installed = false;
for (const scoped_refptr<const extensions::Extension>& extension :
GetExtensionRegistry()->enabled_extensions()) {
if (extension->name() == "App Dot Com: The App") {
is_app_dot_com_extension_installed = true;
} else if (extension->name() == "App Test") {
is_app_test_extension_installed = true;
} else {
EXPECT_TRUE(
extensions::Manifest::IsComponentLocation(extension->location()));
}
}
EXPECT_FALSE(is_app_dot_com_extension_installed);
EXPECT_FALSE(is_app_test_extension_installed);
}
class DisableExtensionsExceptBrowserTest
: public extensions::ExtensionBrowserTest {
public:
DisableExtensionsExceptBrowserTest() {}
void SetUpCommandLine(base::CommandLine* command_line) override;
ExtensionRegistry* GetExtensionRegistry() {
return ExtensionRegistry::Get(browser()->profile());
}
};
void DisableExtensionsExceptBrowserTest::SetUpCommandLine(
base::CommandLine* command_line) {
extensions::ExtensionBrowserTest::SetUpCommandLine(command_line);
base::FilePath fp1(test_data_dir_.AppendASCII("app_dot_com_app/"));
base::FilePath fp2(test_data_dir_.AppendASCII("app/"));
command_line->AppendSwitchASCII(
switches::kDisableExtensionsExcept,
fp1.AsUTF8Unsafe() + "," + fp2.AsUTF8Unsafe());
command_line->AppendSwitch(switches::kNoErrorDialogs);
}
// Tests disabling all extensions except those listed
// (--disable-extensions-except).
IN_PROC_BROWSER_TEST_F(DisableExtensionsExceptBrowserTest,
DisableExtensionsExceptFlag) {
EXPECT_FALSE(extension_service()->extensions_enabled());
// Checks that the extensions loaded with the --disable-extensions-except flag
// are enabled.
bool is_app_dot_com_extension_enabled = false;
bool is_app_test_extension_enabled = false;
for (const scoped_refptr<const extensions::Extension>& extension :
GetExtensionRegistry()->enabled_extensions()) {
if (extension->name() == "App Dot Com: The App") {
is_app_dot_com_extension_enabled = true;
} else if (extension->name() == "App Test") {
is_app_test_extension_enabled = true;
} else {
EXPECT_TRUE(
extensions::Manifest::IsComponentLocation(extension->location()));
}
}
EXPECT_TRUE(is_app_dot_com_extension_enabled);
EXPECT_TRUE(is_app_test_extension_enabled);
}
|