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 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615
|
// Copyright 2021 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/renderer_host/navigation_policy_container_builder.h"
#include "base/strings/stringprintf.h"
#include "content/browser/renderer_host/frame_tree_node.h"
#include "content/browser/renderer_host/navigation_entry_impl.h"
#include "content/browser/renderer_host/navigation_state_keep_alive.h"
#include "content/browser/renderer_host/policy_container_host.h"
#include "content/browser/renderer_host/render_frame_host_impl.h"
#include "content/public/test/back_forward_cache_util.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/content_browser_test.h"
#include "content/public/test/mock_navigation_handle.h"
#include "content/public/test/test_navigation_observer.h"
#include "content/shell/browser/shell.h"
#include "services/network/public/mojom/content_security_policy.mojom.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/url_constants.h"
namespace content {
namespace {
using ::testing::ByRef;
using ::testing::Eq;
using ::testing::IsNull;
using ::testing::Pointee;
const PolicyContainerPolicies& GetPolicies(RenderFrameHostImpl* frame) {
return frame->policy_container_host()->policies();
}
GURL AboutBlankUrl() {
return GURL(url::kAboutBlankURL);
}
GURL AboutSrcdocUrl() {
return GURL(url::kAboutSrcdocURL);
}
network::mojom::ContentSecurityPolicyPtr MakeTestCSP() {
auto csp = network::mojom::ContentSecurityPolicy::New();
csp->header = network::mojom::ContentSecurityPolicyHeader::New();
csp->header->header_value = "some-directive some-value";
return csp;
}
} // namespace
// See also the unit tests for NavigationPolicyContainerBuilder, which exercise
// simpler parts of the API. We use browser tests to exercise behavior in the
// presence of navigation history in particular.
class NavigationPolicyContainerBuilderBrowserTest : public ContentBrowserTest {
protected:
explicit NavigationPolicyContainerBuilderBrowserTest() {
CHECK(embedded_test_server()->Start());
}
// Returns a pointer to the current root RenderFrameHostImpl.
RenderFrameHostImpl* root_frame_host() {
return static_cast<RenderFrameHostImpl*>(
shell()->web_contents()->GetPrimaryMainFrame());
}
// Helper to access the StoragePartition of the root RenderFrameHostImpl.
StoragePartitionImpl* root_storage_partition() {
return root_frame_host()->GetStoragePartition();
}
// Returns the URL of a page in the local address space.
GURL LocalUrl() const { return embedded_test_server()->GetURL("/echo"); }
// Returns the URL of a page in the public address space.
GURL PublicUrl() const {
return embedded_test_server()->GetURL(
"/set-header?Content-Security-Policy: treat-as-public-address");
}
// Returns the FrameNavigationEntry for the root node in the last committed
// navigation entry.
// Returns nullptr if there is no committed navigation entry.
FrameNavigationEntry* GetLastCommittedFrameNavigationEntry() {
auto* entry = static_cast<NavigationEntryImpl*>(
shell()->web_contents()->GetController().GetLastCommittedEntry());
if (!entry) {
return nullptr;
}
return entry->root_node()->frame_entry.get();
}
};
// Verifies that HistoryPolicies() returns nullptr in the absence of a history
// entry.
//
// Even though this could be a unit test, we define this here so as to keep all
// tests of HistoryPolicies() in the same place.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
HistoryPoliciesWithoutEntry) {
EXPECT_THAT(
NavigationPolicyContainerBuilder(
nullptr, nullptr, kInvalidChildProcessUniqueId, nullptr, nullptr)
.HistoryPolicies(),
IsNull());
}
// Verifies that HistoryPolicies() returns non-null during history navigation.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
HistoryPoliciesForNetworkScheme) {
// Navigate to a document with a network scheme. Its history entry should have
// its policies initialized from the network response.
EXPECT_TRUE(NavigateToURL(shell()->web_contents(), LocalUrl()));
const PolicyContainerPolicies& root_policies = GetPolicies(root_frame_host());
EXPECT_EQ(root_policies.ip_address_space,
network::mojom::IPAddressSpace::kLocal);
NavigationPolicyContainerBuilder builder(
nullptr, nullptr, kInvalidChildProcessUniqueId, nullptr,
GetLastCommittedFrameNavigationEntry());
EXPECT_THAT(builder.HistoryPolicies(), Pointee(Eq(ByRef(root_policies))));
}
// Verifies that SetFrameNavigationEntry() copies the policies during history
// navigation, if any, or resets those policies when given nullptr.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
HistoryPoliciesForBlankUrl) {
RenderFrameHostImpl* root = root_frame_host();
// First navigate to a local scheme with non-default policies. To do that, we
// first navigate to a document with a public address space, then have that
// document navigate itself to `about:blank`. The final blank document
// inherits its policies from the first document, and stores them in its
// frame navigation entry for restoring later.
EXPECT_TRUE(NavigateToURL(shell()->web_contents(), PublicUrl()));
EXPECT_TRUE(NavigateToURLFromRenderer(root, AboutBlankUrl()));
const PolicyContainerPolicies& root_policies = GetPolicies(root);
EXPECT_EQ(root_policies.ip_address_space,
network::mojom::IPAddressSpace::kPublic);
// Now that we have set up a navigation entry with non-default policies, we
// can run the test itself.
NavigationPolicyContainerBuilder builder(
nullptr, nullptr, kInvalidChildProcessUniqueId, nullptr,
GetLastCommittedFrameNavigationEntry());
EXPECT_THAT(builder.HistoryPolicies(), Pointee(Eq(ByRef(root_policies))));
}
// Verifies that HistoryPolicies() returns non-null even when associated with
// a non-current FrameNavigationEntry.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
HistoryPoliciesForNonCurentEntry) {
// Navigate to a document with a network scheme. Its history entry should have
// its policies initialized from the network response.
EXPECT_TRUE(NavigateToURL(shell()->web_contents(), LocalUrl()));
const PolicyContainerPolicies& root_policies = GetPolicies(root_frame_host());
EXPECT_EQ(root_policies.ip_address_space,
network::mojom::IPAddressSpace::kLocal);
FrameNavigationEntry* entry = GetLastCommittedFrameNavigationEntry();
NavigationPolicyContainerBuilder builder(
nullptr, nullptr, kInvalidChildProcessUniqueId, nullptr, entry);
// Verify the state is correct before navigating away.
EXPECT_THAT(builder.HistoryPolicies(), Pointee(Eq(ByRef(root_policies))));
EXPECT_TRUE(NavigateToURL(shell()->web_contents(), PublicUrl()));
// Now that the FrameNavigationEntry is non-current, verify that it still has
// the builder.
EXPECT_NE(entry, GetLastCommittedFrameNavigationEntry());
NavigationPolicyContainerBuilder builder2(
nullptr, nullptr, kInvalidChildProcessUniqueId, nullptr, entry);
EXPECT_THAT(builder2.HistoryPolicies(), Pointee(Eq(ByRef(root_policies))));
}
// Verifies that CreatePolicyContainerForBlink() returns a policy container
// containing a copy of the builder's final policies.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
CreatePolicyContainerForBlink) {
NavigationPolicyContainerBuilder builder(
nullptr, nullptr, kInvalidChildProcessUniqueId, nullptr, nullptr);
builder.SetIPAddressSpace(network::mojom::IPAddressSpace::kPublic);
MockNavigationHandle navigation_handle(GURL(), nullptr);
builder.ComputePolicies(&navigation_handle, false,
network::mojom::WebSandboxFlags::kNone,
/*is_credentialless=*/false);
// This must be called on a task runner, hence the need for this test to be
// a browser test and not a simple unit test.
blink::mojom::PolicyContainerPtr container =
builder.CreatePolicyContainerForBlink();
ASSERT_FALSE(container.is_null());
ASSERT_FALSE(container->policies.is_null());
const blink::mojom::PolicyContainerPolicies& policies = *container->policies;
EXPECT_EQ(policies.referrer_policy, builder.FinalPolicies().referrer_policy);
}
// Verifies that when the URL of the document to commit is `about:blank`, and
// when a navigation entry with policies is given, then the navigation
// initiator's policies are ignored in favor of the policies from the entry.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
FinalPoliciesAboutBlankWithInitiatorAndHistory) {
RenderFrameHostImpl* root = root_frame_host();
// First navigate to a local scheme with non-default policies. To do that, we
// first navigate to a document with a public address space, then have that
// document navigate itself to `about:blank`. The final blank document
// inherits its policies from the first document, and stores them in its frame
// navigation entry for restoring later.
EXPECT_TRUE(NavigateToURL(shell()->web_contents(), PublicUrl()));
EXPECT_TRUE(NavigateToURLFromRenderer(root, AboutBlankUrl()));
PolicyContainerPolicies initiator_policies;
initiator_policies.ip_address_space = network::mojom::IPAddressSpace::kLocal;
// Force implicit conversion from LocalFrameToken to UnguessableToken.
blink::LocalFrameToken token = root->GetFrameToken();
auto initiator_host =
base::MakeRefCounted<PolicyContainerHost>(std::move(initiator_policies));
root->SetPolicyContainerHost(initiator_host);
mojo::PendingRemote<blink::mojom::NavigationStateKeepAliveHandle>
keep_alive_receiver;
root->IssueKeepAliveHandle(
keep_alive_receiver.InitWithNewPipeAndPassReceiver());
NavigationPolicyContainerBuilder builder(
nullptr, &token, kInvalidChildProcessUniqueId,
root->GetStoragePartition(), GetLastCommittedFrameNavigationEntry());
EXPECT_NE(*builder.HistoryPolicies(), *builder.InitiatorPolicies());
PolicyContainerPolicies history_policies = builder.HistoryPolicies()->Clone();
// Deliver a Content Security Policy via `AddContentSecurityPolicy`. This
// policy should not be incorporated in the final policies, since the builder
// is using the history policies.
builder.AddContentSecurityPolicy(MakeTestCSP());
MockNavigationHandle navigation_handle(AboutBlankUrl(), nullptr);
builder.ComputePolicies(&navigation_handle, false,
network::mojom::WebSandboxFlags::kNone,
/*is_credentialless=*/false);
EXPECT_EQ(builder.FinalPolicies(), history_policies);
}
// Verifies that when the URL of the document to commit is `about:srcdoc`, and
// when a navigation entry with policies is given, then the parent's policies
// are ignored in favor of the policies from the entry.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
FinalPoliciesAboutSrcDocWithParentAndHistory) {
// First navigate to a local scheme with non-default policies. To do that, we
// first navigate to a document with a public address space, then have that
// document navigate itself to `about:blank`. The final blank document
// inherits its policies from the first document, and stores them in its
// frame navigation entry for restoring later.
EXPECT_TRUE(NavigateToURL(shell()->web_contents(), PublicUrl()));
EXPECT_TRUE(NavigateToURLFromRenderer(root_frame_host(), AboutBlankUrl()));
RenderFrameHostImpl* root = root_frame_host();
// Embed another frame with different policies, to use as the "parent".
std::string script_template = R"(
new Promise((resolve) => {
const iframe = document.createElement("iframe");
iframe.src = $1;
iframe.onload = () => { resolve(true); }
document.body.appendChild(iframe);
})
)";
EXPECT_EQ(true, EvalJs(root, JsReplace(script_template, LocalUrl())));
RenderFrameHostImpl* parent = root->child_at(0)->current_frame_host();
NavigationPolicyContainerBuilder builder(
parent, nullptr, kInvalidChildProcessUniqueId, nullptr,
GetLastCommittedFrameNavigationEntry());
EXPECT_NE(*builder.HistoryPolicies(), *builder.ParentPolicies());
PolicyContainerPolicies history_policies = builder.HistoryPolicies()->Clone();
// Deliver a Content Security Policy via `AddContentSecurityPolicy`. This
// policy should not be incorporated in the final policies, since the builder
// is using the history policies.
builder.AddContentSecurityPolicy(MakeTestCSP());
MockNavigationHandle navigation_handle(AboutSrcdocUrl(), nullptr);
builder.ComputePolicies(&navigation_handle, false,
network::mojom::WebSandboxFlags::kNone,
/*is_credentialless=*/false);
EXPECT_EQ(builder.FinalPolicies(), history_policies);
}
// Verifies that history policies are ignored in the case of error pages.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
FinalPoliciesErrorPageWithHistory) {
// First navigate to a local scheme with non-default policies. To do that, we
// first navigate to a document with a public address space, then have that
// document navigate itself to `about:blank`. The final blank document
// inherits its policies from the first document, and stores them in its
// frame navigation entry for restoring later.
EXPECT_TRUE(NavigateToURL(shell()->web_contents(), PublicUrl()));
EXPECT_TRUE(NavigateToURLFromRenderer(root_frame_host(), AboutBlankUrl()));
NavigationPolicyContainerBuilder builder(
nullptr, nullptr, kInvalidChildProcessUniqueId, nullptr,
GetLastCommittedFrameNavigationEntry());
builder.ComputePoliciesForError();
// Error pages commit with default policies, ignoring the history policies.
EXPECT_EQ(builder.FinalPolicies(), PolicyContainerPolicies());
}
// After |ComputePolicies()| or |ComputePoliciesForError()|, the history
// policies are still accessible.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
AccessHistoryAfterComputingPolicies) {
// First navigate to a local scheme with non-default policies. To do that, we
// first navigate to a document with a public address space, then have that
// document navigate itself to `about:blank`. The final blank document
// inherits its policies from the first document, and stores them in its
// frame navigation entry for restoring later.
EXPECT_TRUE(NavigateToURL(shell()->web_contents(), PublicUrl()));
EXPECT_TRUE(NavigateToURLFromRenderer(root_frame_host(), AboutBlankUrl()));
NavigationPolicyContainerBuilder builder(
nullptr, nullptr, kInvalidChildProcessUniqueId, nullptr,
GetLastCommittedFrameNavigationEntry());
PolicyContainerPolicies history_policies = builder.HistoryPolicies()->Clone();
MockNavigationHandle navigation_handle(AboutBlankUrl(), nullptr);
builder.ComputePolicies(&navigation_handle, false,
network::mojom::WebSandboxFlags::kNone,
/*is_credentialless=*/false);
EXPECT_THAT(builder.HistoryPolicies(), Pointee(Eq(ByRef(history_policies))));
builder.ComputePoliciesForError();
EXPECT_THAT(builder.HistoryPolicies(), Pointee(Eq(ByRef(history_policies))));
}
// Verifies that history policies from a reused navigation entry aren't used for
// non-local navigations.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
NoHistoryPoliciesInheritedForNonLocalUrlsOnReload) {
// Navigate to some non-local url first.
WebContents* tab = shell()->web_contents();
EXPECT_TRUE(NavigateToURL(tab, PublicUrl()));
EXPECT_EQ(PublicUrl(), tab->GetLastCommittedURL());
// Navigate by doing a client-redirect (through renderer-initiated
// replacement) to about:blank to put policies to navigation entry.
TestNavigationObserver navigation_observer(shell()->web_contents());
EXPECT_TRUE(
ExecJs(root_frame_host(), "window.location.replace('about:blank');"));
navigation_observer.WaitForNavigationFinished();
EXPECT_EQ(AboutBlankUrl(), tab->GetLastCommittedURL());
// Now reload to original url and ensure that history entry policies stored
// earlier aren't applied to non-local URL (no DCHECK triggered).
TestNavigationObserver observer(tab, /*expected_number_of_navigations=*/1);
tab->GetController().LoadOriginalRequestURL();
observer.Wait(); // No DCHECK expected.
EXPECT_EQ(PublicUrl(), tab->GetLastCommittedURL());
}
// Verifies that history policies from a restored navigation entry are
// overwritten if the policies have changed.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
NoHistoryPoliciesInheritedForNetworkUrlsOnBack) {
DisableBackForwardCacheForTesting(shell()->web_contents(),
BackForwardCache::TEST_REQUIRES_NO_CACHING);
// Start by navigating to a network URL with one policy.
WebContents* tab = shell()->web_contents();
EXPECT_TRUE(NavigateToURL(tab, PublicUrl()));
EXPECT_EQ(PublicUrl(), tab->GetLastCommittedURL());
// Use replaceState() to change to a same-origin URL with a different policy
// (which happens to be no policy for LocalUrl()).
TestNavigationObserver navigation_observer(shell()->web_contents());
EXPECT_TRUE(
ExecJs(root_frame_host(),
base::StringPrintf("window.history.replaceState('', null, '%s');",
LocalUrl().spec().data())));
navigation_observer.WaitForNavigationFinished();
EXPECT_EQ(LocalUrl(), tab->GetLastCommittedURL());
// Because we changed the url via replaceState rather than actually
// navigating to LocalUrl(), it shouldn't have modified any policies.
EXPECT_FALSE(
GetPolicies(root_frame_host()).content_security_policies.empty());
FrameNavigationEntry* entry = GetLastCommittedFrameNavigationEntry();
EXPECT_FALSE(
entry->policy_container_policies()->content_security_policies.empty());
// Navigate away, then back to LocalUrl().
EXPECT_TRUE(NavigateToURL(shell()->web_contents(), AboutBlankUrl()));
EXPECT_TRUE(HistoryGoBack(shell()->web_contents()));
// This time we actually loaded LocalUrl(). We should use its (non-existent)
// content security policies and updated the policies on the
// FrameNavigationEntry, rather than restoring the previous set from the FNE.
EXPECT_EQ(entry, GetLastCommittedFrameNavigationEntry());
EXPECT_TRUE(
entry->policy_container_policies()->content_security_policies.empty());
EXPECT_TRUE(GetPolicies(root_frame_host()).content_security_policies.empty());
}
// Verifies that the history policies are preserved on
// ResetForCrossDocumentRestart.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
ResetForCrossDocumentRestartHistoryPolicies) {
RenderFrameHostImpl* root = root_frame_host();
// First navigate to a local scheme with non-default policies. To do that, we
// first navigate to a document with a public address space, then have that
// document navigate itself to `about:blank`. The final blank document
// inherits its policies from the first document, and stores them in its frame
// navigation entry for restoring later.
EXPECT_TRUE(NavigateToURL(shell()->web_contents(), PublicUrl()));
EXPECT_TRUE(NavigateToURLFromRenderer(root, AboutBlankUrl()));
NavigationPolicyContainerBuilder builder(
nullptr, nullptr, kInvalidChildProcessUniqueId, nullptr,
GetLastCommittedFrameNavigationEntry());
PolicyContainerPolicies history_policies = builder.HistoryPolicies()->Clone();
MockNavigationHandle navigation_handle(GURL("http://foo.test"), nullptr);
builder.ComputePolicies(&navigation_handle, false,
network::mojom::WebSandboxFlags::kNone,
/*is_credentialless=*/false);
EXPECT_EQ(builder.FinalPolicies(), PolicyContainerPolicies());
builder.ResetForCrossDocumentRestart();
EXPECT_THAT(builder.HistoryPolicies(), Pointee(Eq(ByRef(history_policies))));
navigation_handle.set_url(AboutBlankUrl());
builder.ComputePolicies(&navigation_handle, false,
network::mojom::WebSandboxFlags::kNone,
/*is_credentialless=*/false);
EXPECT_EQ(builder.FinalPolicies(), history_policies);
}
// It would be nice to verify that when given a wrong token, the builder just
// ignores it and InitiatorPolicies() returns nullptr. However that path is
// guarded by a DCHECK() so we cannot test it.
// Verifies that SetInitiator() copies the policies of the policy container host
// associated to the given frame token, or resets those policies when given
// nullptr.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
InitiatorPoliciesWithInitiator) {
RenderFrameHostImpl* initiator = root_frame_host();
PolicyContainerPolicies initiator_policies =
initiator->policy_container_host()->policies().Clone();
// Force implicit conversion from LocalFrameToken to UnguessableToken.
const blink::LocalFrameToken& token = initiator->GetFrameToken();
NavigationPolicyContainerBuilder builder(
nullptr, &token, initiator->GetProcess()->GetDeprecatedID(),
root_storage_partition(), nullptr);
EXPECT_THAT(builder.InitiatorPolicies(),
Pointee(Eq(ByRef(initiator_policies))));
}
// Verifies that when the URL of the document to commit is `about:blank`, the
// builder's final policies are copied from the initiator.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
FinalPoliciesAboutBlankWithInitiator) {
RenderFrameHostImpl* initiator = root_frame_host();
const PolicyContainerPolicies& initiator_policies =
initiator->policy_container_host()->policies();
// Force implicit conversion from LocalFrameToken to UnguessableToken.
const blink::LocalFrameToken& token = initiator->GetFrameToken();
NavigationPolicyContainerBuilder builder(
nullptr, &token, initiator->GetProcess()->GetDeprecatedID(),
root_storage_partition(), nullptr);
MockNavigationHandle navigation_handle(AboutBlankUrl(), nullptr);
builder.ComputePolicies(&navigation_handle, false,
network::mojom::WebSandboxFlags::kNone,
/*is_credentialless=*/false);
EXPECT_EQ(builder.FinalPolicies(), initiator_policies);
}
// Verifies that when the URL of the document to commit is `blob:.*`, the
// builder's final policies are copied from the initiator.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
FinalPoliciesBlobWithInitiator) {
RenderFrameHostImpl* initiator = root_frame_host();
PolicyContainerPolicies initiator_policies =
initiator->policy_container_host()->policies().Clone();
// Force implicit conversion from LocalFrameToken to UnguessableToken.
const blink::LocalFrameToken& token = initiator->GetFrameToken();
NavigationPolicyContainerBuilder builder(
nullptr, &token, initiator->GetProcess()->GetDeprecatedID(),
root_storage_partition(), nullptr);
MockNavigationHandle navigation_handle(
GURL("blob:https://example.com/016ece86-b7f9-4b07-88c2-a0e36b7f1dd6"),
nullptr);
builder.ComputePolicies(&navigation_handle, false,
network::mojom::WebSandboxFlags::kNone,
/*is_credentialless=*/false);
EXPECT_EQ(builder.FinalPolicies(), initiator_policies);
}
// Verifies that when the URL of the document to commit is `about:blank`, the
// builder's final policies are copied from the initiator, and additional
// delivered policies are merged.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
FinalPoliciesAboutBlankWithInitiatorAndAdditionalCSP) {
RenderFrameHostImpl* initiator = root_frame_host();
PolicyContainerPolicies initiator_policies =
initiator->policy_container_host()->policies().Clone();
// Force implicit conversion from LocalFrameToken to UnguessableToken.
const blink::LocalFrameToken& token = initiator->GetFrameToken();
NavigationPolicyContainerBuilder builder(
nullptr, &token, initiator->GetProcess()->GetDeprecatedID(),
root_storage_partition(), nullptr);
// Add some CSP.
network::mojom::ContentSecurityPolicyPtr test_csp = MakeTestCSP();
builder.AddContentSecurityPolicy(test_csp.Clone());
MockNavigationHandle navigation_handle(AboutBlankUrl(), nullptr);
builder.ComputePolicies(&navigation_handle, false,
network::mojom::WebSandboxFlags::kNone,
/*is_credentialless=*/false);
initiator_policies.content_security_policies.push_back(std::move(test_csp));
EXPECT_EQ(builder.FinalPolicies(), initiator_policies);
}
// After ComputePolicies() or ComputePoliciesForError(), the initiator policies
// are still accessible.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
AccessInitiatorAfterComputingPolicies) {
RenderFrameHostImpl* initiator = root_frame_host();
const PolicyContainerPolicies& initiator_policies =
initiator->policy_container_host()->policies();
// Force implicit conversion from LocalFrameToken to UnguessableToken.
const blink::LocalFrameToken& token = initiator->GetFrameToken();
NavigationPolicyContainerBuilder builder(
nullptr, &token, initiator->GetProcess()->GetDeprecatedID(),
root_storage_partition(), nullptr);
EXPECT_THAT(builder.InitiatorPolicies(),
Pointee(Eq(ByRef(initiator_policies))));
MockNavigationHandle navigation_handle(GURL("https://foo.test"), nullptr);
builder.ComputePolicies(&navigation_handle, false,
network::mojom::WebSandboxFlags::kNone,
/*is_credentialless=*/false);
EXPECT_THAT(builder.InitiatorPolicies(),
Pointee(Eq(ByRef(initiator_policies))));
builder.ComputePoliciesForError();
EXPECT_THAT(builder.InitiatorPolicies(),
Pointee(Eq(ByRef(initiator_policies))));
}
// Verifies that the initiator policies are preserved on
// ResetForCrossDocumentRestart.
IN_PROC_BROWSER_TEST_F(NavigationPolicyContainerBuilderBrowserTest,
ResetForCrossDocumentRestartInitiatorPolicies) {
RenderFrameHostImpl* initiator = root_frame_host();
// Force implicit conversion from LocalFrameToken to UnguessableToken.
const blink::LocalFrameToken& token = initiator->GetFrameToken();
NavigationPolicyContainerBuilder builder(
nullptr, &token, initiator->GetProcess()->GetDeprecatedID(),
root_storage_partition(), nullptr);
MockNavigationHandle navigation_handle(GURL("https://foo.test"), nullptr);
builder.ComputePolicies(&navigation_handle, false,
network::mojom::WebSandboxFlags::kNone,
/*is_credentialless=*/false);
EXPECT_EQ(builder.FinalPolicies(), PolicyContainerPolicies());
builder.ResetForCrossDocumentRestart();
EXPECT_THAT(
builder.InitiatorPolicies(),
Pointee(Eq(ByRef(initiator->policy_container_host()->policies()))));
navigation_handle.set_url(AboutBlankUrl());
builder.ComputePolicies(&navigation_handle, false,
network::mojom::WebSandboxFlags::kNone,
/*is_credentialless=*/false);
EXPECT_EQ(builder.FinalPolicies(),
initiator->policy_container_host()->policies());
}
} // namespace content
|