blob: 21500d108021b2a4d3d3b4de122f89e6129ec66e [file] [log] [blame]
// 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/chrome_notification_types.h"
#include "chrome/browser/extensions/crx_installer.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/profiles/profile.h"
#include "chrome/browser/ui/browser_commands.h"
#include "chrome/test/base/ui_test_utils.h"
#include "content/public/browser/notification_service.h"
namespace extensions {
class ExtensionFunctionalTest : public ExtensionBrowserTest {
public:
void InstallExtensionSilently(ExtensionService* service,
const char* filename) {
service->set_show_extensions_prompts(false);
size_t num_before = service->extensions()->size();
base::FilePath path = test_data_dir_.AppendASCII(filename);
content::WindowedNotificationObserver extension_loaded_observer(
chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED,
content::NotificationService::AllSources());
scoped_refptr<extensions::CrxInstaller> installer(
extensions::CrxInstaller::CreateSilent(service));
installer->set_is_gallery_install(false);
installer->set_allow_silent_install(true);
installer->set_install_source(Manifest::INTERNAL);
installer->set_off_store_install_allow_reason(
extensions::CrxInstaller::OffStoreInstallAllowedInTest);
observer_->Watch(
chrome::NOTIFICATION_CRX_INSTALLER_DONE,
content::Source<extensions::CrxInstaller>(installer.get()));
installer->InstallCrx(path);
observer_->Wait();
size_t num_after = service->extensions()->size();
EXPECT_EQ(num_before + 1, num_after);
extension_loaded_observer.Wait();
const Extension* extension = service->GetExtensionById(
last_loaded_extension_id(), false);
EXPECT_TRUE(extension != NULL);
}
};
IN_PROC_BROWSER_TEST_F(ExtensionFunctionalTest,
PRE_TestAdblockExtensionCrash) {
ExtensionService* service = profile()->GetExtensionService();
InstallExtensionSilently(service, "adblock.crx");
}
IN_PROC_BROWSER_TEST_F(ExtensionFunctionalTest, TestAdblockExtensionCrash) {
ExtensionService* service = profile()->GetExtensionService();
// Verify that the extension is enabled and allowed in incognito
// is disabled.
EXPECT_TRUE(service->IsExtensionEnabled(last_loaded_extension_id()));
EXPECT_FALSE(util::IsIncognitoEnabled(last_loaded_extension_id(), profile()));
}
IN_PROC_BROWSER_TEST_F(ExtensionFunctionalTest, TestSetExtensionsState) {
ExtensionService* service = profile()->GetExtensionService();
InstallExtensionSilently(service, "google_talk.crx");
// Disable the extension and verify.
util::SetIsIncognitoEnabled(last_loaded_extension_id(), profile(), false);
service->DisableExtension(last_loaded_extension_id(),
Extension::DISABLE_USER_ACTION);
EXPECT_FALSE(service->IsExtensionEnabled(last_loaded_extension_id()));
// Enable the extension and verify.
util::SetIsIncognitoEnabled(last_loaded_extension_id(), profile(), false);
service->EnableExtension(last_loaded_extension_id());
EXPECT_TRUE(service->IsExtensionEnabled(last_loaded_extension_id()));
// Allow extension in incognito mode and verify.
service->EnableExtension(last_loaded_extension_id());
util::SetIsIncognitoEnabled(last_loaded_extension_id(), profile(), true);
EXPECT_TRUE(util::IsIncognitoEnabled(last_loaded_extension_id(), profile()));
// Disallow extension in incognito mode and verify.
service->EnableExtension(last_loaded_extension_id());
util::SetIsIncognitoEnabled(last_loaded_extension_id(), profile(), false);
EXPECT_FALSE(util::IsIncognitoEnabled(last_loaded_extension_id(), profile()));
}
} // namespace extensions