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
|
// META: script=/resources/testharness.js
// META: script=/resources/testharnessreport.js
// META: script=/common/dispatcher/dispatcher.js
// META: script=/common/get-host-info.sub.js
// META: script=/common/utils.js
// META: script=/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js
// META: script=/html/browsers/browsing-the-web/back-forward-cache/resources/rc-helper.js
// META: script=./resources/pending_beacon-helper.js
'use strict';
for (const beaconType of BeaconTypes) {
const beaconName = beaconType.name;
parallelPromiseTest(async t => {
const uuid = token();
const url = generateSetBeaconURL(uuid);
// backgroundTimeout = 0s means `beacon should be sent out right on
// entering `hidden` state after navigating away.
const options = {backgroundTimeout: 0};
const helper = new RemoteContextHelper();
// Opens a window with noopener so that BFCache will work.
const rc1 = await helper.addWindow(
/*config=*/ null, /*options=*/ {features: 'noopener'});
// Creates a PendingBeacon in remote which should only be sent on navigating
// away.
await rc1.executeScript((beaconName, url, options) => {
const beacon = beaconName == 'PendingGetBeacon' ?
new PendingGetBeacon(url, options) :
new PendingPostBeacon(url, options);
}, [beaconName, url, options]);
await expectBeacon(uuid, {count: 0});
}, `${beaconName}: does not send without page navigation.`);
parallelPromiseTest(async t => {
const uuid = token();
const url = generateSetBeaconURL(uuid);
// backgroundTimeout = 0s means `beacon should be sent out right on
// entering `hidden` state after navigating away.
const options = {backgroundTimeout: 0};
const helper = new RemoteContextHelper();
// Opens a window with noopener so that BFCache will work.
const rc1 = await helper.addWindow(
/*config=*/ null, /*options=*/ {features: 'noopener'});
// Creates a PendingBeacon in remote which should only be sent on navigating
// away.
await rc1.executeScript((beaconName, url, options) => {
const beacon = beaconName == 'PendingGetBeacon' ?
new PendingGetBeacon(url, options) :
new PendingPostBeacon(url, options);
}, [beaconName, url, options]);
// Navigates away to trigger beacon sending.
rc1.navigateToNew();
await expectBeacon(uuid, {count: 1});
}, `${beaconName}: sends on page entering hidden state (w/ BFCache).`);
parallelPromiseTest(async t => {
const uuid = token();
const url = generateSetBeaconURL(uuid);
// backgroundTimeout = 0s means `beacon should be sent out right on
// entering `hidden` state after navigating away.
const options = {backgroundTimeout: 0};
const helper = new RemoteContextHelper();
// Opens a window without BFCache.
const rc1 = await helper.addWindow();
// Creates a PendingBeacon in remote which should only be sent on navigating
// away.
await rc1.executeScript((beaconName, url, options) => {
const beacon = beaconName == 'PendingGetBeacon' ?
new PendingGetBeacon(url, options) :
new PendingPostBeacon(url, options);
}, [beaconName, url, options]);
// Navigates away to trigger beacon sending.
rc1.navigateToNew();
await expectBeacon(uuid, {count: 1});
}, `${beaconName}: sends on page entering hidden state (w/o BFCache).`);
}
|