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
|
'use strict';
test(() => {
assert_throws_js(TypeError, () => fetchLater());
}, `fetchLater() cannot be called without request.`);
test(() => {
assert_throws_js(TypeError, () => fetchLater('http://www.google.com'));
assert_throws_js(TypeError, () => fetchLater('file://tmp'));
assert_throws_js(TypeError, () => fetchLater('ssh://example.com'));
assert_throws_js(TypeError, () => fetchLater('wss://example.com'));
assert_throws_js(TypeError, () => fetchLater('about:blank'));
assert_throws_js(TypeError, () => fetchLater(`javascript:alert('');`));
}, `fetchLater() throws TypeError on non-HTTPS URL.`);
test(() => {
assert_throws_js(
RangeError,
() => fetchLater('https://www.google.com', {activateAfter: -1}));
}, `fetchLater() throws RangeError on negative activateAfter.`);
test(() => {
const result = fetchLater('/');
assert_false(result.activated);
}, `fetchLater()'s return tells the deferred request is not yet sent.`);
test(() => {
const result = fetchLater('/');
assert_throws_js(TypeError, () => result.activated = true);
}, `fetchLater() throws TypeError when mutating its returned state.`);
test(() => {
const controller = new AbortController();
// Immediately aborts the controller.
controller.abort();
assert_throws_dom(
'AbortError', () => fetchLater('/', {signal: controller.signal}));
}, `fetchLater() throws AbortError when its initial abort signal is aborted.`);
test(() => {
const controller = new AbortController();
const result = fetchLater('/', {signal: controller.signal});
assert_false(result.activated);
controller.abort();
assert_false(result.activated);
}, `fetchLater() does not throw error when it is aborted before sending.`);
|