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

Unified Diff: components/ntp_snippets/offline_pages/recent_tab_suggestions_provider_unittest.cc

Issue 2595873002: [NTP::RecentTabs] Do not fetch all pages when not a recent tab is added. (Closed)
Patch Set: Created 4 years 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/ntp_snippets/offline_pages/recent_tab_suggestions_provider_unittest.cc
diff --git a/components/ntp_snippets/offline_pages/recent_tab_suggestions_provider_unittest.cc b/components/ntp_snippets/offline_pages/recent_tab_suggestions_provider_unittest.cc
index ee2e20c1409e8de52ac8ba96e0ea0c6250450ffc..bdddf10ec10cb9d99db06bd527e8617b189224dc 100644
--- a/components/ntp_snippets/offline_pages/recent_tab_suggestions_provider_unittest.cc
+++ b/components/ntp_snippets/offline_pages/recent_tab_suggestions_provider_unittest.cc
@@ -182,11 +182,14 @@ TEST_F(RecentTabSuggestionsProviderTest, ShouldDeliverCorrectCategoryInfo) {
.has_view_all_action());
}
+// TODO(vitaliii): Break this test into multiple tests. Currently if it fails,
+// it takes long time to find which part of it actually fails.
TEST_F(RecentTabSuggestionsProviderTest, ShouldDismiss) {
- EXPECT_CALL(*observer(), OnNewSuggestions(_, _, _)).Times(4);
- auto recent_tabs_list = CreateDummyRecentTabs({1, 2, 3, 4});
- for (OfflinePageItem& recent_tab : recent_tabs_list)
+ EXPECT_CALL(*observer(), OnNewSuggestions(_, _, _)).Times(3);
+ auto recent_tabs_list = CreateDummyRecentTabs({1, 2, 3});
+ for (OfflinePageItem& recent_tab : recent_tabs_list) {
AddOfflinePageToModel(recent_tab);
+ }
// Dismiss 2 and 3.
EXPECT_CALL(*observer(), OnNewSuggestions(_, _, _)).Times(0);
@@ -197,15 +200,13 @@ TEST_F(RecentTabSuggestionsProviderTest, ShouldDismiss) {
// They should disappear from the reported suggestions.
EXPECT_CALL(
*observer(),
- OnNewSuggestions(_, recent_tabs_category(),
- UnorderedElementsAre(
- Property(&ContentSuggestion::url,
- GURL("http://dummy.com/1")),
- Property(&ContentSuggestion::url,
- GURL("http://dummy.com/4")))));
+ OnNewSuggestions(
+ _, recent_tabs_category(),
+ UnorderedElementsAre(
+ Property(&ContentSuggestion::url, GURL("http://dummy.com/1")),
+ Property(&ContentSuggestion::url, GURL("http://dummy.com/4")))));
- AddOfflinePageToModel(ntp_snippets::test::CreateDummyOfflinePageItem(
- 4, offline_pages::kDefaultNamespace));
+ AddOfflinePageToModel(CreateDummyRecentTab(4));
Mock::VerifyAndClearExpectations(observer());
// And appear in the dismissed suggestions.
@@ -232,9 +233,8 @@ TEST_F(RecentTabSuggestionsProviderTest, ShouldDismiss) {
// And appear in the reported suggestions for the category again.
EXPECT_CALL(*observer(),
- OnNewSuggestions(_, recent_tabs_category(), SizeIs(4)));
- AddOfflinePageToModel(ntp_snippets::test::CreateDummyOfflinePageItem(
- 5, offline_pages::kDefaultNamespace));
+ OnNewSuggestions(_, recent_tabs_category(), SizeIs(5)));
+ AddOfflinePageToModel(CreateDummyRecentTab(5));
Mock::VerifyAndClearExpectations(observer());
}

Powered by Google App Engine
This is Rietveld 408576698