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
|
// Copyright 2014 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 <vector>
#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/histogram_tester.h"
#include "chrome/browser/content_settings/chrome_content_settings_utils.h"
#include "chrome/browser/content_settings/tab_specific_content_settings.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_content_setting_bubble_model_delegate.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/content_settings/content_setting_bubble_model.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/content_settings/core/common/content_settings_types.h"
#include "components/rappor/test_rappor_service.h"
#include "content/public/common/content_switches.h"
#include "content/public/test/test_navigation_observer.h"
#include "net/dns/mock_host_resolver.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "net/test/embedded_test_server/request_handler_util.h"
#include "testing/gtest/include/gtest/gtest.h"
const base::FilePath::CharType kDocRoot[] =
FILE_PATH_LITERAL("chrome/test/data");
class ContentSettingBubbleModelMixedScriptTest : public InProcessBrowserTest {
protected:
void SetUpInProcessBrowserTestFixture() override {
https_server_.reset(
new net::EmbeddedTestServer(net::EmbeddedTestServer::TYPE_HTTPS));
https_server_->ServeFilesFromSourceDirectory(base::FilePath(kDocRoot));
ASSERT_TRUE(https_server_->Start());
}
TabSpecificContentSettings* GetActiveTabSpecificContentSettings() {
return TabSpecificContentSettings::FromWebContents(
browser()->tab_strip_model()->GetActiveWebContents());
}
std::unique_ptr<net::EmbeddedTestServer> https_server_;
};
// Tests that a MIXEDSCRIPT type ContentSettingBubbleModel sends appropriate
// IPCs to allow the renderer to load unsafe scripts and refresh the page
// automatically.
IN_PROC_BROWSER_TEST_F(ContentSettingBubbleModelMixedScriptTest, MainFrame) {
GURL url(https_server_->GetURL("/content_setting_bubble/mixed_script.html"));
// Load a page with mixed content and do quick verification by looking at
// the title string.
ui_test_utils::NavigateToURL(browser(), url);
EXPECT_TRUE(GetActiveTabSpecificContentSettings()->IsContentBlocked(
CONTENT_SETTINGS_TYPE_MIXEDSCRIPT));
// Emulate link clicking on the mixed script bubble.
std::unique_ptr<ContentSettingBubbleModel> model(
ContentSettingBubbleModel::CreateContentSettingBubbleModel(
browser()->content_setting_bubble_model_delegate(),
browser()->tab_strip_model()->GetActiveWebContents(),
browser()->profile(), CONTENT_SETTINGS_TYPE_MIXEDSCRIPT));
model->OnCustomLinkClicked();
// Wait for reload
content::TestNavigationObserver observer(
browser()->tab_strip_model()->GetActiveWebContents());
observer.Wait();
EXPECT_FALSE(GetActiveTabSpecificContentSettings()->IsContentBlocked(
CONTENT_SETTINGS_TYPE_MIXEDSCRIPT));
}
class ContentSettingsMixedScriptIgnoreCertErrorsTest
: public ContentSettingBubbleModelMixedScriptTest {
protected:
void SetUpCommandLine(base::CommandLine* command_line) override {
command_line->AppendSwitch(switches::kIgnoreCertificateErrors);
}
};
// Tests that a MIXEDSCRIPT type ContentSettingBubbleModel records UMA
// and Rappor metrics when the content is allowed to run.
//
// This test fixture sets up the browser to ignore certificate errors,
// so that a non-matching, non-local hostname can be used for the
// test. This is because Rappor treats local hostnames as slightly
// special, so it's a little nicer to test with a non-local hostname.
IN_PROC_BROWSER_TEST_F(ContentSettingsMixedScriptIgnoreCertErrorsTest,
MainFrameMetrics) {
GURL url(https_server_->GetURL("/content_setting_bubble/mixed_script.html"));
// Rappor treats local hostnames a little bit special (e.g. records
// "127.0.0.1" as "localhost"), so use a non-local hostname for
// convenience.
host_resolver()->AddRule("*", "127.0.0.1");
GURL::Replacements replace_host;
replace_host.SetHostStr("example.test");
url = url.ReplaceComponents(replace_host);
rappor::TestRapporServiceImpl rappor_service;
EXPECT_EQ(0, rappor_service.GetReportsCount());
base::HistogramTester histograms;
histograms.ExpectTotalCount("ContentSettings.MixedScript", 0);
// Load a page with mixed content and do quick verification by looking at
// the title string.
ui_test_utils::NavigateToURL(browser(), url);
EXPECT_TRUE(GetActiveTabSpecificContentSettings()->IsContentBlocked(
CONTENT_SETTINGS_TYPE_MIXEDSCRIPT));
// Emulate link clicking on the mixed script bubble.
std::unique_ptr<ContentSettingBubbleModel> model(
ContentSettingBubbleModel::CreateContentSettingBubbleModel(
browser()->content_setting_bubble_model_delegate(),
browser()->tab_strip_model()->GetActiveWebContents(),
browser()->profile(), CONTENT_SETTINGS_TYPE_MIXEDSCRIPT));
model->SetRapporServiceImplForTesting(&rappor_service);
model->OnCustomLinkClicked();
// Wait for reload
content::TestNavigationObserver observer(
browser()->tab_strip_model()->GetActiveWebContents());
observer.Wait();
EXPECT_FALSE(GetActiveTabSpecificContentSettings()->IsContentBlocked(
CONTENT_SETTINGS_TYPE_MIXEDSCRIPT));
// Check that the UMA and Rappor counts are as expected.
histograms.ExpectBucketCount(
"ContentSettings.MixedScript",
content_settings::MIXED_SCRIPT_ACTION_CLICKED_ALLOW, 1);
EXPECT_EQ(1, rappor_service.GetReportsCount());
std::string sample;
rappor::RapporType type;
EXPECT_TRUE(rappor_service.GetRecordedSampleForMetric(
"ContentSettings.MixedScript.UserClickedAllow", &sample, &type));
EXPECT_EQ(url.host(), sample);
EXPECT_EQ(rappor::ETLD_PLUS_ONE_RAPPOR_TYPE, type);
}
// Tests that a MIXEDSCRIPT type ContentSettingBubbleModel does not work
// for an iframe (mixed script in iframes is never allowed and the mixed
// content shield isn't shown for it).
IN_PROC_BROWSER_TEST_F(ContentSettingBubbleModelMixedScriptTest, Iframe) {
GURL url(https_server_->GetURL(
"/content_setting_bubble/mixed_script_in_iframe.html"));
ui_test_utils::NavigateToURL(browser(), url);
// Blink does not ask the browser to handle mixed content in the case
// of active subresources in an iframe, so the content type should not
// be marked as blocked.
EXPECT_FALSE(GetActiveTabSpecificContentSettings()->IsContentBlocked(
CONTENT_SETTINGS_TYPE_MIXEDSCRIPT));
}
class ContentSettingBubbleModelMediaStreamTest : public InProcessBrowserTest {
public:
void ManageMediaStreamSettings(
TabSpecificContentSettings::MicrophoneCameraState state) {
// Open a tab for which we will invoke the media bubble.
GURL url(ui_test_utils::GetTestUrl(
base::FilePath().AppendASCII("content_setting_bubble"),
base::FilePath().AppendASCII("mixed_script.html")));
ui_test_utils::NavigateToURL(browser(), url);
content::WebContents* original_tab = GetActiveTab();
// Create a bubble with the given camera and microphone access state.
TabSpecificContentSettings::FromWebContents(original_tab)->
OnMediaStreamPermissionSet(
original_tab->GetLastCommittedURL(),
state, std::string(), std::string(), std::string(), std::string());
std::unique_ptr<ContentSettingBubbleModel> bubble(
new ContentSettingMediaStreamBubbleModel(
browser()->content_setting_bubble_model_delegate(), original_tab,
browser()->profile()));
// Click the management link, which opens in a new tab or window.
// Wait until it loads.
bubble->OnManageLinkClicked();
ASSERT_NE(GetActiveTab(), original_tab);
content::TestNavigationObserver observer(GetActiveTab());
observer.Wait();
}
content::WebContents* GetActiveTab() {
// First, we need to find the active browser window. It should be at
// the same desktop as the browser in which we invoked the bubble.
Browser* active_browser = chrome::FindLastActive();
return active_browser->tab_strip_model()->GetActiveWebContents();
}
};
// Tests that clicking on the management link in the media bubble opens
// the correct section of the settings UI.
// This test sometimes leaks memory, detected by linux_chromium_asan_rel_ng. See
// http://crbug/668693 for more info.
IN_PROC_BROWSER_TEST_F(ContentSettingBubbleModelMediaStreamTest,
DISABLED_ManageLink) {
// For each of the three options, we click the management link and check if
// the active tab loads the correct internal url.
// The microphone bubble links to microphone exceptions.
ManageMediaStreamSettings(TabSpecificContentSettings::MICROPHONE_ACCESSED);
EXPECT_EQ(GURL("chrome://settings/contentExceptions#media-stream-mic"),
GetActiveTab()->GetLastCommittedURL());
// The bubble for both media devices links to the the first section of the
// default media content settings, which is the microphone section.
ManageMediaStreamSettings(TabSpecificContentSettings::MICROPHONE_ACCESSED |
TabSpecificContentSettings::CAMERA_ACCESSED);
EXPECT_EQ(GURL("chrome://settings/content#media-stream-mic"),
GetActiveTab()->GetLastCommittedURL());
// In ChromeOS, we do not sanitize chrome://settings-frame to
// chrome://settings for same-document navigations. See crbug.com/416157. For
// this reason, order the tests so no same-document navigation occurs.
// The camera bubble links to camera exceptions.
ManageMediaStreamSettings(TabSpecificContentSettings::CAMERA_ACCESSED);
EXPECT_EQ(GURL("chrome://settings/contentExceptions#media-stream-camera"),
GetActiveTab()->GetLastCommittedURL());
}
class ContentSettingBubbleModelPopupTest : public InProcessBrowserTest {
protected:
void SetUpInProcessBrowserTestFixture() override {
https_server_.reset(
new net::EmbeddedTestServer(net::EmbeddedTestServer::TYPE_HTTPS));
https_server_->ServeFilesFromSourceDirectory(base::FilePath(kDocRoot));
ASSERT_TRUE(https_server_->Start());
}
std::unique_ptr<net::EmbeddedTestServer> https_server_;
};
// Tests that each popup action is counted in the right bucket.
IN_PROC_BROWSER_TEST_F(ContentSettingBubbleModelPopupTest,
PopupsActionsCount){
GURL url(https_server_->GetURL("/popup_blocker/popup-many.html"));
base::HistogramTester histograms;
histograms.ExpectTotalCount("ContentSettings.Popups", 0);
ui_test_utils::NavigateToURL(browser(), url);
histograms.ExpectBucketCount(
"ContentSettings.Popups",
content_settings::POPUPS_ACTION_DISPLAYED_BLOCKED_ICON_IN_OMNIBOX, 1);
// Creates the ContentSettingPopupBubbleModel in order to emulate clicks.
std::unique_ptr<ContentSettingBubbleModel> model(
ContentSettingBubbleModel::CreateContentSettingBubbleModel(
browser()->content_setting_bubble_model_delegate(),
browser()->tab_strip_model()->GetActiveWebContents(),
browser()->profile(), CONTENT_SETTINGS_TYPE_POPUPS));
histograms.ExpectBucketCount(
"ContentSettings.Popups",
content_settings::POPUPS_ACTION_DISPLAYED_BUBBLE, 1);
model->OnListItemClicked(0);
histograms.ExpectBucketCount(
"ContentSettings.Popups",
content_settings::POPUPS_ACTION_CLICKED_LIST_ITEM_CLICKED, 1);
model->OnManageLinkClicked();
histograms.ExpectBucketCount(
"ContentSettings.Popups",
content_settings::POPUPS_ACTION_CLICKED_MANAGE_POPUPS_BLOCKING, 1);
model->OnRadioClicked(model->kAllowButtonIndex);
delete model.release();
histograms.ExpectBucketCount(
"ContentSettings.Popups",
content_settings::POPUPS_ACTION_SELECTED_ALWAYS_ALLOW_POPUPS_FROM, 1);
histograms.ExpectTotalCount("ContentSettings.Popups", 5);
}
|