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

Side by Side Diff: chrome/browser/ssl/ssl_browser_tests.cc

Issue 1035023002: Adding the Finch code for the certificate error reporter experiment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stark's comments Created 5 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/bind.h" 5 #include "base/bind.h"
6 #include "base/bind_helpers.h" 6 #include "base/bind_helpers.h"
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/metrics/field_trial.h"
9 #include "base/prefs/pref_service.h" 10 #include "base/prefs/pref_service.h"
10 #include "base/strings/string_util.h" 11 #include "base/strings/string_util.h"
11 #include "base/strings/stringprintf.h" 12 #include "base/strings/stringprintf.h"
12 #include "base/strings/utf_string_conversions.h" 13 #include "base/strings/utf_string_conversions.h"
13 #include "base/time/time.h" 14 #include "base/time/time.h"
14 #include "chrome/app/chrome_command_ids.h" 15 #include "chrome/app/chrome_command_ids.h"
15 #include "chrome/browser/browser_process.h" 16 #include "chrome/browser/browser_process.h"
16 #include "chrome/browser/chrome_notification_types.h" 17 #include "chrome/browser/chrome_notification_types.h"
17 #include "chrome/browser/interstitials/security_interstitial_page_test_utils.h" 18 #include "chrome/browser/interstitials/security_interstitial_page_test_utils.h"
18 #include "chrome/browser/net/certificate_error_reporter.h" 19 #include "chrome/browser/net/certificate_error_reporter.h"
19 #include "chrome/browser/profiles/profile.h" 20 #include "chrome/browser/profiles/profile.h"
20 #include "chrome/browser/safe_browsing/ping_manager.h" 21 #include "chrome/browser/safe_browsing/ping_manager.h"
21 #include "chrome/browser/safe_browsing/safe_browsing_service.h" 22 #include "chrome/browser/safe_browsing/safe_browsing_service.h"
22 #include "chrome/browser/ssl/ssl_blocking_page.h" 23 #include "chrome/browser/ssl/ssl_blocking_page.h"
23 #include "chrome/browser/ui/browser.h" 24 #include "chrome/browser/ui/browser.h"
24 #include "chrome/browser/ui/browser_commands.h" 25 #include "chrome/browser/ui/browser_commands.h"
25 #include "chrome/browser/ui/browser_navigator.h" 26 #include "chrome/browser/ui/browser_navigator.h"
26 #include "chrome/browser/ui/browser_tabstrip.h" 27 #include "chrome/browser/ui/browser_tabstrip.h"
27 #include "chrome/browser/ui/tabs/tab_strip_model.h" 28 #include "chrome/browser/ui/tabs/tab_strip_model.h"
28 #include "chrome/common/chrome_paths.h" 29 #include "chrome/common/chrome_paths.h"
29 #include "chrome/common/chrome_switches.h" 30 #include "chrome/common/chrome_switches.h"
30 #include "chrome/common/pref_names.h" 31 #include "chrome/common/pref_names.h"
31 #include "chrome/test/base/in_process_browser_test.h" 32 #include "chrome/test/base/in_process_browser_test.h"
32 #include "chrome/test/base/ui_test_utils.h" 33 #include "chrome/test/base/ui_test_utils.h"
33 #include "components/content_settings/core/browser/host_content_settings_map.h" 34 #include "components/content_settings/core/browser/host_content_settings_map.h"
35 #include "components/variations/variations_associated_data.h"
34 #include "components/web_modal/web_contents_modal_dialog_manager.h" 36 #include "components/web_modal/web_contents_modal_dialog_manager.h"
35 #include "content/public/browser/browser_context.h" 37 #include "content/public/browser/browser_context.h"
36 #include "content/public/browser/interstitial_page.h" 38 #include "content/public/browser/interstitial_page.h"
37 #include "content/public/browser/navigation_controller.h" 39 #include "content/public/browser/navigation_controller.h"
38 #include "content/public/browser/navigation_entry.h" 40 #include "content/public/browser/navigation_entry.h"
39 #include "content/public/browser/notification_service.h" 41 #include "content/public/browser/notification_service.h"
40 #include "content/public/browser/render_frame_host.h" 42 #include "content/public/browser/render_frame_host.h"
41 #include "content/public/browser/render_view_host.h" 43 #include "content/public/browser/render_view_host.h"
42 #include "content/public/browser/render_widget_host_view.h" 44 #include "content/public/browser/render_widget_host_view.h"
43 #include "content/public/browser/web_contents.h" 45 #include "content/public/browser/web_contents.h"
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 513
512 void SetUpCommandLine(base::CommandLine* command_line) override { 514 void SetUpCommandLine(base::CommandLine* command_line) override {
513 // Browser will ignore certificate errors on localhost. 515 // Browser will ignore certificate errors on localhost.
514 command_line->AppendSwitch(switches::kAllowInsecureLocalhost); 516 command_line->AppendSwitch(switches::kAllowInsecureLocalhost);
515 } 517 }
516 }; 518 };
517 519
518 class SSLUITestWithExtendedReporting : public SSLUITest { 520 class SSLUITestWithExtendedReporting : public SSLUITest {
519 public: 521 public:
520 SSLUITestWithExtendedReporting() : SSLUITest() {} 522 SSLUITestWithExtendedReporting() : SSLUITest() {}
521
522 void SetUpCommandLine(base::CommandLine* command_line) override {
523 // Enable a checkbox on SSL interstitials that allows users to opt
524 // in to reporting invalid certificate chains.
525 command_line->AppendSwitch(switches::kEnableInvalidCertCollection);
526 }
527 }; 523 };
528 524
529 // Visits a regular page over http. 525 // Visits a regular page over http.
530 IN_PROC_BROWSER_TEST_F(SSLUITest, TestHTTP) { 526 IN_PROC_BROWSER_TEST_F(SSLUITest, TestHTTP) {
531 ASSERT_TRUE(test_server()->Start()); 527 ASSERT_TRUE(test_server()->Start());
532 528
533 ui_test_utils::NavigateToURL(browser(), 529 ui_test_utils::NavigateToURL(browser(),
534 test_server()->GetURL("files/ssl/google.html")); 530 test_server()->GetURL("files/ssl/google.html"));
535 531
536 CheckUnauthenticatedState( 532 CheckUnauthenticatedState(
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
1120 https_server_.GetURL(replacement_path)); 1116 https_server_.GetURL(replacement_path));
1121 1117
1122 CheckAuthenticatedState(browser()->tab_strip_model()->GetActiveWebContents(), 1118 CheckAuthenticatedState(browser()->tab_strip_model()->GetActiveWebContents(),
1123 AuthState::DISPLAYED_INSECURE_CONTENT); 1119 AuthState::DISPLAYED_INSECURE_CONTENT);
1124 } 1120 }
1125 1121
1126 // Test that when the checkbox is checked and the user proceeds through 1122 // Test that when the checkbox is checked and the user proceeds through
1127 // the interstitial, the FraudulentCertificateReporter sees a request to 1123 // the interstitial, the FraudulentCertificateReporter sees a request to
1128 // send a report. 1124 // send a report.
1129 IN_PROC_BROWSER_TEST_F(SSLUITestWithExtendedReporting, 1125 IN_PROC_BROWSER_TEST_F(SSLUITestWithExtendedReporting,
1130 TestBrokenHTTPSProceedWithReporting) { 1126 TestBrokenHTTPSProceedWithShowCheckboxAndReporting) {
1127 base::FieldTrialList::CreateFieldTrial("ReportCertificateErrors",
1128 "ShowAndPossiblySend");
1129 std::map<std::string, std::string> params;
1130 params["possibly_send"] = "1.0";
1131 variations::AssociateVariationParams("ReportCertificateErrors",
1132 "ShowAndPossiblySend", params);
1131 TestBrokenHTTPSReporting(CertificateReporting::EXTENDED_REPORTING_OPT_IN, 1133 TestBrokenHTTPSReporting(CertificateReporting::EXTENDED_REPORTING_OPT_IN,
1132 CertificateReporting::SSL_INTERSTITIAL_PROCEED, 1134 CertificateReporting::SSL_INTERSTITIAL_PROCEED,
1133 CertificateReporting::CERT_REPORT_EXPECTED, 1135 CertificateReporting::CERT_REPORT_EXPECTED,
1134 browser()); 1136 browser());
1135 } 1137 }
1136 1138
1137 // Test that when the checkbox is checked and the user goes back (does 1139 // Test that when the checkbox is checked and the user goes back (does
1138 // not proceed through the interstitial), the 1140 // not proceed through the interstitial), the
1139 // FraudulentCertificateReporter sees a request to send a report. 1141 // FraudulentCertificateReporter sees a request to send a report.
1140 IN_PROC_BROWSER_TEST_F(SSLUITestWithExtendedReporting, 1142 IN_PROC_BROWSER_TEST_F(SSLUITestWithExtendedReporting,
1141 TestBrokenHTTPSGoBackWithReporting) { 1143 TestBrokenHTTPSGoBackWithShowCheckboxAndReporting) {
1144 base::FieldTrialList::CreateFieldTrial("ReportCertificateErrors",
1145 "ShowAndPossiblySend");
1146 std::map<std::string, std::string> params;
1147 params["possibly_send"] = "1.0";
1148 variations::AssociateVariationParams("ReportCertificateErrors",
1149 "ShowAndPossiblySend", params);
1142 TestBrokenHTTPSReporting( 1150 TestBrokenHTTPSReporting(
1143 CertificateReporting::EXTENDED_REPORTING_OPT_IN, 1151 CertificateReporting::EXTENDED_REPORTING_OPT_IN,
1144 CertificateReporting::SSL_INTERSTITIAL_DO_NOT_PROCEED, 1152 CertificateReporting::SSL_INTERSTITIAL_DO_NOT_PROCEED,
1145 CertificateReporting::CERT_REPORT_EXPECTED, browser()); 1153 CertificateReporting::CERT_REPORT_EXPECTED, browser());
1146 } 1154 }
1147 1155
1148 // Test that when the checkbox is not checked and the user proceeds 1156 // Test that when the checkbox is not checked and the user proceeds
1149 // through the interstitial, the FraudulentCertificateReporter does not 1157 // through the interstitial, the FraudulentCertificateReporter does not
1150 // see a request to send a report. 1158 // see a request to send a report.
1151 IN_PROC_BROWSER_TEST_F(SSLUITestWithExtendedReporting, 1159 IN_PROC_BROWSER_TEST_F(SSLUITestWithExtendedReporting,
1152 TestBrokenHTTPSProceedWithNoReporting) { 1160 TestBrokenHTTPSProceedWithShowCheckboxAndNoReporting) {
1161 base::FieldTrialList::CreateFieldTrial("ReportCertificateErrors",
1162 "ShowAndPossiblySend");
1163 std::map<std::string, std::string> params;
1164 params["possibly_send"] = "-1.0";
estark 2015/04/02 01:19:51 I think this should be -1.0, not 1.0. Same for the
fahl 2015/04/02 17:45:29 Done.
1165 variations::AssociateVariationParams("ReportCertificateErrors",
1166 "ShowAndPossiblySend", params);
1153 TestBrokenHTTPSReporting( 1167 TestBrokenHTTPSReporting(
1154 CertificateReporting::EXTENDED_REPORTING_DO_NOT_OPT_IN, 1168 CertificateReporting::EXTENDED_REPORTING_DO_NOT_OPT_IN,
1155 CertificateReporting::SSL_INTERSTITIAL_PROCEED, 1169 CertificateReporting::SSL_INTERSTITIAL_PROCEED,
1156 CertificateReporting::CERT_REPORT_NOT_EXPECTED, browser()); 1170 CertificateReporting::CERT_REPORT_NOT_EXPECTED, browser());
1157 } 1171 }
1158 1172
1159 // Test that when the checkbox is not checked and the user does not proceed 1173 // Test that when the checkbox is not checked and the user does not proceed
1160 // through the interstitial, the FraudulentCertificateReporter does not 1174 // through the interstitial, the FraudulentCertificateReporter does not
1161 // see a request to send a report. 1175 // see a request to send a report.
1162 IN_PROC_BROWSER_TEST_F(SSLUITestWithExtendedReporting, 1176 IN_PROC_BROWSER_TEST_F(SSLUITestWithExtendedReporting,
1163 TestBrokenHTTPSGoBackWithNoReporting) { 1177 TestBrokenHTTPSGoBackWithShowCheckboxAndNoReporting) {
1178 base::FieldTrialList::CreateFieldTrial("ReportCertificateErrors",
1179 "ShowAndPossiblySend");
1180 std::map<std::string, std::string> params;
1181 params["possibly_send"] = "-1.0";
estark 2015/04/02 01:19:51 should be 1.0 as above
fahl 2015/04/02 17:45:29 Done.
1182 variations::AssociateVariationParams("ReportCertificateErrors",
1183 "ShowAndPossiblySend", params);
1164 TestBrokenHTTPSReporting( 1184 TestBrokenHTTPSReporting(
1165 CertificateReporting::EXTENDED_REPORTING_DO_NOT_OPT_IN, 1185 CertificateReporting::EXTENDED_REPORTING_DO_NOT_OPT_IN,
1166 CertificateReporting::SSL_INTERSTITIAL_DO_NOT_PROCEED, 1186 CertificateReporting::SSL_INTERSTITIAL_DO_NOT_PROCEED,
1167 CertificateReporting::CERT_REPORT_NOT_EXPECTED, browser()); 1187 CertificateReporting::CERT_REPORT_NOT_EXPECTED, browser());
1168 } 1188 }
1169 1189
1190 // Test that when the checkbox is not shown and the user proceeds
1191 // through the interstitial, the FraudulentCertificateReporter does not
1192 // see a request to send a report.
1193 IN_PROC_BROWSER_TEST_F(
1194 SSLUITestWithExtendedReporting,
1195 TestBrokenHTTPSProceedWithNotShowCheckboxAndNoReporting) {
1196 base::FieldTrialList::CreateFieldTrial("ReportCertificateErrors",
1197 "DontShowAndDontSend");
1198 TestBrokenHTTPSReporting(
1199 CertificateReporting::EXTENDED_REPORTING_DO_NOT_OPT_IN,
estark 2015/04/02 01:19:51 I think this should be OPT_IN. i.e. we want to tes
fahl 2015/04/02 17:45:28 Done.
1200 CertificateReporting::SSL_INTERSTITIAL_PROCEED,
1201 CertificateReporting::CERT_REPORT_NOT_EXPECTED, browser());
1202 }
1203
1170 // Test that when the command-line switch for reporting invalid cert 1204 // Test that when the command-line switch for reporting invalid cert
1171 // chains is not enabled, reports don't get sent, even if the opt-in 1205 // chains is not enabled, reports don't get sent, even if the opt-in
1172 // preference is set. (i.e. if a user enables invalid cert collection in 1206 // preference is set. (i.e. if a user enables invalid cert collection in
1173 // chrome://flags, checks the box on an interstitial, and then disables 1207 // chrome://flags, checks the box on an interstitial, and then disables
1174 // the flag in chrome://flags, reports shouldn't be sent on the next 1208 // the flag in chrome://flags, reports shouldn't be sent on the next
1175 // interstitial). 1209 // interstitial).
1176 IN_PROC_BROWSER_TEST_F(SSLUITest, TestBrokenHTTPSNoReportingWithoutSwitch) { 1210 IN_PROC_BROWSER_TEST_F(SSLUITest, TestBrokenHTTPSNoReportingWithoutSwitch) {
1177 TestBrokenHTTPSReporting(CertificateReporting::EXTENDED_REPORTING_OPT_IN, 1211 TestBrokenHTTPSReporting(CertificateReporting::EXTENDED_REPORTING_OPT_IN,
estark 2015/04/02 01:19:51 Should this test be deleted? It doesn't seem to ma
fahl 2015/04/02 02:01:22 Acknowledged.
fahl 2015/04/02 17:45:28 Done.
1178 CertificateReporting::SSL_INTERSTITIAL_PROCEED, 1212 CertificateReporting::SSL_INTERSTITIAL_PROCEED,
1179 CertificateReporting::CERT_REPORT_NOT_EXPECTED, 1213 CertificateReporting::CERT_REPORT_NOT_EXPECTED,
1180 browser()); 1214 browser());
1181 } 1215 }
1182 1216
1183 // Test that reports don't get sent in incognito mode even if the opt-in 1217 // Test that reports don't get sent in incognito mode even if the opt-in
1184 // preference is set and the command-line switch is enabled. 1218 // preference is set and the command-line switch is enabled.
1185 IN_PROC_BROWSER_TEST_F(SSLUITestWithExtendedReporting, 1219 IN_PROC_BROWSER_TEST_F(SSLUITestWithExtendedReporting,
1186 TestBrokenHTTPSNoReportingInIncognito) { 1220 TestBrokenHTTPSNoReportingInIncognito) {
1187 TestBrokenHTTPSReporting(CertificateReporting::EXTENDED_REPORTING_OPT_IN, 1221 TestBrokenHTTPSReporting(CertificateReporting::EXTENDED_REPORTING_OPT_IN,
estark 2015/04/02 03:22:23 this one also needs a finch param (I think it shou
fahl 2015/04/02 17:45:29 Done.
1188 CertificateReporting::SSL_INTERSTITIAL_PROCEED, 1222 CertificateReporting::SSL_INTERSTITIAL_PROCEED,
1189 CertificateReporting::CERT_REPORT_NOT_EXPECTED, 1223 CertificateReporting::CERT_REPORT_NOT_EXPECTED,
1190 CreateIncognitoBrowser()); 1224 CreateIncognitoBrowser());
1191 } 1225 }
1192 1226
1193 // Visits a page that runs insecure content and tries to suppress the insecure 1227 // Visits a page that runs insecure content and tries to suppress the insecure
1194 // content warnings by randomizing location.hash. 1228 // content warnings by randomizing location.hash.
1195 // Based on http://crbug.com/8706 1229 // Based on http://crbug.com/8706
1196 IN_PROC_BROWSER_TEST_F(SSLUITest, 1230 IN_PROC_BROWSER_TEST_F(SSLUITest,
1197 TestRunsInsecuredContentRandomizeHash) { 1231 TestRunsInsecuredContentRandomizeHash) {
(...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after
2152 2186
2153 // Visit a page over https that contains a frame with a redirect. 2187 // Visit a page over https that contains a frame with a redirect.
2154 2188
2155 // XMLHttpRequest insecure content in synchronous mode. 2189 // XMLHttpRequest insecure content in synchronous mode.
2156 2190
2157 // XMLHttpRequest insecure content in asynchronous mode. 2191 // XMLHttpRequest insecure content in asynchronous mode.
2158 2192
2159 // XMLHttpRequest over bad ssl in synchronous mode. 2193 // XMLHttpRequest over bad ssl in synchronous mode.
2160 2194
2161 // XMLHttpRequest over OK ssl in synchronous mode. 2195 // XMLHttpRequest over OK ssl in synchronous mode.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698