Index: chrome/browser/safe_browsing/client_side_detection_service_unittest.cc |
diff --git a/chrome/browser/safe_browsing/client_side_detection_service_unittest.cc b/chrome/browser/safe_browsing/client_side_detection_service_unittest.cc |
index b5f64d5eb348415588d83fa4d98107cf7127c53d..5762847a7e723f4979e429045ce81d91a54b4b84 100644 |
--- a/chrome/browser/safe_browsing/client_side_detection_service_unittest.cc |
+++ b/chrome/browser/safe_browsing/client_side_detection_service_unittest.cc |
@@ -472,25 +472,22 @@ TEST_F(ClientSideDetectionServiceTest, SendClientReportMalwareRequest) { |
net::URLRequestStatus::FAILED); |
EXPECT_FALSE(SendClientReportMalwareRequest(url)); |
- // server blacklist decision is false, and response is succesful |
+ // Server blacklist decision is false, and response is successful |
response.set_blacklist(false); |
SetClientReportMalwareResponse(response.SerializeAsString(), net::HTTP_OK, |
net::URLRequestStatus::SUCCESS); |
EXPECT_FALSE(SendClientReportMalwareRequest(url)); |
- // Check that we have recorded all 4 requests within the correct time range. |
+ // Check that we have recorded all 5 requests within the correct time range. |
base::Time after = base::Time::Now(); |
std::queue<base::Time>& report_times = GetMalwareReportTimes(); |
- EXPECT_EQ(4U, report_times.size()); |
+ EXPECT_EQ(5U, report_times.size()); |
mattm
2014/03/18 02:19:06
changed from 4 to 5 because the limit is not enfor
noé
2014/03/20 17:01:45
The actual limit is checked below. In the host un
mattm
2014/03/20 22:51:40
I only see OverPhishingReportLimit tested in the h
noé
2014/03/21 00:08:38
You're right again. fixed.
|
- // Another normal behavior will fail because of the limit is hit |
- response.set_blacklist(true); |
- SetClientReportMalwareResponse(response.SerializeAsString(), net::HTTP_OK, |
- net::URLRequestStatus::SUCCESS); |
- EXPECT_FALSE(SendClientReportMalwareRequest(url)); |
+ // Check that the malware report limit was reached. |
+ EXPECT_TRUE(csd_service_->OverMalwareReportLimit()); |
report_times = GetMalwareReportTimes(); |
- EXPECT_EQ(4U, report_times.size()); |
+ EXPECT_EQ(5U, report_times.size()); |
while (!report_times.empty()) { |
base::Time time = report_times.back(); |
report_times.pop(); |