blob: c1ca36dc2fa570f9f6eb57f4e9c17fe91a5f4af4 (
plain)
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
|
// Note: Following utility functions are expected to be used from
// session-history-* test files.
async function waitChannelMessage(testName, uid) {
const result = new Promise((resolve) => {
const testChannel = new PrerenderChannel(testName, uid);
testChannel.addEventListener(
"message",
(e) => {
testChannel.close();
resolve(e.data);
},
{ once: true },
);
});
return result;
}
async function runTestInPrerender(testName, uid) {
const result = waitChannelMessage(`test-channel-${testName}`, uid);
// Run test in a new window for test isolation.
const prerender = "session-history-prerender.https.html";
window.open(
`./resources/session-history-initiator.https.html?prerender=${prerender}&testName=${testName}&uid=${uid}`,
"_blank",
"noopener",
);
return result;
}
// This will activate the prerendered context created in runTestInPrerender
// and then run the post-activation variation of `testName`.
async function runTestInActivatedPage(testName, uid) {
const testChannel = new PrerenderChannel(`test-channel-${testName}`, uid);
testChannel.postMessage("activate");
testChannel.close();
return waitChannelMessage(`test-channel-${testName}`, uid);
}
|