Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(875)

Unified Diff: chrome/browser/extensions/api/declarative_content/declarative_content_apitest.cc

Issue 1363463002: [Extensions Toolbar] Add a finch config for the redesign (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Finnur's Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_action.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/declarative_content/declarative_content_apitest.cc
diff --git a/chrome/browser/extensions/api/declarative_content/declarative_content_apitest.cc b/chrome/browser/extensions/api/declarative_content/declarative_content_apitest.cc
index 74eebe0fa81281e1a0306990c92b8302d6addbe9..68901bdf5d5a29e709dfe71af1bf861cd64ce678 100644
--- a/chrome/browser/extensions/api/declarative_content/declarative_content_apitest.cc
+++ b/chrome/browser/extensions/api/declarative_content/declarative_content_apitest.cc
@@ -21,6 +21,7 @@
#include "content/public/test/browser_test_utils.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/extension_system.h"
+#include "extensions/browser/test_extension_registry_observer.h"
#include "extensions/test/extension_test_message_listener.h"
#include "testing/gmock/include/gmock/gmock.h"
@@ -643,32 +644,65 @@ IN_PROC_BROWSER_TEST_F(DeclarativeContentApiTest,
IN_PROC_BROWSER_TEST_F(DeclarativeContentApiTest,
ShowPageActionWithoutPageAction) {
+ // Load an extension without a page action.
std::string manifest_without_page_action = kDeclarativeContentManifest;
base::ReplaceSubstringsAfterOffset(
&manifest_without_page_action, 0, "\"page_action\": {},", "");
ASSERT_NE(kDeclarativeContentManifest, manifest_without_page_action);
ext_dir_.WriteManifest(manifest_without_page_action);
ext_dir_.WriteFile(FILE_PATH_LITERAL("background.js"), kBackgroundHelpers);
- const Extension* extension = LoadExtension(ext_dir_.unpacked_path());
- ASSERT_TRUE(extension);
- EXPECT_THAT(ExecuteScriptInBackgroundPage(
- extension->id(),
- "setRules([{\n"
- " conditions: [new PageStateMatcher({\n"
- " pageUrl: {hostPrefix: \"test\"}})],\n"
- " actions: [new ShowPageAction()]\n"
- "}], 'test_rule');\n"),
- testing::HasSubstr("without a page action"));
+ std::string extension_id;
- content::WebContents* const tab =
- browser()->tab_strip_model()->GetWebContentsAt(0);
- NavigateInRenderer(tab, GURL("http://test/"));
+ std::string script =
+ "setRules([{\n"
+ " conditions: [new PageStateMatcher({\n"
+ " pageUrl: {hostPrefix: \"test\"}})],\n"
+ " actions: [new ShowPageAction()]\n"
+ "}], 'test_rule');\n";
- EXPECT_EQ(NULL,
- ExtensionActionManager::Get(browser()->profile())->
- GetPageAction(*extension));
- EXPECT_EQ(0u, extension_action_test_util::GetVisiblePageActionCount(tab));
+ {
+ // Without the extension action redesign, the extension should get an error.
+ FeatureSwitch::ScopedOverride override_toolbar_redesign(
+ FeatureSwitch::extension_action_redesign(), false);
+ const Extension* extension = LoadExtension(ext_dir_.unpacked_path());
+ ASSERT_TRUE(extension);
+ extension_id = extension->id();
+
+ EXPECT_THAT(ExecuteScriptInBackgroundPage(extension->id(), script),
+ testing::HasSubstr("without a page action"));
+
+ content::WebContents* const tab =
+ browser()->tab_strip_model()->GetWebContentsAt(0);
+ NavigateInRenderer(tab, GURL("http://test/"));
+
+ // There should be no page action.
+ EXPECT_EQ(nullptr, ExtensionActionManager::Get(browser()->profile())
+ ->GetPageAction(*extension));
+ EXPECT_EQ(0u, extension_action_test_util::GetVisiblePageActionCount(tab));
+ }
+ {
+ // With the extension action redesign, it should work normally.
+ FeatureSwitch::ScopedOverride override_toolbar_redesign(
+ FeatureSwitch::extension_action_redesign(), true);
+ ReloadExtension(extension_id);
+ const Extension* extension =
+ ExtensionRegistry::Get(profile())->enabled_extensions().GetByID(
+ extension_id);
+ ASSERT_TRUE(extension);
+
+ EXPECT_THAT(ExecuteScriptInBackgroundPage(extension->id(), script),
+ testing::Not(testing::HasSubstr("without a page action")));
+
+ content::WebContents* const tab =
+ browser()->tab_strip_model()->GetWebContentsAt(0);
+ NavigateInRenderer(tab, GURL("http://test/"));
+
+ // There should be a page action.
+ EXPECT_TRUE(ExtensionActionManager::Get(browser()->profile())
+ ->GetPageAction(*extension));
+ EXPECT_EQ(1u, extension_action_test_util::GetVisiblePageActionCount(tab));
+ }
}
IN_PROC_BROWSER_TEST_F(DeclarativeContentApiTest,
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_action.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698