зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1660281 [wpt PR 25153] - [COOP] access reporting: access-from-other test., a=testonly
Automatic update from web-platform-tests [COOP] access reporting: access-from-other test. Add a basic WPT test where the reported: body.type is: "access-to-coop-page-from-other" Bug: 1090273 Change-Id: I6961a1a939c707264f215542a2bd99cdc45fb34d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2367098 Commit-Queue: Arthur Sonzogni <arthursonzogni@chromium.org> Reviewed-by: Camille Lamy <clamy@chromium.org> Cr-Commit-Position: refs/heads/master@{#801318} -- wpt-commits: 7e378c8d5a064be94bcc444c08487dcbeba884b7 wpt-pr: 25153
This commit is contained in:
Родитель
80514b48a0
Коммит
e096355509
|
@ -0,0 +1,75 @@
|
|||
<title>
|
||||
One window accesses a second one. They are aren't related by an opener/openee
|
||||
relationship. The second window has set
|
||||
Cross-Origin-Opener-Policy-Report-Only:same-origin, so it receives a
|
||||
"access-to-coop-page-from-other" report.
|
||||
</title>
|
||||
<meta name=timeout content=long>
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<script src=/common/get-host-info.sub.js></script>
|
||||
<script src="/common/utils.js"></script>
|
||||
<script src="../resources/dispatcher.js"></script>
|
||||
<script src="../resources/try-access.js"></script>
|
||||
<script>
|
||||
|
||||
const directory = "/html/cross-origin-opener-policy/reporting";
|
||||
const executor_path = directory + "/resources/executor.html?pipe=";
|
||||
const same_origin = get_host_info().HTTPS_ORIGIN;
|
||||
const coep_header = '|header(Cross-Origin-Embedder-Policy,require-corp)';
|
||||
|
||||
promise_test(async t => {
|
||||
// The test window.
|
||||
const this_window_token = token();
|
||||
|
||||
// The "opener" window.
|
||||
const opener_token = token();
|
||||
const opener_url = same_origin + executor_path + `&uuid=${opener_token}`;
|
||||
|
||||
// The "openee" window. With COOP:same-origin + reporter.
|
||||
const openee_report_token= token();
|
||||
const openee_token = token();
|
||||
const openee_reportTo = reportToHeaders(openee_report_token);
|
||||
const openee_url = same_origin + executor_path + openee_reportTo.header +
|
||||
openee_reportTo.coopReportOnlySameOriginHeader + coep_header +
|
||||
`&uuid=${openee_token}`;
|
||||
|
||||
// The "other" window.
|
||||
const other_token = token();
|
||||
const other_url = same_origin + executor_path + `&uuid=${other_token}`;
|
||||
|
||||
t.add_cleanup(() => {
|
||||
send(opener_token, "window.close()")
|
||||
send(openee_token, "window.close()")
|
||||
send(other_token, "window.close()")
|
||||
})
|
||||
|
||||
// 1. Create the opener window.
|
||||
let opener_window_proxy = window.open(opener_url);
|
||||
|
||||
// 2. The opener opens its openee and the other window.
|
||||
send(opener_token, `
|
||||
window.openee = window.open('${openee_url.replace(/,/g, '\\,')}');
|
||||
window.other = window.open('${other_url}');
|
||||
`);
|
||||
|
||||
// 3. Make sure the openee is loaded.
|
||||
send(openee_token, `send("${this_window_token}", "Loaded");`);
|
||||
assert_equals(await receive(this_window_token), "Loaded");
|
||||
|
||||
// 4. The "other" window attempts to access the openee though the opener.
|
||||
send(other_token, `tryAccess(opener.openee);`);
|
||||
|
||||
// 4. Check a report sent to the openee.
|
||||
let report =
|
||||
await receiveReport(openee_report_token, "access-to-coop-page-from-other")
|
||||
assert_not_equals(report, "timeout", "Report not received");
|
||||
assert_equals(report.type, "coop");
|
||||
assert_equals(report.url, openee_url.replace(/"/g, '%22'));
|
||||
assert_equals(report.body.disposition, "reporting");
|
||||
assert_equals(report.body.effectivePolicy, "same-origin-plus-coep");
|
||||
assert_equals(report.body.property, "blur");
|
||||
assert_source_location_missing(report);
|
||||
}, "access-to-coop-page-from-other (COOP-RO)");
|
||||
|
||||
</script>
|
Загрузка…
Ссылка в новой задаче