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 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/safe_browsing/content/browser/triggers/suspicious_site_trigger.h"
#include <string>
#include "base/memory/scoped_refptr.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/test/test_simple_task_runner.h"
#include "build/build_config.h"
#include "components/prefs/testing_pref_service.h"
#include "components/safe_browsing/content/browser/triggers/mock_trigger_manager.h"
#include "components/safe_browsing/core/common/safe_browsing_prefs.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/navigation_simulator.h"
#include "content/public/test/test_renderer_host.h"
#include "testing/gtest/include/gtest/gtest.h"
using content::NavigationSimulator;
using content::RenderFrameHost;
using content::RenderFrameHostTester;
using testing::_;
using testing::DoAll;
using testing::Return;
using testing::SetArgPointee;
namespace safe_browsing {
namespace {
const char kSuspiciousUrl[] = "https://suspicious.com/";
const char kCleanUrl[] = "https://foo.com/";
const char kCleanUrl2[] = "https://bar.com/";
// A matcher for the VisibleURLChangeMidLoad_Suspicious test.
MATCHER_P(ResourceHasUrl, gurl, "") {
return arg.url == gurl;
}
} // namespace
class SuspiciousSiteTriggerTest : public content::RenderViewHostTestHarness {
public:
SuspiciousSiteTriggerTest() = default;
~SuspiciousSiteTriggerTest() override = default;
void SetUp() override {
content::RenderViewHostTestHarness::SetUp();
// Enable any prefs required for the trigger to run.
safe_browsing::RegisterProfilePrefs(prefs_.registry());
prefs_.SetBoolean(prefs::kSafeBrowsingExtendedReportingOptInAllowed, true);
prefs_.SetBoolean(prefs::kSafeBrowsingScoutReportingEnabled, true);
}
void CreateTrigger(bool monitor_mode) {
safe_browsing::SuspiciousSiteTrigger::CreateForWebContents(
web_contents(), &trigger_manager_, &prefs_, nullptr, nullptr, nullptr,
monitor_mode);
safe_browsing::SuspiciousSiteTrigger* trigger =
safe_browsing::SuspiciousSiteTrigger::FromWebContents(web_contents());
// Give the trigger a test task runner that we can synchronize on.
trigger->SetTaskRunnerForTest(task_runner_);
}
// Returns the final RenderFrameHost after navigation commits.
RenderFrameHost* NavigateFrame(const std::string& url,
RenderFrameHost* frame) {
GURL gurl(url);
auto navigation_simulator =
NavigationSimulator::CreateRendererInitiated(gurl, frame);
navigation_simulator->SetKeepLoading(true);
navigation_simulator->Commit();
RenderFrameHost* final_frame_host =
navigation_simulator->GetFinalRenderFrameHost();
return final_frame_host;
}
// Returns the final RenderFrameHost after navigation commits.
RenderFrameHost* NavigateMainFrame(const std::string& url) {
return NavigateFrame(url, web_contents()->GetPrimaryMainFrame());
}
// Returns the final RenderFrameHost after navigation commits.
RenderFrameHost* CreateAndNavigateSubFrame(const std::string& url,
RenderFrameHost* parent) {
RenderFrameHost* subframe =
RenderFrameHostTester::For(parent)->AppendChild("subframe");
return NavigateFrame(url, subframe);
}
// Changes the visible URL (in the URL bar) without committing a navigation.
void ChangeVisibleURLWithoutNavigation(const std::string& url) {
GURL gurl(url);
auto navigation_simulator =
NavigationSimulator::CreateBrowserInitiated(gurl, web_contents());
navigation_simulator->Start();
}
void StartNewFakeLoad() {
// This fakes a new LoadStart event in the trigger, since the navigation
// simulator doesn't restart the load when we start a new navigation.
safe_browsing::SuspiciousSiteTrigger::FromWebContents(web_contents())
->DidStartLoading();
}
void FinishAllNavigations() {
// Call the trigger's DidStopLoading event handler directly since it is not
// called as part of the navigating individual frames.
safe_browsing::SuspiciousSiteTrigger::FromWebContents(web_contents())
->DidStopLoading();
}
void TriggerSuspiciousSite() {
// Notify the trigger that a suspicious site was detected.
safe_browsing::SuspiciousSiteTrigger::FromWebContents(web_contents())
->SuspiciousSiteDetected();
}
void WaitForTaskRunnerIdle() {
task_runner_->RunUntilIdle();
base::RunLoop().RunUntilIdle();
}
// Checks the trigger event histogram and ensures that |event| happened
// |count| times.
void ExpectEventHistogramCount(const SuspiciousSiteTriggerEvent event,
int count) {
histograms_.ExpectBucketCount(kSuspiciousSiteTriggerEventMetricName,
static_cast<int>(event), count);
}
// Checks the histogram that tracks what state the trigger was in when the
// delay timer fired. Ensures that the trigger was in |state| and occured
// |count| times.
void ExpectDelayStateHistogramCount(
const SuspiciousSiteTrigger::TriggerState state,
int count) {
histograms_.ExpectBucketCount(
kSuspiciousSiteTriggerReportDelayStateTestMetricName,
static_cast<int>(state), count);
}
// Checks the report rejection histogram and makes sure that |count| reports
// were rejected for |reason|.
void ExpectReportRejectionHistogramCount(const TriggerManagerReason reason,
int count) {
histograms_.ExpectBucketCount(
kSuspiciousSiteTriggerReportRejectionTestMetricName,
static_cast<int>(reason), count);
}
// Checks the report rejection histogram and makes sure it was empty,
// indicating no errors occurred.
void ExpectNoReportRejection() {
histograms_.ExpectTotalCount(
kSuspiciousSiteTriggerReportRejectionTestMetricName, 0);
}
MockTriggerManager* get_trigger_manager() { return &trigger_manager_; }
private:
TestingPrefServiceSimple prefs_;
MockTriggerManager trigger_manager_;
base::HistogramTester histograms_;
scoped_refptr<base::TestSimpleTaskRunner> task_runner_ =
base::MakeRefCounted<base::TestSimpleTaskRunner>();
};
TEST_F(SuspiciousSiteTriggerTest, RegularPageNonSuspicious) {
// In a normal case where there are no suspicious URLs on the page, the
// trigger should not fire.
CreateTrigger(/*monitor_mode=*/false);
EXPECT_CALL(*get_trigger_manager(),
StartCollectingThreatDetailsWithReason(_, _, _, _, _, _, _, _))
.Times(0);
EXPECT_CALL(*get_trigger_manager(),
FinishCollectingThreatDetails(_, _, _, _, _, _, _, _))
.Times(0);
RenderFrameHost* main_frame = NavigateMainFrame(kCleanUrl);
CreateAndNavigateSubFrame(kCleanUrl, main_frame);
CreateAndNavigateSubFrame(kCleanUrl, main_frame);
FinishAllNavigations();
// One page load start and finish. No suspicious sites and no reports sent.
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_START, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_FINISH, 1);
ExpectEventHistogramCount(
SuspiciousSiteTriggerEvent::SUSPICIOUS_SITE_DETECTED, 0);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_STARTED, 0);
ExpectNoReportRejection();
}
TEST_F(SuspiciousSiteTriggerTest, SuspiciousHitDuringLoad) {
// When a suspicious site is detected in the middle of a page load, a report
// is created after the page load has finished.
CreateTrigger(/*monitor_mode=*/false);
EXPECT_CALL(*get_trigger_manager(),
StartCollectingThreatDetailsWithReason(_, _, _, _, _, _, _, _))
.Times(1)
.WillOnce(Return(true));
EXPECT_CALL(*get_trigger_manager(),
FinishCollectingThreatDetails(_, _, _, _, _, _, _, _))
.Times(1)
.WillOnce(Return(
MockTriggerManager::FinishCollectingThreatDetailsResult(true, true)));
RenderFrameHost* main_frame = NavigateMainFrame(kCleanUrl);
CreateAndNavigateSubFrame(kSuspiciousUrl, main_frame);
TriggerSuspiciousSite();
CreateAndNavigateSubFrame(kCleanUrl, main_frame);
FinishAllNavigations();
WaitForTaskRunnerIdle();
// One page load start and finish. One suspicious site detected and one
// report started and sent after the page finished loading.
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_START, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_FINISH, 1);
ExpectEventHistogramCount(
SuspiciousSiteTriggerEvent::SUSPICIOUS_SITE_DETECTED, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_STARTED, 1);
// Ensure the delay timer fired and it happened in the REPORT_STARTED state
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_DELAY_TIMER, 1);
ExpectDelayStateHistogramCount(
SuspiciousSiteTrigger::TriggerState::REPORT_STARTED, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_FINISHED, 1);
ExpectNoReportRejection();
}
TEST_F(SuspiciousSiteTriggerTest, SuspiciousHitAfterLoad) {
// When a suspicious site is detected in after a page load, a report is
// created immediately.
CreateTrigger(/*monitor_mode=*/false);
EXPECT_CALL(*get_trigger_manager(),
StartCollectingThreatDetailsWithReason(_, _, _, _, _, _, _, _))
.Times(1)
.WillOnce(Return(true));
EXPECT_CALL(*get_trigger_manager(),
FinishCollectingThreatDetails(_, _, _, _, _, _, _, _))
.Times(1)
.WillOnce(Return(
MockTriggerManager::FinishCollectingThreatDetailsResult(true, true)));
RenderFrameHost* main_frame = NavigateMainFrame(kCleanUrl);
CreateAndNavigateSubFrame(kSuspiciousUrl, main_frame);
CreateAndNavigateSubFrame(kCleanUrl, main_frame);
FinishAllNavigations();
TriggerSuspiciousSite();
WaitForTaskRunnerIdle();
// One page load start and finish. One suspicious site detected and one
// report started and sent.
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_START, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_FINISH, 1);
ExpectEventHistogramCount(
SuspiciousSiteTriggerEvent::SUSPICIOUS_SITE_DETECTED, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_STARTED, 1);
// Ensure the delay timer fired and it happened in the REPORT_STARTED state
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_DELAY_TIMER, 1);
ExpectDelayStateHistogramCount(
SuspiciousSiteTrigger::TriggerState::REPORT_STARTED, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_FINISHED, 1);
ExpectNoReportRejection();
}
TEST_F(SuspiciousSiteTriggerTest, ReportRejectedByTriggerManager) {
// If the trigger manager rejects the report then no report is sent.
CreateTrigger(/*monitor_mode=*/false);
EXPECT_CALL(*get_trigger_manager(),
StartCollectingThreatDetailsWithReason(_, _, _, _, _, _, _, _))
.Times(1)
.WillOnce(
DoAll(SetArgPointee<7>(TriggerManagerReason::DAILY_QUOTA_EXCEEDED),
Return(false)));
EXPECT_CALL(*get_trigger_manager(),
FinishCollectingThreatDetails(_, _, _, _, _, _, _, _))
.Times(0);
RenderFrameHost* main_frame = NavigateMainFrame(kCleanUrl);
CreateAndNavigateSubFrame(kSuspiciousUrl, main_frame);
TriggerSuspiciousSite();
CreateAndNavigateSubFrame(kCleanUrl, main_frame);
FinishAllNavigations();
WaitForTaskRunnerIdle();
// One page load start and finish. One suspicious site detected but no report
// is sent because it's rejected. Error stats should reflect the rejection.
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_START, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_FINISH, 1);
ExpectEventHistogramCount(
SuspiciousSiteTriggerEvent::SUSPICIOUS_SITE_DETECTED, 1);
// Ensure no report was started or finished, and no delay timer fired.
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_STARTED, 0);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_DELAY_TIMER, 0);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_FINISHED, 0);
// Ensure that starting a report failed, and it was rejected for the
// expected reason (quota).
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_START_FAILED, 1);
ExpectReportRejectionHistogramCount(
TriggerManagerReason::DAILY_QUOTA_EXCEEDED, 1);
}
TEST_F(SuspiciousSiteTriggerTest, NewNavigationMidLoad_NotSuspicious) {
// Exercise what happens when a new navigation begins in the middle of a page
// load when no suspicious site is detected.
CreateTrigger(/*monitor_mode=*/false);
EXPECT_CALL(*get_trigger_manager(),
StartCollectingThreatDetailsWithReason(_, _, _, _, _, _, _, _))
.Times(0);
EXPECT_CALL(*get_trigger_manager(),
FinishCollectingThreatDetails(_, _, _, _, _, _, _, _))
.Times(0);
RenderFrameHost* main_frame = NavigateMainFrame(kCleanUrl);
CreateAndNavigateSubFrame(kCleanUrl, main_frame);
CreateAndNavigateSubFrame(kCleanUrl, main_frame);
// Begin a brand new load before the first one is finished.
StartNewFakeLoad();
FinishAllNavigations();
// Two page load start events, but only one finish. No suspicious sites
// detected and no reports sent.
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_START, 2);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_FINISH, 1);
ExpectEventHistogramCount(
SuspiciousSiteTriggerEvent::SUSPICIOUS_SITE_DETECTED, 0);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_STARTED, 0);
ExpectNoReportRejection();
}
TEST_F(SuspiciousSiteTriggerTest, NewNavigationMidLoad_Suspicious) {
// Exercise what happens when a new navigation begins in the middle of a page
// load when a suspicious site was detected. The report of the first site
// must be cancelled because we were waiting for the first load to finish
// before beginning the report.
CreateTrigger(/*monitor_mode=*/false);
EXPECT_CALL(*get_trigger_manager(),
StartCollectingThreatDetailsWithReason(_, _, _, _, _, _, _, _))
.Times(0);
EXPECT_CALL(*get_trigger_manager(),
FinishCollectingThreatDetails(_, _, _, _, _, _, _, _))
.Times(0);
RenderFrameHost* main_frame = NavigateMainFrame(kCleanUrl);
CreateAndNavigateSubFrame(kCleanUrl, main_frame);
// Trigger a suspicious site. We wait for this page load to finish before
// creating the report.
TriggerSuspiciousSite();
CreateAndNavigateSubFrame(kCleanUrl, main_frame);
// Begin a brand new load before the first one is finished. This will cancel
// the report that is queued.
StartNewFakeLoad();
FinishAllNavigations();
// Two page load start events, but only one finish. One suspicious site
// detected but no reports created because the report gets cancelled.
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_START, 2);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_FINISH, 1);
ExpectEventHistogramCount(
SuspiciousSiteTriggerEvent::SUSPICIOUS_SITE_DETECTED, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_STARTED, 0);
ExpectNoReportRejection();
// Ensure that the repot got cancelled by the second load.
ExpectEventHistogramCount(
SuspiciousSiteTriggerEvent::PENDING_REPORT_CANCELLED_BY_LOAD, 1);
}
TEST_F(SuspiciousSiteTriggerTest, MonitorMode_NotSuspicious) {
// Testing the trigger in monitoring mode, it should never send reports.
// In a normal case where there are no suspicious URLs on the page, the
// trigger should not fire.
CreateTrigger(/*monitor_mode=*/true);
EXPECT_CALL(*get_trigger_manager(),
StartCollectingThreatDetailsWithReason(_, _, _, _, _, _, _, _))
.Times(0);
EXPECT_CALL(*get_trigger_manager(),
FinishCollectingThreatDetails(_, _, _, _, _, _, _, _))
.Times(0);
RenderFrameHost* main_frame = NavigateMainFrame(kCleanUrl);
CreateAndNavigateSubFrame(kCleanUrl, main_frame);
CreateAndNavigateSubFrame(kCleanUrl, main_frame);
FinishAllNavigations();
// One page load start and finish. No suspicious sites and no reports sent.
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_START, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_FINISH, 1);
ExpectEventHistogramCount(
SuspiciousSiteTriggerEvent::SUSPICIOUS_SITE_DETECTED, 0);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_STARTED, 0);
ExpectNoReportRejection();
}
TEST_F(SuspiciousSiteTriggerTest, MonitorMode_SuspiciousHitDuringLoad) {
// Testing the trigger in monitoring mode, it should never send reports.
// When a suspicious site is detected in the middle of a page load, a report
// is created after the page load has finished.
CreateTrigger(/*monitor_mode=*/true);
EXPECT_CALL(*get_trigger_manager(),
StartCollectingThreatDetailsWithReason(_, _, _, _, _, _, _, _))
.Times(0);
EXPECT_CALL(*get_trigger_manager(),
FinishCollectingThreatDetails(_, _, _, _, _, _, _, _))
.Times(0);
RenderFrameHost* main_frame = NavigateMainFrame(kCleanUrl);
CreateAndNavigateSubFrame(kSuspiciousUrl, main_frame);
TriggerSuspiciousSite();
CreateAndNavigateSubFrame(kCleanUrl, main_frame);
FinishAllNavigations();
WaitForTaskRunnerIdle();
// One page load start and finish. One suspicious site detected and one
// possible report that gets skipped.
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_START, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_FINISH, 1);
ExpectEventHistogramCount(
SuspiciousSiteTriggerEvent::SUSPICIOUS_SITE_DETECTED, 1);
ExpectEventHistogramCount(
SuspiciousSiteTriggerEvent::REPORT_POSSIBLE_BUT_SKIPPED, 1);
// No reports are started or finished, no delay timer fired.
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_STARTED, 0);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_FINISHED, 0);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_DELAY_TIMER, 0);
ExpectNoReportRejection();
}
TEST_F(SuspiciousSiteTriggerTest, VisibleURLChangeMidLoad_NotSuspicious) {
// Exercise what happens when the visible URL changes during load and no
// suspicious site was detected.
CreateTrigger(/*monitor_mode=*/false);
EXPECT_CALL(*get_trigger_manager(),
StartCollectingThreatDetailsWithReason(_, _, _, _, _, _, _, _))
.Times(0);
EXPECT_CALL(*get_trigger_manager(),
FinishCollectingThreatDetails(_, _, _, _, _, _, _, _))
.Times(0);
NavigateMainFrame(kCleanUrl);
// Change visible URL by starting a new navigation without committing it.
// Sanity check the visible URL changed.
ChangeVisibleURLWithoutNavigation(kCleanUrl2);
GURL expected_clean_url_2(kCleanUrl2);
EXPECT_EQ(expected_clean_url_2, web_contents()->GetVisibleURL());
FinishAllNavigations();
WaitForTaskRunnerIdle();
// One page load start and finish. No suspicious sites and no reports sent.
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_START, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_FINISH, 1);
ExpectEventHistogramCount(
SuspiciousSiteTriggerEvent::SUSPICIOUS_SITE_DETECTED, 0);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_STARTED, 0);
ExpectNoReportRejection();
}
TEST_F(SuspiciousSiteTriggerTest, VisibleURLChangeMidLoad_Suspicious) {
// Exercise what happens when the visible URL changes after a suspicious site
// has already been detected.
CreateTrigger(/*monitor_mode=*/false);
NavigateMainFrame(kSuspiciousUrl);
// The resource eventually sent to the trigger manager should include the
// original (suspicious) URL.
GURL suspicious_url(kSuspiciousUrl);
EXPECT_CALL(*get_trigger_manager(),
StartCollectingThreatDetailsWithReason(
_, _, ResourceHasUrl(suspicious_url), _, _, _, _, _))
.Times(1)
.WillOnce(Return(true));
EXPECT_CALL(*get_trigger_manager(),
FinishCollectingThreatDetails(_, _, _, _, _, _, _, _))
.Times(1)
.WillOnce(Return(
MockTriggerManager::FinishCollectingThreatDetailsResult(true, true)));
// Change visible URL by starting a new navigation without committing it.
// Sanity check the visible URL changed.
ChangeVisibleURLWithoutNavigation(kCleanUrl);
GURL expected_clean_url(kCleanUrl);
EXPECT_EQ(expected_clean_url, web_contents()->GetVisibleURL());
TriggerSuspiciousSite();
FinishAllNavigations();
WaitForTaskRunnerIdle();
// One page load start and finish. One suspicious site detected and one
// report started and sent after the page finished loading.
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_START, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::PAGE_LOAD_FINISH, 1);
ExpectEventHistogramCount(
SuspiciousSiteTriggerEvent::SUSPICIOUS_SITE_DETECTED, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_STARTED, 1);
// Ensure the delay timer fired and it happened in the REPORT_STARTED state
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_DELAY_TIMER, 1);
ExpectDelayStateHistogramCount(
SuspiciousSiteTrigger::TriggerState::REPORT_STARTED, 1);
ExpectEventHistogramCount(SuspiciousSiteTriggerEvent::REPORT_FINISHED, 1);
ExpectNoReportRejection();
}
} // namespace safe_browsing
|