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

Unified Diff: components/subresource_filter/content/browser/content_subresource_filter_driver_factory_unittest.cc

Issue 2682313002: Introduce NavigationSimulator to use in unit tests (Closed)
Patch Set: Fixed issue with OOPIF Created 3 years, 10 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/content/browser/content_subresource_filter_driver_factory_unittest.cc
diff --git a/components/subresource_filter/content/browser/content_subresource_filter_driver_factory_unittest.cc b/components/subresource_filter/content/browser/content_subresource_filter_driver_factory_unittest.cc
index e0312a73b2a8e4a5d3f873cf59b12e1be6f0019f..cc854abe38df0a3b963828a9d69d9654e3605870 100644
--- a/components/subresource_filter/content/browser/content_subresource_filter_driver_factory_unittest.cc
+++ b/components/subresource_filter/content/browser/content_subresource_filter_driver_factory_unittest.cc
@@ -13,11 +13,14 @@
#include "components/subresource_filter/core/browser/subresource_filter_client.h"
#include "components/subresource_filter/core/browser/subresource_filter_features.h"
#include "components/subresource_filter/core/browser/subresource_filter_features_test_support.h"
+#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/browser_side_navigation_policy.h"
#include "content/public/test/mock_render_process_host.h"
+#include "content/public/test/navigation_simulator.h"
#include "content/public/test/test_renderer_host.h"
#include "content/public/test/web_contents_tester.h"
+#include "net/base/net_errors.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
@@ -37,6 +40,7 @@ const char kUrlA[] = "https://example_a.com";
const char kUrlB[] = "https://example_b.com";
const char kUrlC[] = "https://example_c.com";
const char kUrlD[] = "https://example_d.com";
+const char kSubframeName[] = "Child";
// Human readable representation of expected redirect chain match patterns.
// The explanations for the buckets given for the following redirect chain:
@@ -168,7 +172,7 @@ class ContentSubresourceFilterDriverFactoryTest
content::RenderFrameHostTester* rfh_tester =
content::RenderFrameHostTester::For(main_rfh());
rfh_tester->InitializeRenderFrameIfNeeded();
- subframe_rfh_ = rfh_tester->AppendChild("Child");
+ subframe_rfh_ = rfh_tester->AppendChild(kSubframeName);
}
ContentSubresourceFilterDriverFactory* factory() {
@@ -195,19 +199,6 @@ class ContentSubresourceFilterDriverFactoryTest
render_process_host->sink().ClearMessages();
}
- void SimulateNavigationCommit(content::RenderFrameHost* rfh,
- const GURL& url,
- const content::Referrer& referrer,
- const ui::PageTransition transition) {
- // TODO(crbug.com/688393): Once WCO::ReadyToCommitNavigation is invoked
- // consistently for tests in PlzNavigate and non-PlzNavigate, remove this.
- if (!content::IsBrowserSideNavigationEnabled()) {
- factory()->ReadyToCommitNavigationInternal(rfh, url, referrer, transition,
- false /* failed_navigation */);
- }
- content::RenderFrameHostTester::For(rfh)->SimulateNavigationCommit(url);
- }
-
void BlacklistURLWithRedirectsNavigateAndCommit(
const std::vector<bool>& blacklisted_urls,
const std::vector<GURL>& navigation_chain,
@@ -219,10 +210,14 @@ class ContentSubresourceFilterDriverFactoryTest
bool expected_activation) {
base::HistogramTester tester;
EXPECT_CALL(*client(), ToggleNotificationVisibility(false)).Times(1);
- content::RenderFrameHostTester* rfh_tester =
- content::RenderFrameHostTester::For(main_rfh());
- rfh_tester->SimulateNavigationStart(navigation_chain.front());
+ std::unique_ptr<content::NavigationSimulator> navigation_simulator =
+ content::NavigationSimulator::CreateRendererInitiated(
+ navigation_chain.front(), main_rfh());
+ navigation_simulator->SetReferrer(referrer);
+ navigation_simulator->SetTransition(transition);
+ navigation_simulator->Start();
+
if (blacklisted_urls.front()) {
factory()->OnMainResourceMatchedSafeBrowsingBlacklist(
navigation_chain.front(), navigation_chain, threat_type,
@@ -236,13 +231,17 @@ class ContentSubresourceFilterDriverFactoryTest
factory()->OnMainResourceMatchedSafeBrowsingBlacklist(
url, navigation_chain, threat_type, threat_type_metadata);
}
- rfh_tester->SimulateRedirect(url);
+ navigation_simulator->Redirect(url);
}
- SimulateNavigationCommit(main_rfh(), navigation_chain.back(), referrer,
- transition);
+ navigation_simulator->Commit();
ExpectActivationSignalForFrame(main_rfh(), expected_activation);
+ // Re-create a subframe now that the frame has navigated.
+ content::RenderFrameHostTester* rfh_tester =
+ content::RenderFrameHostTester::For(main_rfh());
+ subframe_rfh_ = rfh_tester->AppendChild(kSubframeName);
+
if (expected_pattern != EMPTY) {
EXPECT_THAT(tester.GetAllSamples(kMatchesPatternHistogramName),
::testing::ElementsAre(base::Bucket(expected_pattern, 1)));
@@ -261,10 +260,17 @@ class ContentSubresourceFilterDriverFactoryTest
void NavigateAndCommitSubframe(const GURL& url, bool expected_activation) {
EXPECT_CALL(*client(), ToggleNotificationVisibility(::testing::_)).Times(0);
- content::RenderFrameHostTester::For(subframe_rfh())
- ->SimulateNavigationStart(url);
- SimulateNavigationCommit(subframe_rfh(), url, content::Referrer(),
- ui::PAGE_TRANSITION_LINK);
+ content::NavigationSimulator::NavigateAndCommitFromDocument(url,
+ subframe_rfh());
+
+ // Update the subframe RFH as the navigation may have lead to a process
+ // swap.
+ for (content::RenderFrameHost* rfh : web_contents()->GetAllFrames()) {
+ if (rfh->GetFrameName() == kSubframeName) {
+ subframe_rfh_ = rfh;
+ break;
+ }
+ }
ExpectActivationSignalForFrame(subframe_rfh(), expected_activation);
::testing::Mock::VerifyAndClearExpectations(client());
}
@@ -311,10 +317,8 @@ class ContentSubresourceFilterDriverFactoryTest
// called in production code for failed navigations (e.g. network errors).
// It is called with browser-side navigation enabled, in which case
// RenderFrameHostTester already calls it, no need to call it manually.
- content::RenderFrameHostTester* rfh_tester =
- content::RenderFrameHostTester::For(main_rfh());
- rfh_tester->SimulateNavigationStart(url);
- rfh_tester->SimulateNavigationError(url, 403);
+ content::NavigationSimulator::NavigateAndFailFromDocument(
+ url, net::ERR_TIMED_OUT, main_rfh());
ExpectActivationSignalForFrame(main_rfh(), false);
::testing::Mock::VerifyAndClearExpectations(client());
}
@@ -333,8 +337,10 @@ class ContentSubresourceFilterDriverFactoryTest
NavigateAndExpectActivation(blacklisted_urls, {GURL(kExampleUrl)},
expected_pattern, expected_activation);
EXPECT_CALL(*client(), ToggleNotificationVisibility(::testing::_)).Times(0);
- content::RenderFrameHostTester::For(main_rfh())
- ->SimulateNavigationCommit(GURL(kExampleUrl));
+ std::unique_ptr<content::NavigationSimulator> navigation_simulator =
+ content::NavigationSimulator::CreateRendererInitiated(GURL(kExampleUrl),
+ main_rfh());
+ navigation_simulator->CommitSamePage();
ExpectActivationSignalForFrame(main_rfh(), false);
::testing::Mock::VerifyAndClearExpectations(client());
}
@@ -561,12 +567,6 @@ TEST_F(ContentSubresourceFilterDriverFactoryTest,
}
TEST_F(ContentSubresourceFilterDriverFactoryTest, WhitelistSiteOnReload) {
- // TODO(crbug.com/688393): enable this test for PlzNavigate once
- // WCO::ReadyToCommitNavigation is invoked consistently for tests in
- // PlzNavigate and non-PlzNavigate.
- if (content::IsBrowserSideNavigationEnabled())
- return;
-
const struct {
content::Referrer referrer;
ui::PageTransition transition;
« no previous file with comments | « no previous file | content/browser/frame_host/navigation_handle_impl.h » ('j') | content/test/navigation_simulator_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698