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

Unified Diff: chrome/renderer/content_settings_observer_browsertest.cc

Issue 1835753002: Reset content settings caches during provisional load start instead of commit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move things under DidCreateNewDocument instead of DidStartProvisionalLoad Created 4 years, 9 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
Index: chrome/renderer/content_settings_observer_browsertest.cc
diff --git a/chrome/renderer/content_settings_observer_browsertest.cc b/chrome/renderer/content_settings_observer_browsertest.cc
index d57647d7f56cd9e51d711fe62060a5b9a332d137..1e60160bac813b3ed6be2957926075209c5ba96b 100644
--- a/chrome/renderer/content_settings_observer_browsertest.cc
+++ b/chrome/renderer/content_settings_observer_browsertest.cc
@@ -13,6 +13,7 @@
#include "ipc/ipc_message_macros.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
+#include "third_party/WebKit/public/web/WebFrameContentDumper.h"
#include "third_party/WebKit/public/web/WebView.h"
using testing::_;
@@ -88,15 +89,16 @@ TEST_F(ChromeRenderViewTest, DISABLED_AllowDOMStorage) {
// Regression test for http://crbug.com/35011
TEST_F(ChromeRenderViewTest, JSBlockSentAfterPageLoad) {
// 1. Load page with JS.
- std::string html = "<html>"
- "<head>"
- "<script>document.createElement('div');</script>"
- "</head>"
- "<body>"
- "</body>"
- "</html>";
+ const char kHtml[] =
+ "<html>"
+ "<head>"
+ "<script>document.createElement('div');</script>"
+ "</head>"
+ "<body>"
+ "</body>"
+ "</html>";
render_thread_->sink().ClearMessages();
- LoadHTML(html.c_str());
+ LoadHTML(kHtml);
// 2. Block JavaScript.
RendererContentSettingRules content_setting_rules;
@@ -118,7 +120,7 @@ TEST_F(ChromeRenderViewTest, JSBlockSentAfterPageLoad) {
// 3. Reload page.
std::string url_str = "data:text/html;charset=utf-8,";
- url_str.append(html);
+ url_str.append(kHtml);
GURL url(url_str);
Reload(url);
ProcessPendingMessages();
@@ -269,14 +271,15 @@ TEST_F(ChromeRenderViewTest, ContentSettingsBlockScripts) {
observer->SetContentSettingRules(&content_setting_rules);
// Load a page which contains a script.
- std::string html = "<html>"
- "<head>"
- "<script src='data:foo'></script>"
- "</head>"
- "<body>"
- "</body>"
- "</html>";
- LoadHTML(html.c_str());
+ const char kHtml[] =
+ "<html>"
+ "<head>"
+ "<script src='data:foo'></script>"
+ "</head>"
+ "<body>"
+ "</body>"
+ "</html>";
+ LoadHTML(kHtml);
// Verify that the script was blocked.
bool was_blocked = false;
@@ -305,14 +308,15 @@ TEST_F(ChromeRenderViewTest, ContentSettingsAllowScripts) {
observer->SetContentSettingRules(&content_setting_rules);
// Load a page which contains a script.
- std::string html = "<html>"
- "<head>"
- "<script src='data:foo'></script>"
- "</head>"
- "<body>"
- "</body>"
- "</html>";
- LoadHTML(html.c_str());
+ const char kHtml[] =
+ "<html>"
+ "<head>"
+ "<script src='data:foo'></script>"
+ "</head>"
+ "<body>"
+ "</body>"
+ "</html>";
+ LoadHTML(kHtml);
// Verify that the script was not blocked.
bool was_blocked = false;
@@ -324,6 +328,92 @@ TEST_F(ChromeRenderViewTest, ContentSettingsAllowScripts) {
EXPECT_FALSE(was_blocked);
}
+// Regression test for crbug.com/232410: Load a page with JS blocked. Then,
+// allow JS and reload the page. In each case, only one of noscript or script
+// tags should be enabled, but never both.
+TEST_F(ChromeRenderViewTest, ContentSettingsNoscriptTag) {
+ // 1. Block JavaScript.
+ RendererContentSettingRules content_setting_rules;
+ ContentSettingsForOneType& script_setting_rules =
+ content_setting_rules.script_rules;
+ script_setting_rules.push_back(ContentSettingPatternSource(
+ ContentSettingsPattern::Wildcard(), ContentSettingsPattern::Wildcard(),
+ CONTENT_SETTING_BLOCK, std::string(), false));
+
+ ContentSettingsObserver* observer =
+ ContentSettingsObserver::Get(view_->GetMainRenderFrame());
+ observer->SetContentSettingRules(&content_setting_rules);
+
+ // 2. Load a page which contains a noscript tag and a script tag. Note that
+ // the page doesn't have a body tag.
+ const char kHtml[] =
+ "<html>"
+ "<noscript>JS_DISABLED</noscript>"
+ "<script>document.write('JS_ENABLED');</script>"
+ "</html>";
+ LoadHTML(kHtml);
+ EXPECT_EQ("JS_DISABLED", blink::WebFrameContentDumper::dumpFrameTreeAsText(
+ GetMainFrame(), 1024)
+ .utf8());
+
+ // 3. Allow JavaScript.
+ script_setting_rules.clear();
+ script_setting_rules.push_back(ContentSettingPatternSource(
+ ContentSettingsPattern::Wildcard(), ContentSettingsPattern::Wildcard(),
+ CONTENT_SETTING_ALLOW, std::string(), false));
+ observer->SetContentSettingRules(&content_setting_rules);
+
+ // 4. Reload the page.
+ std::string url_str = "data:text/html;charset=utf-8,";
+ url_str.append(kHtml);
+ GURL url(url_str);
+ Reload(url);
+ EXPECT_EQ("JS_ENABLED", blink::WebFrameContentDumper::dumpFrameTreeAsText(
+ GetMainFrame(), 1024)
+ .utf8());
+}
+
+// Checks that same page navigations don't update content settings for the page.
+TEST_F(ChromeRenderViewTest, ContentSettingsSamePageNavigation) {
+ MockContentSettingsObserver mock_observer(view_->GetMainRenderFrame());
+ // Load a page which contains a script.
+ const char kHtml[] =
+ "<html>"
+ "<head>"
+ "<script src='data:foo'></script>"
+ "</head>"
+ "<body>"
+ "</body>"
+ "</html>";
+ LoadHTML(kHtml);
+
+ // Verify that the script was not blocked.
+ bool was_blocked = false;
+ for (size_t i = 0; i < render_thread_->sink().message_count(); ++i) {
+ const IPC::Message* msg = render_thread_->sink().GetMessageAt(i);
+ if (msg->type() == ChromeViewHostMsg_ContentBlocked::ID)
+ was_blocked = true;
+ }
+ EXPECT_FALSE(was_blocked);
+
+ // Block JavaScript.
+ RendererContentSettingRules content_setting_rules;
+ ContentSettingsForOneType& script_setting_rules =
+ content_setting_rules.script_rules;
+ script_setting_rules.push_back(ContentSettingPatternSource(
+ ContentSettingsPattern::Wildcard(), ContentSettingsPattern::Wildcard(),
+ CONTENT_SETTING_BLOCK, std::string(), false));
+
+ ContentSettingsObserver* observer =
+ ContentSettingsObserver::Get(view_->GetMainRenderFrame());
+ observer->SetContentSettingRules(&content_setting_rules);
+
+ // The page shouldn't see the change to script blocking setting after a
+ // same page navigation.
+ DidNavigateWithinPage(GetMainFrame(), true);
+ EXPECT_TRUE(observer->allowScript(true));
+}
+
TEST_F(ChromeRenderViewTest, ContentSettingsInterstitialPages) {
MockContentSettingsObserver mock_observer(view_->GetMainRenderFrame());
// Block scripts.
@@ -352,14 +442,15 @@ TEST_F(ChromeRenderViewTest, ContentSettingsInterstitialPages) {
observer->OnSetAsInterstitial();
// Load a page which contains a script.
- std::string html = "<html>"
- "<head>"
- "<script src='data:foo'></script>"
- "</head>"
- "<body>"
- "</body>"
- "</html>";
- LoadHTML(html.c_str());
+ const char kHtml[] =
+ "<html>"
+ "<head>"
+ "<script src='data:foo'></script>"
+ "</head>"
+ "<body>"
+ "</body>"
+ "</html>";
+ LoadHTML(kHtml);
// Verify that the script was allowed.
bool was_blocked = false;
« chrome/renderer/content_settings_observer.cc ('K') | « chrome/renderer/content_settings_observer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698