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 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920
|
// Creates a new iframe in `doc`, calls `func` on it and appends it as a child
// of `doc`.
// Returns a promise that resolves to the iframe once loaded (successfully or
// not).
// The iframe is removed from `doc` once test `t` is done running.
//
// NOTE: There exists no interoperable way to check whether an iframe failed to
// load, so this should only be used when the iframe is expected to load. It
// also means we cannot wire the iframe's `error` event to a promise
// rejection. See: https://github.com/whatwg/html/issues/125
function appendIframeWith(t, doc, func) {
return new Promise(resolve => {
const child = doc.createElement("iframe");
t.add_cleanup(() => child.remove());
child.addEventListener("load", () => resolve(child), { once: true });
func(child);
doc.body.appendChild(child);
});
}
// Appends a child iframe to `doc` sourced from `src`.
//
// See `appendIframeWith()` for more details.
function appendIframe(t, doc, src) {
return appendIframeWith(t, doc, child => { child.src = src; });
}
// Registers an event listener that will resolve this promise when this
// window receives a message posted to it.
//
// `options` has the following shape:
//
// {
// source: If specified, this function waits for the first message from the
// given source only, ignoring other messages.
//
// filter: If specified, this function calls `filter` on each incoming
// message, and resolves iff it returns true.
// }
//
function futureMessage(options) {
return new Promise(resolve => {
window.addEventListener("message", (e) => {
if (options?.source && options.source !== e.source) {
return;
}
if (options?.filter && !options.filter(e.data)) {
return;
}
resolve(e.data);
});
});
};
// Like `promise_test()`, but executes tests in parallel like `async_test()`.
//
// Cribbed from COEP tests.
function promise_test_parallel(promise, description) {
async_test(test => {
promise(test)
.then(() => test.done())
.catch(test.step_func(error => { throw error; }));
}, description);
};
async function postMessageAndAwaitReply(target, message) {
const reply = futureMessage({ source: target });
target.postMessage(message, "*");
return await reply;
}
// Maps protocol (without the trailing colon) and address space to port.
const SERVER_PORTS = {
"http": {
"local": {{ports[http][0]}},
"private": {{ports[http-private][0]}},
"public": {{ports[http-public][0]}},
},
"https": {
"local": {{ports[https][0]}},
"other-local": {{ports[https][1]}},
"private": {{ports[https-private][0]}},
"public": {{ports[https-public][0]}},
},
"ws": {
"local": {{ports[ws][0]}},
},
"wss": {
"local": {{ports[wss][0]}},
},
};
// A `Server` is a web server accessible by tests. It has the following shape:
//
// {
// addressSpace: the IP address space of the server ("local", "private" or
// "public"),
// name: a human-readable name for the server,
// port: the port on which the server listens for connections,
// protocol: the protocol (including trailing colon) spoken by the server,
// }
//
// Constants below define the available servers, which can also be accessed
// programmatically with `get()`.
class Server {
// Maps the given `protocol` (without a trailing colon) and `addressSpace` to
// a server. Returns null if no such server exists.
static get(protocol, addressSpace) {
const ports = SERVER_PORTS[protocol];
if (ports === undefined) {
return null;
}
const port = ports[addressSpace];
if (port === undefined) {
return null;
}
return {
addressSpace,
name: `${protocol}-${addressSpace}`,
port,
protocol: protocol + ':',
};
}
static HTTP_LOCAL = Server.get("http", "local");
static HTTP_PRIVATE = Server.get("http", "private");
static HTTP_PUBLIC = Server.get("http", "public");
static HTTPS_LOCAL = Server.get("https", "local");
static OTHER_HTTPS_LOCAL = Server.get("https", "other-local");
static HTTPS_PRIVATE = Server.get("https", "private");
static HTTPS_PUBLIC = Server.get("https", "public");
static WS_LOCAL = Server.get("ws", "local");
static WSS_LOCAL = Server.get("wss", "local");
};
// Resolves a URL relative to the current location, returning an absolute URL.
//
// `url` specifies the relative URL, e.g. "foo.html" or "http://foo.example".
// `options`, if defined, should have the following shape:
//
// {
// // Optional. Overrides the protocol of the returned URL.
// protocol,
//
// // Optional. Overrides the port of the returned URL.
// port,
//
// // Extra headers.
// headers,
//
// // Extra search params.
// searchParams,
// }
//
function resolveUrl(url, options) {
const result = new URL(url, window.location);
if (options === undefined) {
return result;
}
const { port, protocol, headers, searchParams } = options;
if (port !== undefined) {
result.port = port;
}
if (protocol !== undefined) {
result.protocol = protocol;
}
if (headers !== undefined) {
const pipes = [];
for (key in headers) {
pipes.push(`header(${key},${headers[key]})`);
}
result.searchParams.append("pipe", pipes.join("|"));
}
if (searchParams !== undefined) {
for (key in searchParams) {
result.searchParams.append(key, searchParams[key]);
}
}
return result;
}
// Computes options to pass to `resolveUrl()` for a source document's URL.
//
// `server` identifies the server from which to load the document.
// `treatAsPublic`, if set to true, specifies that the source document should
// be artificially placed in the `public` address space using CSP.
function sourceResolveOptions({ server, treatAsPublic }) {
const options = {...server};
if (treatAsPublic) {
options.headers = { "Content-Security-Policy": "treat-as-public-address" };
}
return options;
}
// Computes the URL of a preflight handler configured with the given options.
//
// `server` identifies the server from which to load the resource.
// `behavior` specifies the behavior of the target server. It may contain:
// - `preflight`: The result of calling one of `PreflightBehavior`'s methods.
// - `response`: The result of calling one of `ResponseBehavior`'s methods.
// - `redirect`: A URL to which the target should redirect GET requests.
function preflightUrl({ server, behavior }) {
assert_not_equals(server, undefined, 'server');
const options = {...server};
if (behavior) {
const { preflight, response, redirect } = behavior;
options.searchParams = {
...preflight,
...response,
};
if (redirect !== undefined) {
options.searchParams.redirect = redirect;
}
}
return resolveUrl("resources/preflight.py", options);
}
// Methods generate behavior specifications for how `resources/preflight.py`
// should behave upon receiving a preflight request.
const PreflightBehavior = {
// The preflight response should fail with a non-2xx code.
failure: () => ({}),
// The preflight response should be missing CORS headers.
// `uuid` should be a UUID that uniquely identifies the preflight request.
noCorsHeader: (uuid) => ({
"preflight-uuid": uuid,
}),
// The preflight response should be missing PNA headers.
// `uuid` should be a UUID that uniquely identifies the preflight request.
noPnaHeader: (uuid) => ({
"preflight-uuid": uuid,
"preflight-headers": "cors",
}),
// The preflight response should succeed.
// `uuid` should be a UUID that uniquely identifies the preflight request.
success: (uuid) => ({
"preflight-uuid": uuid,
"preflight-headers": "cors+pna",
}),
optionalSuccess: (uuid) => ({
"preflight-uuid": uuid,
"preflight-headers": "cors+pna",
"is-preflight-optional": true,
}),
// The preflight response should succeed and allow service-worker header.
// `uuid` should be a UUID that uniquely identifies the preflight request.
serviceWorkerSuccess: (uuid) => ({
"preflight-uuid": uuid,
"preflight-headers": "cors+pna+sw",
}),
// The preflight response should succeed only if it is the first preflight.
// `uuid` should be a UUID that uniquely identifies the preflight request.
singlePreflight: (uuid) => ({
"preflight-uuid": uuid,
"preflight-headers": "cors+pna",
"expect-single-preflight": true,
}),
// The preflight response should succeed and allow origins and headers for
// navigations.
navigation: (uuid) => ({
"preflight-uuid": uuid,
"preflight-headers": "navigation",
}),
};
// Methods generate behavior specifications for how `resources/preflight.py`
// should behave upon receiving a regular (non-preflight) request.
const ResponseBehavior = {
// The response should succeed without CORS headers.
default: () => ({}),
// The response should succeed with CORS headers.
allowCrossOrigin: () => ({ "final-headers": "cors" }),
};
const FetchTestResult = {
SUCCESS: {
ok: true,
body: "success",
},
OPAQUE: {
ok: false,
type: "opaque",
body: "",
},
FAILURE: {
error: "TypeError: Failed to fetch",
},
};
// Runs a fetch test. Tries to fetch a given subresource from a given document.
//
// Main argument shape:
//
// {
// // Optional. Passed to `sourceResolveOptions()`.
// source,
//
// // Optional. Passed to `preflightUrl()`.
// target,
//
// // Optional. Passed to `fetch()`.
// fetchOptions,
//
// // Required. One of the values in `FetchTestResult`.
// expected,
// }
//
async function fetchTest(t, { source, target, fetchOptions, expected }) {
const sourceUrl =
resolveUrl("resources/fetcher.html", sourceResolveOptions(source));
const targetUrl = preflightUrl(target);
const iframe = await appendIframe(t, document, sourceUrl);
const reply = futureMessage({ source: iframe.contentWindow });
const message = {
url: targetUrl.href,
options: fetchOptions,
};
iframe.contentWindow.postMessage(message, "*");
const { error, ok, type, body } = await reply;
assert_equals(error, expected.error, "error");
assert_equals(ok, expected.ok, "response ok");
assert_equals(body, expected.body, "response body");
if (expected.type !== undefined) {
assert_equals(type, expected.type, "response type");
}
}
// Similar to `fetchTest`, but replaced iframes with fenced frames.
async function fencedFrameFetchTest(t, { source, target, fetchOptions, expected }) {
const fetcher_url =
resolveUrl("resources/fenced-frame-fetcher.https.html", sourceResolveOptions(source));
const target_url = preflightUrl(target);
target_url.searchParams.set("is-loaded-in-fenced-frame", true);
fetcher_url.searchParams.set("mode", fetchOptions.mode);
fetcher_url.searchParams.set("method", fetchOptions.method);
fetcher_url.searchParams.set("url", target_url);
const error_token = token();
const ok_token = token();
const body_token = token();
const type_token = token();
const source_url = generateURL(fetcher_url, [error_token, ok_token, body_token, type_token]);
const urn = await generateURNFromFledge(source_url, []);
attachFencedFrame(urn);
const error = await nextValueFromServer(error_token);
const ok = await nextValueFromServer(ok_token);
const body = await nextValueFromServer(body_token);
const type = await nextValueFromServer(type_token);
assert_equals(error, expected.error || "" , "error");
assert_equals(body, expected.body || "", "response body");
assert_equals(ok, expected.ok !== undefined ? expected.ok.toString() : "", "response ok");
if (expected.type !== undefined) {
assert_equals(type, expected.type, "response type");
}
}
const XhrTestResult = {
SUCCESS: {
loaded: true,
status: 200,
body: "success",
},
FAILURE: {
loaded: false,
status: 0,
},
};
// Runs an XHR test. Tries to fetch a given subresource from a given document.
//
// Main argument shape:
//
// {
// // Optional. Passed to `sourceResolveOptions()`.
// source,
//
// // Optional. Passed to `preflightUrl()`.
// target,
//
// // Optional. Method to use when sending the request. Defaults to "GET".
// method,
//
// // Required. One of the values in `XhrTestResult`.
// expected,
// }
//
async function xhrTest(t, { source, target, method, expected }) {
const sourceUrl =
resolveUrl("resources/xhr-sender.html", sourceResolveOptions(source));
const targetUrl = preflightUrl(target);
const iframe = await appendIframe(t, document, sourceUrl);
const reply = futureMessage();
const message = {
url: targetUrl.href,
method: method,
};
iframe.contentWindow.postMessage(message, "*");
const { loaded, status, body } = await reply;
assert_equals(loaded, expected.loaded, "response loaded");
assert_equals(status, expected.status, "response status");
assert_equals(body, expected.body, "response body");
}
const FrameTestResult = {
SUCCESS: "loaded",
FAILURE: "timeout",
};
async function iframeTest(t, { source, target, expected }) {
// Allows running tests in parallel.
const uuid = token();
const targetUrl = preflightUrl(target);
targetUrl.searchParams.set("file", "iframed.html");
targetUrl.searchParams.set("iframe-uuid", uuid);
targetUrl.searchParams.set(
"file-if-no-preflight-received",
"iframed-no-preflight-received.html",
);
const sourceUrl =
resolveUrl("resources/iframer.html", sourceResolveOptions(source));
sourceUrl.searchParams.set("url", targetUrl);
const messagePromise = futureMessage({
filter: (data) => data.uuid === uuid,
});
const iframe = await appendIframe(t, document, sourceUrl);
// The grandchild frame posts a message iff it loads successfully.
// There exists no interoperable way to check whether an iframe failed to
// load, so we use a timeout.
// See: https://github.com/whatwg/html/issues/125
const result = await Promise.race([
messagePromise.then((data) => data.message),
new Promise((resolve) => {
t.step_timeout(() => resolve("timeout"), 2000 /* ms */);
}),
]);
assert_equals(result, expected);
}
const NavigationTestResult = {
SUCCESS: "success",
FAILURE: "timeout",
};
async function windowOpenTest(t, { source, target, expected }) {
const targetUrl = preflightUrl(target);
targetUrl.searchParams.set("file", "openee.html");
targetUrl.searchParams.set(
"file-if-no-preflight-received",
"no-preflight-received.html",
);
const sourceUrl =
resolveUrl("resources/opener.html", sourceResolveOptions(source));
sourceUrl.searchParams.set("url", targetUrl);
const iframe = await appendIframe(t, document, sourceUrl);
const reply = futureMessage({ source: iframe.contentWindow });
iframe.contentWindow.postMessage({ url: targetUrl.href }, "*");
const result = await Promise.race([
reply,
new Promise((resolve) => {
t.step_timeout(() => resolve("timeout"), 10000 /* ms */);
}),
]);
assert_equals(result, expected);
}
async function windowOpenExistingTest(t, { source, target, expected }) {
const targetUrl = preflightUrl(target);
targetUrl.searchParams.set("file", "openee.html");
targetUrl.searchParams.set(
"file-if-no-preflight-received",
"no-preflight-received.html",
);
const sourceUrl = resolveUrl(
'resources/open-to-existing-window.html', sourceResolveOptions(source));
sourceUrl.searchParams.set("url", targetUrl);
sourceUrl.searchParams.set("token", token());
const iframe = await appendIframe(t, document, sourceUrl);
const reply = futureMessage({ source: iframe.contentWindow });
iframe.contentWindow.postMessage({ url: targetUrl.href }, "*");
const result = await Promise.race([
reply,
new Promise((resolve) => {
t.step_timeout(() => resolve("timeout"), 10000 /* ms */);
}),
]);
assert_equals(result, expected);
}
async function anchorTest(t, { source, target, expected }) {
const targetUrl = preflightUrl(target);
targetUrl.searchParams.set("file", "openee.html");
targetUrl.searchParams.set(
"file-if-no-preflight-received",
"no-preflight-received.html",
);
const sourceUrl =
resolveUrl("resources/anchor.html", sourceResolveOptions(source));
sourceUrl.searchParams.set("url", targetUrl);
const iframe = await appendIframe(t, document, sourceUrl);
const reply = futureMessage({ source: iframe.contentWindow });
iframe.contentWindow.postMessage({ url: targetUrl.href }, "*");
const result = await Promise.race([
reply,
new Promise((resolve) => {
t.step_timeout(() => resolve("timeout"), 10000 /* ms */);
}),
]);
assert_equals(result, expected);
}
// Similar to `iframeTest`, but replaced iframes with fenced frames.
async function fencedFrameTest(t, { source, target, expected }) {
// Allows running tests in parallel.
const target_url = preflightUrl(target);
target_url.searchParams.set("file", "fenced-frame-private-network-access-target.https.html");
target_url.searchParams.set("is-loaded-in-fenced-frame", true);
const frame_loaded_key = token();
const child_frame_target = generateURL(target_url, [frame_loaded_key]);
const source_url =
resolveUrl("resources/fenced-frame-private-network-access.https.html", sourceResolveOptions(source));
source_url.searchParams.set("fenced_frame_url", child_frame_target);
const urn = await generateURNFromFledge(source_url, []);
attachFencedFrame(urn);
// The grandchild fenced frame writes a value to the server iff it loads
// successfully.
const result = (expected == FrameTestResult.SUCCESS) ?
await nextValueFromServer(frame_loaded_key) :
await Promise.race([
nextValueFromServer(frame_loaded_key),
new Promise((resolve) => {
t.step_timeout(() => resolve("timeout"), 10000 /* ms */);
}),
]);
assert_equals(result, expected);
}
const iframeGrandparentTest = ({
name,
grandparentServer,
child,
grandchild,
expected,
}) => promise_test_parallel(async (t) => {
// Allows running tests in parallel.
const grandparentUuid = token();
const childUuid = token();
const grandchildUuid = token();
const grandparentUrl =
resolveUrl("resources/executor.html", grandparentServer);
grandparentUrl.searchParams.set("executor-uuid", grandparentUuid);
const childUrl = preflightUrl(child);
childUrl.searchParams.set("file", "executor.html");
childUrl.searchParams.set("executor-uuid", childUuid);
const grandchildUrl = preflightUrl(grandchild);
grandchildUrl.searchParams.set("file", "iframed.html");
grandchildUrl.searchParams.set("iframe-uuid", grandchildUuid);
const iframe = await appendIframe(t, document, grandparentUrl);
const addChild = (url) => new Promise((resolve) => {
const child = document.createElement("iframe");
child.src = url;
child.addEventListener("load", () => resolve(), { once: true });
document.body.appendChild(child);
});
const grandparentCtx = new RemoteContext(grandparentUuid);
await grandparentCtx.execute_script(addChild, [childUrl]);
// Add a blank grandchild frame inside the child.
// Apply a timeout to this step so that failures at this step do not block the
// execution of other tests.
const childCtx = new RemoteContext(childUuid);
await Promise.race([
childCtx.execute_script(addChild, ["about:blank"]),
new Promise((resolve, reject) => t.step_timeout(
() => reject("timeout adding grandchild"),
2000 /* ms */
)),
]);
const messagePromise = futureMessage({
filter: (data) => data.uuid === grandchildUuid,
});
await grandparentCtx.execute_script((url) => {
const child = window.frames[0];
const grandchild = child.frames[0];
grandchild.location = url;
}, [grandchildUrl]);
// The great-grandchild frame posts a message iff it loads successfully.
// There exists no interoperable way to check whether an iframe failed to
// load, so we use a timeout.
// See: https://github.com/whatwg/html/issues/125
const result = await Promise.race([
messagePromise.then((data) => data.message),
new Promise((resolve) => {
t.step_timeout(() => resolve("timeout"), 2000 /* ms */);
}),
]);
assert_equals(result, expected);
}, name);
const WebsocketTestResult = {
SUCCESS: "open",
// The code is a best guess. It is not yet entirely specified, so it may need
// to be changed in the future based on implementation experience.
FAILURE: "close: code 1006",
};
// Runs a websocket test. Attempts to open a websocket from `source` (in an
// iframe) to `target`, then checks that the result is as `expected`.
//
// Argument shape:
//
// {
// // Required. Passed to `sourceResolveOptions()`.
// source,
//
// // Required.
// target: {
// // Required. Target server.
// server,
// }
//
// // Required. Should be one of the values in `WebsocketTestResult`.
// expected,
// }
//
async function websocketTest(t, { source, target, expected }) {
const sourceUrl =
resolveUrl("resources/socket-opener.html", sourceResolveOptions(source));
const targetUrl = resolveUrl("/echo", target.server);
const iframe = await appendIframe(t, document, sourceUrl);
const reply = futureMessage();
iframe.contentWindow.postMessage(targetUrl.href, "*");
assert_equals(await reply, expected);
}
const WorkerScriptTestResult = {
SUCCESS: { loaded: true },
FAILURE: { error: "unknown error" },
};
function workerScriptUrl(target) {
const url = preflightUrl(target);
url.searchParams.append("body", "postMessage({ loaded: true })")
url.searchParams.append("mime-type", "application/javascript")
return url;
}
async function workerScriptTest(t, { source, target, expected }) {
const sourceUrl =
resolveUrl("resources/worker-fetcher.html", sourceResolveOptions(source));
const targetUrl = workerScriptUrl(target);
const iframe = await appendIframe(t, document, sourceUrl);
const reply = futureMessage();
iframe.contentWindow.postMessage({ url: targetUrl.href }, "*");
const { error, loaded } = await reply;
assert_equals(error, expected.error, "worker error");
assert_equals(loaded, expected.loaded, "response loaded");
}
async function nestedWorkerScriptTest(t, { source, target, expected }) {
const targetUrl = workerScriptUrl(target);
const sourceUrl = resolveUrl(
"resources/worker-fetcher.js", sourceResolveOptions(source));
sourceUrl.searchParams.append("url", targetUrl);
// Iframe must be same-origin with the parent worker.
const iframeUrl = new URL("worker-fetcher.html", sourceUrl);
const iframe = await appendIframe(t, document, iframeUrl);
const reply = futureMessage();
iframe.contentWindow.postMessage({ url: sourceUrl.href }, "*");
const { error, loaded } = await reply;
assert_equals(error, expected.error, "worker error");
assert_equals(loaded, expected.loaded, "response loaded");
}
async function sharedWorkerScriptTest(t, { source, target, expected }) {
const sourceUrl = resolveUrl("resources/shared-worker-fetcher.html",
sourceResolveOptions(source));
const targetUrl = preflightUrl(target);
targetUrl.searchParams.append(
"body", "onconnect = (e) => e.ports[0].postMessage({ loaded: true })")
targetUrl.searchParams.append("mime-type", "application/javascript")
const iframe = await appendIframe(t, document, sourceUrl);
const reply = futureMessage();
iframe.contentWindow.postMessage({ url: targetUrl.href }, "*");
const { error, loaded } = await reply;
assert_equals(error, expected.error, "worker error");
assert_equals(loaded, expected.loaded, "response loaded");
}
// Results that may be expected in tests.
const WorkerFetchTestResult = {
SUCCESS: { status: 200, body: "success" },
FAILURE: { error: "TypeError" },
};
async function workerFetchTest(t, { source, target, expected }) {
const targetUrl = preflightUrl(target);
const sourceUrl =
resolveUrl("resources/fetcher.js", sourceResolveOptions(source));
sourceUrl.searchParams.append("url", targetUrl.href);
const fetcherUrl = new URL("worker-fetcher.html", sourceUrl);
const reply = futureMessage();
const iframe = await appendIframe(t, document, fetcherUrl);
iframe.contentWindow.postMessage({ url: sourceUrl.href }, "*");
const { error, status, body } = await reply;
assert_equals(error, expected.error, "fetch error");
assert_equals(status, expected.status, "response status");
assert_equals(body, expected.body, "response body");
}
async function workerBlobFetchTest(t, { source, target, expected }) {
const targetUrl = preflightUrl(target);
const fetcherUrl = resolveUrl(
'resources/worker-blob-fetcher.html', sourceResolveOptions(source));
const reply = futureMessage();
const iframe = await appendIframe(t, document, fetcherUrl);
iframe.contentWindow.postMessage({ url: targetUrl.href }, "*");
const { error, status, body } = await reply;
assert_equals(error, expected.error, "fetch error");
assert_equals(status, expected.status, "response status");
assert_equals(body, expected.body, "response body");
}
async function sharedWorkerFetchTest(t, { source, target, expected }) {
const targetUrl = preflightUrl(target);
const sourceUrl =
resolveUrl("resources/shared-fetcher.js", sourceResolveOptions(source));
sourceUrl.searchParams.append("url", targetUrl.href);
const fetcherUrl = new URL("shared-worker-fetcher.html", sourceUrl);
const reply = futureMessage();
const iframe = await appendIframe(t, document, fetcherUrl);
iframe.contentWindow.postMessage({ url: sourceUrl.href }, "*");
const { error, status, body } = await reply;
assert_equals(error, expected.error, "fetch error");
assert_equals(status, expected.status, "response status");
assert_equals(body, expected.body, "response body");
}
async function sharedWorkerBlobFetchTest(t, { source, target, expected }) {
const targetUrl = preflightUrl(target);
const fetcherUrl = resolveUrl(
'resources/shared-worker-blob-fetcher.html',
sourceResolveOptions(source));
const reply = futureMessage();
const iframe = await appendIframe(t, document, fetcherUrl);
iframe.contentWindow.postMessage({ url: targetUrl.href }, "*");
const { error, status, body } = await reply;
assert_equals(error, expected.error, "fetch error");
assert_equals(status, expected.status, "response status");
assert_equals(body, expected.body, "response body");
}
async function makeServiceWorkerTest(t, { source, target, expected, fetch_document=false }) {
const bridgeUrl = resolveUrl(
"resources/service-worker-bridge.html",
sourceResolveOptions({ server: source.server }));
const scriptUrl = fetch_document?
resolveUrl("resources/service-worker-fetch-all.js", sourceResolveOptions(source)):
resolveUrl("resources/service-worker.js", sourceResolveOptions(source));
const realTargetUrl = preflightUrl(target);
// Fetch a URL within the service worker's scope, but tell it which URL to
// really fetch.
const targetUrl = new URL("service-worker-proxy", scriptUrl);
targetUrl.searchParams.append("proxied-url", realTargetUrl.href);
const iframe = await appendIframe(t, document, bridgeUrl);
const request = (message) => {
const reply = futureMessage();
iframe.contentWindow.postMessage(message, "*");
return reply;
};
{
const { error, loaded } = await request({
action: "register",
url: scriptUrl.href,
});
assert_equals(error, undefined, "register error");
assert_true(loaded, "response loaded");
}
try {
const { controlled, numControllerChanges } = await request({
action: "wait",
numControllerChanges: 1,
});
assert_equals(numControllerChanges, 1, "controller change");
assert_true(controlled, "bridge script is controlled");
const { error, ok, body } = await request({
action: "fetch",
url: targetUrl.href,
});
assert_equals(error, expected.error, "fetch error");
assert_equals(ok, expected.ok, "response ok");
assert_equals(body, expected.body, "response body");
} finally {
// Always unregister the service worker.
const { error, unregistered } = await request({
action: "unregister",
scope: new URL("./", scriptUrl).href,
});
assert_equals(error, undefined, "unregister error");
assert_true(unregistered, "unregistered");
}
}
|