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

Unified Diff: components/safe_browsing_db/v4_get_hash_protocol_manager_unittest.cc

Issue 2458743003: Failure to parse full hash metadata shouldn't discard the response (Closed)
Patch Set: Nit: Remove extra return Created 4 years, 2 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: components/safe_browsing_db/v4_get_hash_protocol_manager_unittest.cc
diff --git a/components/safe_browsing_db/v4_get_hash_protocol_manager_unittest.cc b/components/safe_browsing_db/v4_get_hash_protocol_manager_unittest.cc
index fa37e0622f3fbde269a53be88d5cca507093b831..59d89389af4d26204f25c04f739051013f920f98 100644
--- a/components/safe_browsing_db/v4_get_hash_protocol_manager_unittest.cc
+++ b/components/safe_browsing_db/v4_get_hash_protocol_manager_unittest.cc
@@ -470,9 +470,16 @@ TEST_F(V4GetHashProtocolManagerTest, TestParseHashThreatPatternType) {
invalid_res.SerializeToString(&invalid_data);
std::vector<FullHashInfo> full_hash_infos;
base::Time cache_expire;
- EXPECT_FALSE(
+ EXPECT_TRUE(
pm->ParseHashResponse(invalid_data, &full_hash_infos, &cache_expire));
- EXPECT_EQ(0ul, full_hash_infos.size());
+
+ ASSERT_EQ(1ul, full_hash_infos.size());
Nathan Parker 2016/10/27 22:06:49 nit: Add a comment: The PHA threat still remains s
vakh (use Gerrit instead) 2016/10/27 22:40:05 Done.
+ const auto& fhi = full_hash_infos[0];
+ EXPECT_EQ(full_hash, fhi.full_hash);
+ EXPECT_EQ(
+ ListIdentifier(CHROME_PLATFORM, URL, POTENTIALLY_HARMFUL_APPLICATION),
+ fhi.list_id);
+ EXPECT_EQ(ThreatPatternType::NONE, fhi.metadata.threat_pattern_type);
}
}
@@ -484,13 +491,14 @@ TEST_F(V4GetHashProtocolManagerTest,
base::Time now = base::Time::UnixEpoch();
SetTestClock(now, pm.get());
+ FullHash full_hash("Not to fret.");
FindFullHashesResponse res;
res.mutable_negative_cache_duration()->set_seconds(600);
ThreatMatch* m = res.add_matches();
m->set_threat_type(API_ABUSE);
m->set_platform_type(CHROME_PLATFORM);
m->set_threat_entry_type(URL);
- m->mutable_threat()->set_hash(FullHash("Not to fret."));
+ m->mutable_threat()->set_hash(full_hash);
ThreatEntryMetadata::MetadataEntry* e =
m->mutable_threat_entry_metadata()->add_entries();
e->set_key("notpermission");
@@ -502,11 +510,14 @@ TEST_F(V4GetHashProtocolManagerTest,
std::vector<FullHashInfo> full_hash_infos;
base::Time cache_expire;
- EXPECT_FALSE(
- pm->ParseHashResponse(res_data, &full_hash_infos, &cache_expire));
+ EXPECT_TRUE(pm->ParseHashResponse(res_data, &full_hash_infos, &cache_expire));
EXPECT_EQ(now + base::TimeDelta::FromSeconds(600), cache_expire);
- EXPECT_EQ(0ul, full_hash_infos.size());
+ ASSERT_EQ(1ul, full_hash_infos.size());
+ const auto& fhi = full_hash_infos[0];
+ EXPECT_EQ(full_hash, fhi.full_hash);
+ EXPECT_EQ(GetChromeUrlApiId(), fhi.list_id);
+ EXPECT_TRUE(fhi.metadata.api_permissions.empty());
}
TEST_F(V4GetHashProtocolManagerTest,

Powered by Google App Engine
This is Rietveld 408576698