-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathfilter-tests.js
448 lines (360 loc) · 14.6 KB
/
filter-tests.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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
var fs = require('fs');
var path = require('path');
var crypto = require('crypto');
var assert = require('assert');
var walkSync = require('walk-sync');
var broccoli = require('broccoli');
var MergeTrees = require('broccoli-merge-trees');
var AssetRev = require('../lib/asset-rev');
var sinon = require('sinon');
var builder;
function md5Hash(buf) {
var md5 = crypto.createHash('md5');
md5.update(buf);
return md5.digest('hex');
}
function sha1Hash(buf) {
var sha1 = crypto.createHash('sha1');
sha1.update(buf);
return sha1.digest('hex');
}
function confirmOutput(actualPath, expectedPath, hashFn) {
var actualFiles = walkSync(actualPath);
var expectedFiles = walkSync(expectedPath);
hashFn = hashFn || md5Hash;
assert.deepEqual(actualFiles, expectedFiles, 'files output should be the same as those input');
expectedFiles.forEach(function(relativePath) {
if (relativePath.slice(-1) === '/') { return; }
var actual = fs.readFileSync(path.join(actualPath, relativePath), { encoding: null });
var expected = fs.readFileSync(path.join(expectedPath, relativePath), { encoding: null });
assert(0 === actual.compare(expected), relativePath + ': does not match expected output');
var m = relativePath.match(/-([0-9a-f]+)\./i);
if (m) {
assert.equal(m[1], hashFn(actual), relativePath + ': file hash does not match fingerprint');
}
});
}
function confirmPathPresent(list, pattern) {
return list.some(function(item) {
return item.search(pattern) !== -1;
});
}
describe('broccoli-asset-rev', function() {
afterEach(function() {
if (builder) {
builder.cleanup();
}
});
it('revs the assets and rewrites the source', function(){
var sourcePath = 'tests/fixtures/basic';
var node = AssetRev(sourcePath + '/input', {
extensions: ['js', 'json', 'css', 'png', 'jpg', 'gif', 'map'],
replaceExtensions: ['html', 'js', 'css']
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
confirmOutput(graph.directory, sourcePath + '/output');
});
});
it('revs the assets when it is not the first plugin', function () {
var sourcePath = 'tests/fixtures/basic';
var merged = new MergeTrees([sourcePath + '/input']);
var node = new AssetRev(merged, {
extensions: ['js', 'json', 'css', 'png', 'jpg', 'gif', 'map'],
replaceExtensions: ['html', 'js', 'css']
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
confirmOutput(graph.directory, sourcePath + '/output');
});
});
it('generates a rails-style asset manifest if requested', function () {
var sourcePath = 'tests/fixtures/basic';
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'json', 'css', 'png', 'jpg', 'gif'],
generateRailsManifest: true,
replaceExtensions: ['html', 'js', 'css']
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
var actualFiles = walkSync(graph.directory);
var pathPresent = confirmPathPresent(actualFiles, /manifest-[0-9a-f]{32}\.json/);
assert(pathPresent, "manifest file not found");
});
});
it.only('rewrites template literals with prepends correctly', function(){
var sourcePath = 'tests/fixtures/template-literal';
var node = AssetRev(sourcePath + '/input', {
extensions: ['js', 'json', 'css', 'png', 'jpg', 'gif', 'map'],
prepend: 'https://static.assets.com/ember/'
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
confirmOutput(graph.directory, sourcePath + '/output');
});
});
it("doesn't fingerprint rails-style manifest if excluded", function () {
var sourcePath = 'tests/fixtures/basic';
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'json', 'css', 'png', 'jpg', 'gif'],
exclude: ['manifest.json'],
generateRailsManifest: true,
replaceExtensions: ['html', 'js', 'css']
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
var actualFiles = walkSync(graph.directory);
var pathPresent = confirmPathPresent(actualFiles, /manifest\.json/);
assert(pathPresent, "manifest file not found");
});
});
it('accepts an array of strings as exclude parameter', function () {
var sourcePath = 'tests/fixtures/exclude';
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'css', 'png', 'jpg', 'gif', 'map', 'ttf'],
exclude: ['assets/fonts'],
replaceExtensions: ['html', 'js', 'css']
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
confirmOutput(graph.directory, sourcePath + '/output');
});
});
it('accepts an array of strings as exclude parameter', function () {
var sourcePath = 'tests/fixtures/exclude';
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'css', 'png', 'jpg', 'gif', 'map', 'ttf'],
exclude: ['fonts'],
replaceExtensions: ['html', 'js', 'css']
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
confirmOutput(graph.directory, sourcePath + '/output');
});
});
it("accepts an array of globs as exclude parameter", function() {
var sourcePath = 'tests/fixtures/exclude';
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'css', 'png', 'jpg', 'gif', 'map', 'ttf'],
exclude: ['assets/fonts/**/*'],
replaceExtensions: ['html', 'js', 'css']
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
confirmOutput(graph.directory, sourcePath + '/output');
});
});
it("uses a custom path for the rails-style manifest", function () {
var sourcePath = 'tests/fixtures/basic';
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'json', 'css', 'png', 'jpg', 'gif'],
generateRailsManifest: true,
railsManifestPath: 'otherManifest.json',
replaceExtensions: ['html', 'js', 'css']
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
var actualFiles = walkSync(graph.directory);
var defaultPathNotPresent = !confirmPathPresent(actualFiles, /manifest-[0-9a-f]{32}\.json/);
var pathPresent = confirmPathPresent(actualFiles, /otherManifest\.json/);
assert(pathPresent, "custom manifest file found");
assert(defaultPathNotPresent, "default fingerprinted manifest file not found");
});
});
it('generates an asset map if requested', function () {
var sourcePath = 'tests/fixtures/basic';
var extensions = ['js', 'json', 'css', 'png', 'jpg', 'gif'];
var node = new AssetRev(sourcePath + '/input', {
extensions: extensions,
generateAssetMap: true,
replaceExtensions: ['html', 'js', 'css']
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
var actualFiles = walkSync(graph.directory);
var pathPresent = confirmPathPresent(actualFiles, /assetMap\.json/);
assert(pathPresent, "asset map file not found");
var assetMap = JSON.parse(
fs.readFileSync(
path.join(graph.directory, 'assets/assetMap.json'),
{ encoding: 'utf8'}
)
);
var mappedFiles = actualFiles.filter(function(name) {
if (-1 !== name.lastIndexOf('assetMap.json')) return true;
for (var i = 0; i < extensions.length; ++i) {
if (-1 !== name.lastIndexOf(extensions[i])) {
return fs.statSync(path.join(graph.directory, name)).isFile();
}
}
return false;
});
for (var k in assetMap.assets) {
if (Object.prototype.hasOwnProperty.call(assetMap.assets, k)) {
var assetFile = assetMap.assets[k];
assert(false === /-([0-9a-f]+)\./i.test(k), k + ': mapped asset key contains fingerprinted file?');
var mappedFileIndex = mappedFiles.indexOf(assetFile);
assert(mappedFileIndex >= 0, k + ': unexpected entry in asset map');
mappedFiles.splice(mappedFileIndex, 1);
}
}
assert(0 === mappedFiles.length, 'One or more files were not mentioned in the asset map - ' + mappedFiles.join(', '));
});
});
it("fingerprints the asset map if requested", function () {
var sourcePath = 'tests/fixtures/basic';
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'json', 'css', 'png', 'jpg', 'gif'],
fingerprintAssetMap: true,
generateAssetMap: true,
replaceExtensions: ['html', 'js', 'css']
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
var actualFiles = walkSync(graph.directory);
var pathPresent = confirmPathPresent(actualFiles, /assetMap-[0-9a-f]{32}\.json/);
assert(pathPresent, "fingerprinted asset map file not found");
});
});
it("uses a custom path for the asset map", function () {
var sourcePath = 'tests/fixtures/basic';
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'json', 'css', 'png', 'jpg', 'gif'],
fingerprintAssetMap: true,
generateAssetMap: true,
assetMapPath: 'otherAssetMap.json',
replaceExtensions: ['html', 'js', 'css']
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
var actualFiles = walkSync(graph.directory);
var defaultPathNotPresent = !confirmPathPresent(actualFiles, /assetMap-[0-9a-f]{32}\.json/);
var pathPresent = confirmPathPresent(actualFiles, /otherAssetMap\.json/);
assert(pathPresent, "custom asset map file found");
assert(defaultPathNotPresent, "default fingerprinted asset map file not found");
});
});
it('will prepend if set', function () {
var sourcePath = 'tests/fixtures/prepend';
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'css', 'png', 'jpg', 'gif', 'map'],
replaceExtensions: ['html', 'js', 'css'],
prepend: 'https://foobar.cloudfront.net/'
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
confirmOutput(graph.directory, sourcePath + '/output');
});
});
it('skips fingerprint and prepends when set and customHash is null', function () {
var sourcePath = 'tests/fixtures/prepend';
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'css', 'png', 'jpg', 'gif', 'map'],
replaceExtensions: ['html', 'js', 'css'],
prepend: 'https://foobar.cloudfront.net/',
customHash: null
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
confirmOutput(graph.directory, sourcePath + '/output-customHash-null');
});
});
it('skips fingerprint when customHash is null', function () {
var sourcePath = 'tests/fixtures/customHash-null';
var node = new AssetRev(sourcePath + '/input-output', {
extensions: ['js', 'css', 'png', 'jpg', 'gif', 'map'],
replaceExtensions: ['html', 'js', 'css'],
customHash: null
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
confirmOutput(graph.directory, sourcePath + '/input-output');
});
});
it('replaces the correct match for the file extension', function () {
var sourcePath = 'tests/fixtures/extensions';
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'css', 'png', 'jpg', 'gif', 'woff', 'woff2', 'ttf', 'svg', 'eot'],
replaceExtensions: ['html', 'js' ,'css']
});
builder = new broccoli.Builder(node);
return builder.build().then(function (graph) {
confirmOutput(graph.directory, sourcePath + '/output');
});
});
it('uses customHash string value', function(){
var sourcePath = 'tests/fixtures/customHash-simple';
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'css', 'png', 'jpg', 'gif'],
replaceExtensions: ['html', 'js', 'css'],
customHash: 'test'
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
confirmOutput(graph.directory, sourcePath + '/output');
});
});
it('uses customHash function value', function(){
var sourcePath = 'tests/fixtures/customHash-function';
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'css', 'png', 'jpg', 'gif'],
replaceExtensions: ['html', 'js', 'css'],
customHash: sha1Hash
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
confirmOutput(graph.directory, sourcePath + '/output', sha1Hash);
});
});
it('creates a sprockets-style manifest', function(){
var sourcePath = 'tests/fixtures/manifest';
var date = new Date(Date.UTC(2015, 0, 1, 8));
var original = fs.statSync;
sinon.stub(fs, 'statSync', function (path) {
var stats = original.apply(this, arguments);
stats.mtime = date;
return stats;
});
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'css', 'png', 'jpg', 'gif', 'map'],
replaceExtensions: ['html', 'js', 'css'],
generateRailsManifest: true
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
confirmOutput(graph.directory, sourcePath + '/output');
fs.statSync.restore()
});
});
it('merges the generated manifest with the sprockets manifest', function(){
var sourcePath = 'tests/fixtures/existing-manifest';
var original = fs.statSync;
var date = new Date(Date.UTC(2015, 0, 1, 8));
sinon.stub(fs, 'statSync', function (path) {
var stats = original.apply(this, arguments);
stats.mtime = date;
return stats;
});
var node = new AssetRev(sourcePath + '/input', {
extensions: ['js', 'css', 'png', 'jpg', 'gif', 'map'],
replaceExtensions: ['html', 'js', 'css'],
generateRailsManifest: true
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
confirmOutput(graph.directory, sourcePath + '/output');
fs.statSync.restore()
});
});
it('rewrites the fastboot manifest', function(){
var sourcePath = 'tests/fixtures/fastboot';
var node = AssetRev(sourcePath + '/input', {
extensions: ['js', 'css', 'png', 'jpg', 'gif', 'map'],
replaceExtensions: ['html', 'js', 'css']
});
builder = new broccoli.Builder(node);
return builder.build().then(function(graph) {
confirmOutput(graph.directory, sourcePath + '/output');
});
});
});