-
Notifications
You must be signed in to change notification settings - Fork 302
/
verify_sw_caching.js
72 lines (58 loc) · 2.48 KB
/
verify_sw_caching.js
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
/**
* Copyright 2018 Google Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @author ebidel@ (Eric Bidelman)
*/
/**
* Verify that page resources are being cached by service worker and served
* from the cache on repeat visits.
*/
const chalk = require('chalk');
const puppeteer = require('puppeteer');
const URL = process.env.URL || 'https://www.chromestatus.com/features';
(async() => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
// page.on('console', msg => console.log(chalk.yellow('console'), msg.text()));
console.log(chalk.cyan('Page: 1st load'));
await page.goto(URL);
// Wait for sw ready promise to resolve before moving on. This signals the sw
// has installed and cached assets in the `install` event.
await page.evaluate('navigator.serviceWorker.ready');
// Alternatively, wait for UI toast to popup signalling sw caching is done.
// That's specific to this page's implementation though.
// await page.waitForSelector('chromedash-toast[open]');
// Capture requests during 2nd load.
const allRequests = new Map();
page.on('request', req => {
allRequests.set(req.url(), req);
});
// Could also go offline and verify requests don't 404.
// await page.setOfflineMode(true);
// Reload page to pick up any runtime caching done by the service worker.
console.log(chalk.cyan('Page: 2nd load'));
await page.reload({waitUntil: 'networkidle0'});
// Assert the page has a SW.
console.assert(await page.evaluate('navigator.serviceWorker.controller'),
'page has active service worker');
console.log(chalk.cyan(`Requests made by ${URL}`),
`(${chalk.green('✔ cached by sw')}, ${chalk.red('✕ not cached')})`);
Array.from(allRequests.values()).forEach(req => {
const NUM_CHARS = 75;
const url = req.url().length > NUM_CHARS ? req.url().slice(0, NUM_CHARS) + '...' : req.url();
console.log(url, req.response().fromServiceWorker() ? chalk.green('✔') : chalk.red('✕'));
});
await browser.close();
})();