Bug 1743415 [wpt PR 31777] - Anonymous iframe: Test Cookie get/set from within., a=testonly

Automatic update from web-platform-tests
Anonymous iframe: Test Cookie get/set from within.

We previously tested documents in anonymous iframe won't have access to
cookies set outside the frame:
/html/cross-origin-embedder-policy/anonymous-iframe/cookie.tentative.https.window.js

This patch checks they can still define and retrieves Cookies cookies
defined from within.

Bug: 1238368,1226469
Change-Id: I3352f2879ffa8ebf109d64b3e51de3b783354f4f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3306633
Commit-Queue: Arthur Sonzogni <arthursonzogni@chromium.org>
Reviewed-by: Dylan Cutler <dylancutler@google.com>
Cr-Commit-Position: refs/heads/main@{#946364}

--

wpt-commits: b66d9d90698133a8246f432c478b230a0c2ff996
wpt-pr: 31777
This commit is contained in:
Arthur Sonzogni 2021-11-30 21:57:30 +00:00 коммит произвёл moz-wptsync-bot
Родитель b562cc2066
Коммит 9adefca613
1 изменённых файлов: 92 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,92 @@
// META: timeout=long
// META: script=/common/get-host-info.sub.js
// META: script=/common/utils.js
// META: script=/common/dispatcher/dispatcher.js
// META: script=../credentialless/resources/common.js
// META: script=./resources/common.js
// A set of tests, checking cookies defined from within an anonymous iframe
// continue to work.
const same_origin = get_host_info().HTTPS_ORIGIN;
const cross_origin = get_host_info().HTTPS_REMOTE_ORIGIN;
const cookie_key = token()
const anonymous_iframe = newAnonymousIframe(cross_origin);
// Install some helper functions in the child to observe Cookies:
promise_setup(async () => {
await send(anonymous_iframe, `
window.getMyCookie = () => {
const value = "; " + document.cookie;
const parts = value.split("; ${cookie_key}=");
if (parts.length !== 2)
return undefined
return parts.pop().split(';').shift();
};
window.nextCookieValue = () => {
return new Promise(resolve => {
const old_cookie = getMyCookie();
const interval = setInterval(() => {
const next_cookie_value = getMyCookie();
if (old_cookie !== next_cookie_value) {
clearInterval(interval);
resolve(next_cookie_value)
}
})
});
};
`);
}, "Setup");
promise_test(async test => {
const this_token = token();
send(anonymous_iframe, `
document.cookie = "${cookie_key}=cookie_value_1";
send("${this_token}", getMyCookie());
`);
assert_equals(await receive(this_token), "cookie_value_1");
}, "Set/Get cookie via JS API");
promise_test(async test => {
const resource_token = token();
send(anonymous_iframe, `
fetch("${showRequestHeaders(cross_origin, resource_token)}");
`);
const request_headers = JSON.parse(await receive(resource_token));
const cookie_value = parseCookies(request_headers)[cookie_key];
assert_equals(cookie_value, "cookie_value_1");
}, "Get Cookie via subresource requests");
promise_test(async test => {
const resource_token = token();
const resource_url = cross_origin + "/common/blank.html?pipe=" +
`|header(Set-Cookie,${cookie_key}=cookie_value_2;Path=/common/dispatcher)`;
const this_token = token();
send(anonymous_iframe, `
const next_cookie_value = nextCookieValue();
fetch("${resource_url}");
send("${this_token}", await next_cookie_value);
`);
assert_equals(await receive(this_token), "cookie_value_2");
}, "Set Cookie via subresource requests");
promise_test(async test => {
const resource_token = token();
const resource_url = cross_origin + "/common/blank.html?pipe=" +
`|header(Set-Cookie,${cookie_key}=cookie_value_3;Path=/common/dispatcher)`;
const this_token = token();
send(anonymous_iframe, `
const next_cookie_value = nextCookieValue();
const iframe = document.createElement("iframe");
iframe.src = "${resource_url}";
document.body.appendChild(iframe);
send("${this_token}", await next_cookie_value);
`);
assert_equals(await receive(this_token), "cookie_value_3");
}, "Set Cookie via navigation requests");