-
Notifications
You must be signed in to change notification settings - Fork 832
/
Copy pathget-manifest.js
409 lines (377 loc) · 11.6 KB
/
get-manifest.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
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
/*
Copyright 2018 Google LLC
Use of this source code is governed by an MIT-style
license that can be found in the LICENSE file or at
https://opensource.org/licenses/MIT.
*/
const chai = require('chai');
const chaiAsPromised = require('chai-as-promised');
const chaiMatchPattern = require('chai-match-pattern');
const fse = require('fs-extra');
const upath = require('upath');
const tempy = require('tempy');
chai.use(chaiAsPromised);
chai.use(chaiMatchPattern);
const {expect} = chai;
const {
getManifest,
} = require('../../../packages/workbox-build/build/get-manifest');
const {
WorkboxConfigError,
} = require('../../../packages/workbox-build/build/lib/validate-options');
describe(`[workbox-build] get-manifest.js (End to End)`, function () {
const SRC_DIR = upath.join(__dirname, '..', 'static', 'example-project-1');
const BASE_OPTIONS = {
globDirectory: SRC_DIR,
};
const SUPPORTED_PARAMS = [
'dontCacheBustURLsMatching',
'globDirectory',
'globFollow',
'globIgnores',
'globPatterns',
'globStrict',
'manifestTransforms',
'maximumFileSizeToCacheInBytes',
'modifyURLPrefix',
'templatedURLs',
];
const UNSUPPORTED_PARAMS = [
'cacheId',
'clientsClaim',
'directoryIndex',
'ignoreURLParametersMatching',
'importScripts',
'importWorkboxFrom',
'injectionPointRegexp',
'mode',
'navigateFallback',
'navigateFallbackAllowlist',
'runtimeCaching',
'skipWaiting',
'swSrc',
'swDest',
];
describe('[workbox-build] unsupported parameters', function () {
for (const unsupportedParam of UNSUPPORTED_PARAMS) {
it(`should fail validation when '${unsupportedParam}' is present`, async function () {
const options = Object.assign({}, BASE_OPTIONS);
options[unsupportedParam] = unsupportedParam;
await expect(getManifest(options)).to.eventually.be.rejectedWith(
WorkboxConfigError,
unsupportedParam,
);
});
}
});
describe('[workbox-build] invalid parameter values', function () {
for (const param of SUPPORTED_PARAMS) {
it(`should fail validation when '${param}' is an unexpected value`, async function () {
const options = Object.assign({}, BASE_OPTIONS);
options[param] = () => {};
await expect(getManifest(options)).to.eventually.be.rejectedWith(
WorkboxConfigError,
param,
);
});
}
});
describe('[workbox-build] should generate a valid manifest when properly configured', function () {
it(`should use defaults when all the required parameters are present`, async function () {
const options = Object.assign({}, BASE_OPTIONS);
const {count, size, manifestEntries, warnings} = await getManifest(
options,
);
expect(warnings).to.be.empty;
expect(manifestEntries).to.matchPattern([
{
url: 'index.html',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'page-1.html',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'page-2.html',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'styles/stylesheet-1.css',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'styles/stylesheet-2.css',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'webpackEntry.js',
revision: /^[0-9a-f]{32}$/,
},
]);
expect(count).to.eql(6);
// Line ending differences lead to different sizes on Windows.
expect(size).to.be.oneOf([2782, 2698]);
});
it(`should use defaults when all the required parameters, and 'globPatterns' are present`, async function () {
const options = Object.assign({}, BASE_OPTIONS, {
globPatterns: ['**/*.html', '**/*.js'],
});
const {count, size, manifestEntries, warnings} = await getManifest(
options,
);
expect(warnings).to.be.empty;
expect(manifestEntries).to.matchPattern([
{
url: 'index.html',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'page-1.html',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'page-2.html',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'webpackEntry.js',
revision: /^[0-9a-f]{32}$/,
},
]);
expect(count).to.eql(4);
// Line ending differences lead to different sizes on Windows.
expect(size).to.be.oneOf([2707, 2629]);
});
it(`should use defaults when all the required parameters, and 'globIgnores' are present`, async function () {
const options = Object.assign(
{
globIgnores: ['**/*.html', '**/*.js'],
},
BASE_OPTIONS,
);
const {count, size, manifestEntries, warnings} = await getManifest(
options,
);
expect(warnings).to.be.empty;
expect(manifestEntries).to.matchPattern([
{
url: 'styles/stylesheet-1.css',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'styles/stylesheet-2.css',
revision: /^[0-9a-f]{32}$/,
},
]);
expect(count).to.eql(2);
// Line ending differences lead to different sizes on Windows.
expect(size).to.be.oneOf([69, 75]);
});
it(`should use defaults when all the required parameters, 'globIgnores', and 'globPatterns' are present`, async function () {
const options = Object.assign({}, BASE_OPTIONS, {
globPatterns: ['**/*.css', '**/*.js'],
globIgnores: ['node_modules/**/*', '**/*2*'],
});
const {count, size, manifestEntries, warnings} = await getManifest(
options,
);
expect(warnings).to.be.empty;
expect(manifestEntries).to.matchPattern([
{
url: 'styles/stylesheet-1.css',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'webpackEntry.js',
revision: /^[0-9a-f]{32}$/,
},
]);
expect(count).to.eql(2);
// Line ending differences lead to different sizes on Windows.
expect(size).to.be.oneOf([216, 219]);
});
it(`should use defaults when all the required parameters, and 'maximumFileSizeToCacheInBytes' are present`, async function () {
const options = Object.assign(
{
maximumFileSizeToCacheInBytes: 50,
},
BASE_OPTIONS,
);
const {count, size, manifestEntries, warnings} = await getManifest(
options,
);
expect(warnings).to.have.lengthOf(2);
expect(manifestEntries).to.matchPattern([
{
revision: /^[0-9a-f]{32}$/,
url: 'page-1.html',
},
{
revision: /^[0-9a-f]{32}$/,
url: 'page-2.html',
},
{
revision: /^[0-9a-f]{32}$/,
url: 'styles/stylesheet-1.css',
},
{
revision: /^[0-9a-f]{32}$/,
url: 'styles/stylesheet-2.css',
},
]);
expect(count).to.eql(4);
// Line ending differences lead to different sizes on Windows.
expect(size).to.be.oneOf([101, 109]);
});
it(`should use defaults when all the required parameters, and 'templatedURLs' are present`, async function () {
const url1 = 'url1';
const url2 = 'url2';
const options = Object.assign(
{
templatedURLs: {
[url1]: ['**/*.html'],
[url2]: 'string dependency',
},
},
BASE_OPTIONS,
);
const {count, size, manifestEntries, warnings} = await getManifest(
options,
);
expect(warnings).to.be.empty;
expect(manifestEntries).to.matchPattern([
{
url: 'index.html',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'page-1.html',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'page-2.html',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'styles/stylesheet-1.css',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'styles/stylesheet-2.css',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'webpackEntry.js',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'url1',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'url2',
revision: /^[0-9a-f]{32}$/,
},
]);
expect(count).to.eql(8);
// Line ending differences lead to different sizes on Windows.
expect(size).to.be.oneOf([5162, 5324]);
});
it(`should use defaults when all the required parameters, and 'manifestTransforms' are present`, async function () {
// This filters out all entries unless the url property includes the string '1'.
const transform1 = (entries) => {
const manifest = entries.filter((entry) => {
return entry.url.includes('1');
});
return {manifest};
};
// This modifies all entries to prefix the url property with the string '/prefix/'.
const transform2 = (entries) => {
const manifest = entries.filter((entry) => {
entry.url = `/prefix/${entry.url}`;
return entry;
});
return {manifest};
};
const options = Object.assign(
{
manifestTransforms: [transform1, transform2],
},
BASE_OPTIONS,
);
const {count, size, manifestEntries, warnings} = await getManifest(
options,
);
expect(warnings).to.be.empty;
expect(manifestEntries).to.matchPattern([
{
url: '/prefix/page-1.html',
revision: /^[0-9a-f]{32}$/,
},
{
url: '/prefix/styles/stylesheet-1.css',
revision: /^[0-9a-f]{32}$/,
},
]);
expect(count).to.eql(2);
// Line ending differences lead to different sizes on Windows.
expect(size).to.be.oneOf([50, 54]);
});
it(`should use defaults when all the required parameters are present, with 'globFollow' and symlinks`, async function () {
const globDirectory = tempy.directory();
await fse.ensureSymlink(SRC_DIR, upath.join(globDirectory, 'link'));
const options = Object.assign({}, BASE_OPTIONS, {
globDirectory,
globFollow: false,
});
const {count, size, manifestEntries, warnings} = await getManifest(
options,
);
expect(warnings).to.be.empty;
expect(manifestEntries).to.matchPattern([
{
url: 'link/index.html',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'link/page-1.html',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'link/page-2.html',
revision: /^[0-9a-f]{32}$/,
},
{
url: 'link/webpackEntry.js',
revision: /^[0-9a-f]{32}$/,
},
]);
expect(count).to.eql(4);
// Line ending differences lead to different sizes on Windows.
expect(size).to.be.oneOf([2707, 2629]);
});
});
describe(`[workbox-build] removed options`, function () {
// These were deprecated in v4, and formally removed in v5.
const oldOptionsToValue = {
dontCacheBustUrlsMatching: /ignored/,
ignoreUrlParametersMatching: [/ignored/],
modifyUrlPrefix: {
ignored: 'ignored',
},
templatedUrls: {},
};
for (const [option, value] of Object.entries(oldOptionsToValue)) {
it(`should fail validation when ${option} is used`, async function () {
const options = Object.assign({}, BASE_OPTIONS, {
[option]: value,
});
await expect(getManifest(options)).to.eventually.be.rejectedWith(
WorkboxConfigError,
option,
);
});
}
});
});