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

Unified Diff: components/subresource_filter/core/browser/subresource_filter_features_unittest.cc

Issue 2272323002: Allow Safe Browsing Saresource Filter to distinguish between different lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix safe_browsing_service_browsertest Created 4 years, 4 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/subresource_filter/core/browser/subresource_filter_features_unittest.cc
diff --git a/components/subresource_filter/core/browser/subresource_filter_features_unittest.cc b/components/subresource_filter/core/browser/subresource_filter_features_unittest.cc
index 6943d96ba31096ce5371167ad16c667e725c4572..51a3d58c827637b3e79ee87131d05ec9d70db3c7 100644
--- a/components/subresource_filter/core/browser/subresource_filter_features_unittest.cc
+++ b/components/subresource_filter/core/browser/subresource_filter_features_unittest.cc
@@ -131,4 +131,56 @@ TEST(SubresourceFilterFeaturesTest, ActivationStateAndScope) {
}
}
+TEST(SubresourceFilterFeaturesTest, ActivationList) {
+ const std::string activation_soc_eng(
+ kActivationListSocialEngineeringAdsInterstitial);
+ const std::string activation_phishing(kActivationListPhishingInterstitial);
+ const std::string socEngPhising = activation_soc_eng + activation_phishing;
+ const std::string socEngCommaPhising =
+ activation_soc_eng + "," + activation_phishing;
+ const std::string phishingCommaSocEng =
+ activation_phishing + "," + activation_soc_eng;
+ const std::string socEngCommaPhisingCommaGarbage =
+ socEngCommaPhising + "," + "Garbage";
+ const struct {
+ bool feature_enabled;
+ const char* activation_list_param;
+ ActivationList expected_activation_list;
+ } kTestCases[] = {
+ {false, "", ActivationList::NONE},
+ {false, "social eng ads intertitial", ActivationList::NONE},
+ {false, "phishing,interstital", ActivationList::NONE},
+ {false, "%$ garbage !%", ActivationList::NONE},
+ {true, "", ActivationList::NONE},
+ {true, "social eng ads intertitial", ActivationList::NONE},
+ {true, "phishing interstital", ActivationList::NONE},
+ {true, "%$ garbage !%", ActivationList::NONE},
+ {true, kActivationListSocialEngineeringAdsInterstitial,
+ ActivationList::SOCIAL_ENG_ADS_INTERSTITIAL},
+ {true, kActivationListPhishingInterstitial,
+ ActivationList::PHISHING_INTERSTITIAL},
+ {true, socEngPhising.c_str(), ActivationList::NONE},
+ {true, socEngCommaPhising.c_str(), ActivationList::PHISHING_INTERSTITIAL},
+ {true, phishingCommaSocEng.c_str(),
+ ActivationList::PHISHING_INTERSTITIAL},
+ {true, socEngCommaPhisingCommaGarbage.c_str(),
+ ActivationList::PHISHING_INTERSTITIAL},
+ {true, "List1, List2", ActivationList::NONE}};
+
+ for (const auto& test_case : kTestCases) {
+ SCOPED_TRACE(::testing::Message("Enabled = ") << test_case.feature_enabled);
+ SCOPED_TRACE(::testing::Message("ActivationListParam = \"")
+ << test_case.activation_list_param << "\"");
+
+ base::FieldTrialList field_trial_list(nullptr /* entropy_provider */);
+ testing::ScopedSubresourceFilterFeatureToggle scoped_feature_toggle(
+ test_case.feature_enabled ? base::FeatureList::OVERRIDE_ENABLE_FEATURE
+ : base::FeatureList::OVERRIDE_USE_DEFAULT,
+ kActivationStateDisabled, kActivationScopeNoSites,
+ test_case.activation_list_param);
+
+ EXPECT_EQ(test_case.expected_activation_list, GetCurrentActivationList());
+ }
+}
+
} // namespace subresource_filter

Powered by Google App Engine
This is Rietveld 408576698