1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/preloading/prefetch/prefetch_document_manager.h"
#include <memory>
#include <string>
#include <vector>
#include "content/browser/preloading/prefetch/prefetch_features.h"
#include "content/browser/preloading/prefetch/prefetch_test_util_internal.h"
#include "content/public/test/navigation_simulator.h"
#include "content/public/test/test_browser_context.h"
#include "content/test/test_render_frame_host.h"
#include "content/test/test_web_contents.h"
#include "services/network/public/cpp/weak_wrapper_shared_url_loader_factory.h"
#include "services/network/public/mojom/no_vary_search.mojom.h"
#include "services/network/test/test_url_loader_factory.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/mojom/loader/referrer.mojom.h"
#include "third_party/blink/public/mojom/speculation_rules/speculation_rules.mojom.h"
namespace content {
namespace {
using testing::FieldsAre;
using testing::IsEmpty;
using testing::IsNull;
using testing::UnorderedElementsAreArray;
class PrefetchDocumentManagerTest : public RenderViewHostTestHarness {
public:
void SetUp() override {
RenderViewHostTestHarness::SetUp();
browser_context_ = std::make_unique<TestBrowserContext>();
web_contents_ = TestWebContents::Create(
browser_context_.get(),
SiteInstanceImpl::Create(browser_context_.get()));
web_contents_->NavigateAndCommit(GetSameOriginUrl("/"));
prefetch_service_ =
std::make_unique<TestPrefetchService>(browser_context_.get());
PrefetchDocumentManager::SetPrefetchServiceForTesting(
prefetch_service_.get());
}
void TearDown() override {
// The PrefetchService we created for the test contains a
// PrefetchOriginProber, which holds a raw pointer to the BrowserContext.
// When tearing down, it's important to free our PrefetchService
// before freeing the BrowserContext, to avoid any chance of a use after
// free.
PrefetchDocumentManager::SetPrefetchServiceForTesting(nullptr);
prefetch_service_.reset();
web_contents_.reset();
browser_context_.reset();
RenderViewHostTestHarness::TearDown();
}
RenderFrameHostImpl& GetPrimaryMainFrame() {
return web_contents_->GetPrimaryPage().GetMainDocument();
}
GURL GetSameOriginUrl(const std::string& path) {
return GURL("https://example.com" + path);
}
GURL GetSameSiteCrossOriginUrl(const std::string& path) {
return GURL("https://other.example.com" + path);
}
GURL GetCrossOriginUrl(const std::string& path) {
return GURL("https://other.com" + path);
}
void NavigateMainframeRendererTo(const GURL& url) {
std::unique_ptr<NavigationSimulator> simulator =
NavigationSimulator::CreateRendererInitiated(url,
&GetPrimaryMainFrame());
simulator->SetTransition(ui::PAGE_TRANSITION_LINK);
simulator->Start();
}
const std::vector<base::WeakPtr<PrefetchContainer>>& GetPrefetches() {
return prefetch_service_->prefetches_;
}
// Used to make sure that No-Vary-Search parsing error/warning message is sent
// to DevTools console.
std::string TriggerNoVarySearchParseErrorAndGetConsoleMessage(
network::mojom::NoVarySearchParseError parse_error) {
// Used to create responses.
const net::IsolationInfo info;
// Process the candidates with the |PrefetchDocumentManager| for the current
// document.
auto* prefetch_document_manager =
PrefetchDocumentManager::GetOrCreateForCurrentDocument(
&GetPrimaryMainFrame());
// Create list of SpeculationCandidatePtrs.
std::vector<blink::mojom::SpeculationCandidatePtr> candidates;
// Create candidate for private cross-origin prefetch. This candidate should
// be prefetched by |PrefetchDocumentManager|.
auto candidate1 = blink::mojom::SpeculationCandidate::New();
const auto test_url = GetCrossOriginUrl("/candidate1.html?a=2&b=3");
candidate1->action = blink::mojom::SpeculationAction::kPrefetch;
candidate1->requires_anonymous_client_ip_when_cross_origin = false;
candidate1->url = test_url;
candidate1->referrer = blink::mojom::Referrer::New();
candidates.push_back(std::move(candidate1));
prefetch_document_manager->ProcessCandidates(candidates);
// Now call TakePrefetchedResponse
network::mojom::URLResponseHeadPtr head =
network::mojom::URLResponseHead::New();
head->parsed_headers = network::mojom::ParsedHeaders::New();
head->parsed_headers->no_vary_search_with_parse_error =
network::mojom::NoVarySearchWithParseError::NewParseError(parse_error);
GetPrefetches()[0]->SimulatePrefetchEligibleForTest();
MakeServableStreamingURLLoaderForTest(GetPrefetches()[0].get(),
std::move(head), "empty");
auto& test_rfh = static_cast<TestRenderFrameHost&>(GetPrimaryMainFrame());
return test_rfh.GetConsoleMessages()[0];
}
private:
std::unique_ptr<TestBrowserContext> browser_context_;
std::unique_ptr<TestWebContents> web_contents_;
std::unique_ptr<TestPrefetchService> prefetch_service_;
};
TEST_F(PrefetchDocumentManagerTest, PopulateNoVarySearchHint) {
// Process the candidates with the |PrefetchDocumentManager| for the current
// document.
auto* prefetch_document_manager =
PrefetchDocumentManager::GetOrCreateForCurrentDocument(
&GetPrimaryMainFrame());
// Create list of SpeculationCandidatePtrs.
std::vector<blink::mojom::SpeculationCandidatePtr> candidates;
// Create candidate for private cross-origin prefetch. This candidate should
// be prefetched by |PrefetchDocumentManager|.
auto candidate1 = blink::mojom::SpeculationCandidate::New();
const auto test_url1 = GetCrossOriginUrl("/candidate1.html?a=2&b=3");
candidate1->action = blink::mojom::SpeculationAction::kPrefetch;
candidate1->requires_anonymous_client_ip_when_cross_origin = false;
candidate1->url = test_url1;
candidate1->referrer = blink::mojom::Referrer::New();
candidate1->no_vary_search_hint = network::mojom::NoVarySearch::New();
candidate1->no_vary_search_hint->vary_on_key_order = false;
candidate1->no_vary_search_hint->search_variance =
network::mojom::SearchParamsVariance::NewNoVaryParams({"a"});
auto candidate2 = blink::mojom::SpeculationCandidate::New();
const auto test_url2 = GetCrossOriginUrl("/candidate2.html?a=2&b=3");
candidate2->action = blink::mojom::SpeculationAction::kPrefetch;
candidate2->requires_anonymous_client_ip_when_cross_origin = false;
candidate2->url = test_url2;
candidate2->referrer = blink::mojom::Referrer::New();
candidate2->no_vary_search_hint = network::mojom::NoVarySearch::New();
candidate2->no_vary_search_hint->vary_on_key_order = true;
candidate2->no_vary_search_hint->search_variance =
network::mojom::SearchParamsVariance::NewVaryParams({"a"});
auto candidate3 = blink::mojom::SpeculationCandidate::New();
const auto test_url3 = GetCrossOriginUrl("/candidate3.html?a=2&b=3");
candidate3->action = blink::mojom::SpeculationAction::kPrefetch;
candidate3->requires_anonymous_client_ip_when_cross_origin = false;
candidate3->url = test_url3;
candidate3->referrer = blink::mojom::Referrer::New();
candidates.push_back(std::move(candidate1));
candidates.push_back(std::move(candidate2));
candidates.push_back(std::move(candidate3));
prefetch_document_manager->ProcessCandidates(candidates);
ASSERT_EQ(GetPrefetches().size(), 3u);
{
auto& prefetch = GetPrefetches()[0];
ASSERT_TRUE(prefetch);
ASSERT_TRUE(prefetch->GetNoVarySearchHint().has_value());
EXPECT_FALSE(prefetch->GetNoVarySearchHint()->vary_on_key_order());
EXPECT_THAT(prefetch->GetNoVarySearchHint()->no_vary_params(),
UnorderedElementsAreArray({"a"}));
}
{
auto& prefetch = GetPrefetches()[1];
ASSERT_TRUE(prefetch);
ASSERT_TRUE(prefetch->GetNoVarySearchHint().has_value());
EXPECT_TRUE(prefetch->GetNoVarySearchHint()->vary_on_key_order());
EXPECT_THAT(prefetch->GetNoVarySearchHint()->vary_params(),
UnorderedElementsAreArray({"a"}));
}
{
auto& prefetch = GetPrefetches()[2];
ASSERT_TRUE(prefetch);
EXPECT_FALSE(prefetch->GetNoVarySearchHint().has_value());
}
}
TEST_F(PrefetchDocumentManagerTest,
ProcessNoVarySearchResponseWithDefaultValue) {
EXPECT_THAT(TriggerNoVarySearchParseErrorAndGetConsoleMessage(
network::mojom::NoVarySearchParseError::kDefaultValue),
testing::HasSubstr("is equivalent to the default behavior"));
}
TEST_F(PrefetchDocumentManagerTest,
ProcessNoVarySearchResponseWithNotDictionary) {
EXPECT_THAT(TriggerNoVarySearchParseErrorAndGetConsoleMessage(
network::mojom::NoVarySearchParseError::kNotDictionary),
testing::HasSubstr("is not a dictionary"));
}
TEST_F(PrefetchDocumentManagerTest,
ProcessNoVarySearchResponseWithUnknownDictionaryKey) {
EXPECT_THAT(
TriggerNoVarySearchParseErrorAndGetConsoleMessage(
network::mojom::NoVarySearchParseError::kUnknownDictionaryKey),
testing::HasSubstr("contains unknown dictionary keys"));
}
TEST_F(PrefetchDocumentManagerTest,
ProcessNoVarySearchResponseWithNonBooleanKeyOrder) {
EXPECT_THAT(
TriggerNoVarySearchParseErrorAndGetConsoleMessage(
network::mojom::NoVarySearchParseError::kNonBooleanKeyOrder),
testing::HasSubstr(
"contains a \"key-order\" dictionary value that is not a boolean"));
}
TEST_F(PrefetchDocumentManagerTest,
ProcessNoVarySearchResponseWithParamsNotStringList) {
EXPECT_THAT(TriggerNoVarySearchParseErrorAndGetConsoleMessage(
network::mojom::NoVarySearchParseError::kParamsNotStringList),
testing::HasSubstr(
"contains a \"params\" dictionary value that is not a list"));
}
TEST_F(PrefetchDocumentManagerTest,
ProcessNoVarySearchResponseWithExceptNotStringList) {
EXPECT_THAT(
TriggerNoVarySearchParseErrorAndGetConsoleMessage(
network::mojom::NoVarySearchParseError::kExceptNotStringList),
testing::HasSubstr(
"contains an \"except\" dictionary value that is not a list"));
}
TEST_F(PrefetchDocumentManagerTest,
ProcessNoVarySearchResponseWithExceptWithoutTrueParams) {
EXPECT_THAT(
TriggerNoVarySearchParseErrorAndGetConsoleMessage(
network::mojom::NoVarySearchParseError::kExceptWithoutTrueParams),
testing::HasSubstr(
"contains an \"except\" dictionary key, without the \"params\""));
}
TEST_F(PrefetchDocumentManagerTest, ProcessSpeculationCandidates) {
// Create list of SpeculationCandidatePtrs.
std::vector<blink::mojom::SpeculationCandidatePtr> candidates;
auto referrer = blink::mojom::Referrer::New();
referrer->url = GetSameOriginUrl("/referrer");
// Create candidate for private cross-origin prefetch. This candidate should
// be prefetched by |PrefetchDocumentManager|.
auto candidate1 = blink::mojom::SpeculationCandidate::New();
candidate1->action = blink::mojom::SpeculationAction::kPrefetch;
candidate1->requires_anonymous_client_ip_when_cross_origin = true;
candidate1->url = GetCrossOriginUrl("/candidate1.html");
candidate1->referrer = referrer->Clone();
candidate1->eagerness = blink::mojom::SpeculationEagerness::kEager;
candidates.push_back(std::move(candidate1));
// Create candidate for non-private cross-origin prefetch. This candidate
// should be prefetched by |PrefetchDocumentManager|.
auto candidate2 = blink::mojom::SpeculationCandidate::New();
candidate2->action = blink::mojom::SpeculationAction::kPrefetch;
candidate2->requires_anonymous_client_ip_when_cross_origin = false;
candidate2->url = GetCrossOriginUrl("/candidate2.html");
candidate2->referrer = referrer->Clone();
candidate2->eagerness = blink::mojom::SpeculationEagerness::kEager;
candidates.push_back(std::move(candidate2));
// Create candidate for non-private cross-origin prefetch. This candidate
// should be prefetched by |PrefetchDocumentManager|.
auto candidate3 = blink::mojom::SpeculationCandidate::New();
candidate3->action = blink::mojom::SpeculationAction::kPrefetch;
candidate3->requires_anonymous_client_ip_when_cross_origin = false;
candidate3->url = GetSameOriginUrl("/candidate3.html");
candidate3->referrer = referrer->Clone();
candidate3->eagerness = blink::mojom::SpeculationEagerness::kEager;
candidates.push_back(std::move(candidate3));
// Create candidate for private cross-origin prefetch with subresources. This
// candidate should not be prefetched by |PrefetchDocumentManager|.
auto candidate4 = blink::mojom::SpeculationCandidate::New();
candidate4->action =
blink::mojom::SpeculationAction::kPrefetchWithSubresources;
candidate4->requires_anonymous_client_ip_when_cross_origin = true;
candidate4->url = GetCrossOriginUrl("/candidate4.html");
candidate4->referrer = referrer->Clone();
candidate4->eagerness = blink::mojom::SpeculationEagerness::kEager;
candidates.push_back(std::move(candidate4));
// Create candidate for prerender. This candidate should not be prefetched by
// |PrefetchDocumentManager|.
auto candidate5 = blink::mojom::SpeculationCandidate::New();
candidate5->action = blink::mojom::SpeculationAction::kPrerender;
candidate5->requires_anonymous_client_ip_when_cross_origin = false;
candidate5->url = GetCrossOriginUrl("/candidate5.html");
candidate5->referrer = referrer->Clone();
candidate5->eagerness = blink::mojom::SpeculationEagerness::kEager;
candidates.push_back(std::move(candidate5));
// Create candidate for private cross-origin prefetch with default eagerness.
// This candidate should be prefetched by |PrefetchDocumentManager|.
auto candidate6 = blink::mojom::SpeculationCandidate::New();
candidate6->action = blink::mojom::SpeculationAction::kPrefetch;
candidate6->requires_anonymous_client_ip_when_cross_origin = true;
candidate6->url = GetCrossOriginUrl("/candidate6.html");
candidate6->referrer = referrer->Clone();
candidate6->eagerness = blink::mojom::SpeculationEagerness::kConservative;
candidates.push_back(std::move(candidate6));
// Create candidate for same-site prefetch. This candidate should
// be prefetched by |PrefetchDocumentManager|.
auto candidate7 = blink::mojom::SpeculationCandidate::New();
candidate7->action = blink::mojom::SpeculationAction::kPrefetch;
candidate7->requires_anonymous_client_ip_when_cross_origin = false;
candidate7->url = GetSameSiteCrossOriginUrl("/candidate7.html");
candidate7->referrer = referrer->Clone();
candidate7->eagerness = blink::mojom::SpeculationEagerness::kEager;
candidates.push_back(std::move(candidate7));
// Create candidate for same-origin prefetch that requires a proxy if
// redirected to a cross-origin URL. This candidate should be prefetched by
// |PrefetchDocumentManager|.
auto candidate8 = blink::mojom::SpeculationCandidate::New();
candidate8->action = blink::mojom::SpeculationAction::kPrefetch;
candidate8->requires_anonymous_client_ip_when_cross_origin = true;
candidate8->url = GetSameOriginUrl("/candidate8.html");
candidate8->referrer = referrer->Clone();
candidate8->eagerness = blink::mojom::SpeculationEagerness::kEager;
candidates.push_back(std::move(candidate8));
// Process the candidates with the |PrefetchDocumentManager| for the current
// document.
auto* prefetch_document_manager =
PrefetchDocumentManager::GetOrCreateForCurrentDocument(
&GetPrimaryMainFrame());
prefetch_document_manager->ProcessCandidates(candidates);
// Check that the candidates that should be prefetched were sent to
// |PrefetchService|.
const auto& prefetch_urls = GetPrefetches();
ASSERT_EQ(prefetch_urls.size(), 6U);
EXPECT_EQ(prefetch_urls[0]->GetURL(), GetCrossOriginUrl("/candidate1.html"));
EXPECT_EQ(prefetch_urls[0]->GetPrefetchType(),
PrefetchType(PreloadingTriggerType::kSpeculationRule,
/*use_prefetch_proxy=*/true,
blink::mojom::SpeculationEagerness::kEager));
EXPECT_TRUE(
prefetch_urls[0]->IsIsolatedNetworkContextRequiredForCurrentPrefetch());
EXPECT_EQ(prefetch_urls[1]->GetURL(), GetCrossOriginUrl("/candidate2.html"));
EXPECT_EQ(prefetch_urls[1]->GetPrefetchType(),
PrefetchType(PreloadingTriggerType::kSpeculationRule,
/*use_prefetch_proxy=*/false,
blink::mojom::SpeculationEagerness::kEager));
EXPECT_TRUE(
prefetch_urls[1]->IsIsolatedNetworkContextRequiredForCurrentPrefetch());
EXPECT_EQ(prefetch_urls[2]->GetURL(), GetSameOriginUrl("/candidate3.html"));
EXPECT_EQ(prefetch_urls[2]->GetPrefetchType(),
PrefetchType(PreloadingTriggerType::kSpeculationRule,
/*use_prefetch_proxy=*/false,
blink::mojom::SpeculationEagerness::kEager));
EXPECT_FALSE(
prefetch_urls[2]->IsIsolatedNetworkContextRequiredForCurrentPrefetch());
EXPECT_EQ(prefetch_urls[3]->GetURL(), GetCrossOriginUrl("/candidate6.html"));
EXPECT_EQ(prefetch_urls[3]->GetPrefetchType(),
PrefetchType(PreloadingTriggerType::kSpeculationRule,
/*use_prefetch_proxy=*/true,
blink::mojom::SpeculationEagerness::kConservative));
EXPECT_TRUE(
prefetch_urls[3]->IsIsolatedNetworkContextRequiredForCurrentPrefetch());
EXPECT_EQ(prefetch_urls[4]->GetURL(),
GetSameSiteCrossOriginUrl("/candidate7.html"));
EXPECT_EQ(prefetch_urls[4]->GetPrefetchType(),
PrefetchType(PreloadingTriggerType::kSpeculationRule,
/*use_prefetch_proxy=*/false,
blink::mojom::SpeculationEagerness::kEager));
EXPECT_FALSE(
prefetch_urls[4]->IsIsolatedNetworkContextRequiredForCurrentPrefetch());
EXPECT_EQ(prefetch_urls[5]->GetURL(), GetSameOriginUrl("/candidate8.html"));
EXPECT_EQ(prefetch_urls[5]->GetPrefetchType(),
PrefetchType(PreloadingTriggerType::kSpeculationRule,
/*use_prefetch_proxy=*/true,
blink::mojom::SpeculationEagerness::kEager));
EXPECT_FALSE(
prefetch_urls[5]->IsIsolatedNetworkContextRequiredForCurrentPrefetch());
// Check that the only remaining entries in candidates are those that
// shouldn't be prefetched by |PrefetchService|.
ASSERT_EQ(candidates.size(), 2U);
EXPECT_EQ(candidates[0]->url, GetCrossOriginUrl("/candidate4.html"));
EXPECT_EQ(candidates[1]->url, GetCrossOriginUrl("/candidate5.html"));
// Check IsPrefetchAttemptFailedOrDiscarded method
// Discarded candidate
EXPECT_TRUE(prefetch_document_manager->IsPrefetchAttemptFailedOrDiscarded(
GetCrossOriginUrl("/candidate4.html")));
// URLs that were not processed
EXPECT_TRUE(prefetch_document_manager->IsPrefetchAttemptFailedOrDiscarded(
GetSameOriginUrl("/random_page.html")));
// Prefetches with no status yet
EXPECT_FALSE(prefetch_urls[0]->HasPrefetchStatus());
EXPECT_FALSE(prefetch_document_manager->IsPrefetchAttemptFailedOrDiscarded(
GetCrossOriginUrl("/candidate1.html")));
// Prefetches with status
prefetch_urls[0]->SetPrefetchStatus(PrefetchStatus::kPrefetchSuccessful);
EXPECT_FALSE(prefetch_document_manager->IsPrefetchAttemptFailedOrDiscarded(
GetCrossOriginUrl("/candidate1.html")));
prefetch_urls[1]->SetPrefetchStatus(
PrefetchStatus::kPrefetchIneligibleSchemeIsNotHttps);
EXPECT_TRUE(prefetch_document_manager->IsPrefetchAttemptFailedOrDiscarded(
GetCrossOriginUrl("/candidate2.html")));
prefetch_urls[2]->SetPrefetchStatus(PrefetchStatus::kPrefetchFailedNetError);
EXPECT_TRUE(prefetch_document_manager->IsPrefetchAttemptFailedOrDiscarded(
GetCrossOriginUrl("/candidate3.html")));
}
// Link speculationrules prefetch is not started in fenced frame.
// `CanPrefetchNow()` check blocks speculationrules prefetch from fenced frames.
TEST_F(PrefetchDocumentManagerTest, FencedFrameDoesNotStartPrefetch) {
// Create list of SpeculationCandidatePtrs.
std::vector<blink::mojom::SpeculationCandidatePtr> candidates;
auto referrer = blink::mojom::Referrer::New();
referrer->url = GetSameOriginUrl("/referrer");
const GURL cross_origin_url = GetCrossOriginUrl("/candidate.html");
// Create candidate for private cross-origin prefetch. This candidate should
// be added to the queue of |PrefetchDocumentManager|. However, it will not be
// prefetched because it is from a fenced frame.
auto candidate = blink::mojom::SpeculationCandidate::New();
candidate->action = blink::mojom::SpeculationAction::kPrefetch;
candidate->requires_anonymous_client_ip_when_cross_origin = true;
candidate->url = cross_origin_url;
candidate->referrer = referrer->Clone();
candidate->eagerness = blink::mojom::SpeculationEagerness::kEager;
candidates.push_back(std::move(candidate));
// Process the candidate with the |PrefetchDocumentManager| for the current
// document.
TestRenderFrameHost* fenced_frame_rfh =
static_cast<TestRenderFrameHost&>(GetPrimaryMainFrame())
.AppendFencedFrame();
auto* prefetch_document_manager =
PrefetchDocumentManager::GetOrCreateForCurrentDocument(fenced_frame_rfh);
prefetch_document_manager->ProcessCandidates(candidates);
// Check that the candidate was sent to |PrefetchService|.
const auto& prefetch_urls = GetPrefetches();
ASSERT_EQ(prefetch_urls.size(), 1U);
EXPECT_EQ(prefetch_urls[0]->GetURL(), cross_origin_url);
EXPECT_EQ(prefetch_urls[0]->GetPrefetchType(),
PrefetchType(PreloadingTriggerType::kSpeculationRule,
/*use_prefetch_proxy=*/true,
blink::mojom::SpeculationEagerness::kEager));
EXPECT_TRUE(
prefetch_urls[0]->IsIsolatedNetworkContextRequiredForCurrentPrefetch());
// `CanPrefetchNow()` blocks the speculationrules prefetch from fenced frame.
EXPECT_THAT(prefetch_document_manager->CanPrefetchNow(prefetch_urls[0].get()),
FieldsAre(false, IsNull()));
}
} // namespace
} // namespace content
|