-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
Copy pathindex.js
607 lines (508 loc) · 18.2 KB
/
index.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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
jest.mock(`fs-extra`, () => {
return {
existsSync: () => false,
copy: jest.fn(),
ensureDir: jest.fn(),
}
})
const Remark = require(`remark`)
const fsExtra = require(`fs-extra`)
const path = require(`path`)
const plugin = require(`../`)
const remark = new Remark().data(`settings`, {
commonmark: true,
footnotes: true,
pedantic: true,
})
const imageURL = markdownAST => markdownAST.children[0].children[0].url
describe(`gatsby-remark-copy-linked-files`, () => {
afterEach(() => {
fsExtra.copy.mockReset()
})
const parentDir = `/`
const markdownNode = {
parent: {},
}
const getNode = () => {
return {
dir: parentDir,
internal: {
type: `File`,
},
}
}
const getFiles = filePath => {
const absolutePath = path.posix.normalize(parentDir + filePath)
return [
{
absolutePath,
name: path.basename(absolutePath, path.extname(absolutePath)),
internal: {
contentDigest: `some-hash`,
},
extension: filePath.split(`.`).pop().trim(),
},
]
}
describe(`images`, () => {
;[`svg`, `gif`].forEach(extension => {
it(`can copy .${extension}`, async () => {
const path = `images/sample-image.${extension}`
const markdownAST = remark.parse(`![some image](${path})`)
await plugin({
files: getFiles(path),
markdownAST,
markdownNode,
getNode,
})
expect(fsExtra.copy).toHaveBeenCalledWith(
expect.any(String),
expect.any(String)
)
})
})
;[`png`, `jpg`, `jpeg`].forEach(extension => {
it(`ignores images with .${extension}`, async () => {
const path = `images/sample-image.${extension}`
const markdownAST = remark.parse(`![some image](${path})`)
await plugin({
files: getFiles(path),
markdownAST,
markdownNode,
getNode,
})
expect(fsExtra.copy).not.toHaveBeenCalled()
})
})
})
it(`can copy reference-style images`, async () => {
const path = `images/sample-image.gif`
const markdownAST = remark.parse(`![sample][1]\n\n[1]: ${path}`)
await plugin({ files: getFiles(path), markdownAST, markdownNode, getNode })
expect(fsExtra.copy).toHaveBeenCalled()
})
it(`can copy file links`, async () => {
const path = `files/sample-file.txt`
const markdownAST = remark.parse(`[path to file](${path})`)
await plugin({ files: getFiles(path), markdownAST, markdownNode, getNode })
expect(fsExtra.copy).toHaveBeenCalled()
})
it(`can copy HTML file links`, async () => {
const path = `files/sample-file.txt`
const markdownAST = remark.parse(`<a href="${path}">link to file</a>`)
await plugin({ files: getFiles(path), markdownAST, markdownNode, getNode })
expect(fsExtra.copy).toHaveBeenCalled()
})
it(`can copy HTML images`, async () => {
const path = `images/sample-image.gif`
const markdownAST = remark.parse(`<img src="${path}">`)
await plugin({ files: getFiles(path), markdownAST, markdownNode, getNode })
expect(fsExtra.copy).toHaveBeenCalled()
})
it(`can copy JSX images`, async () => {
const mdx = require(`remark-mdx`)
const path = `images/sample-image.gif`
const markdownAST = remark().use(mdx).parse(`<img src="${path}" />`)
await plugin({
files: getFiles(path),
markdownAST,
markdownNode,
getNode,
})
expect(fsExtra.copy).toHaveBeenCalled()
})
it(`can copy HTML multiple images`, async () => {
const path1 = `images/sample-image.gif`
const path2 = `images/another-sample-image.gif`
const markdownAST = remark.parse(
`<div><img src="${path1}"><img src="${path2}"></div>`
)
await plugin({
files: [...getFiles(path1), ...getFiles(path2)],
markdownAST,
markdownNode,
getNode,
})
expect(fsExtra.copy).toHaveBeenCalledTimes(2)
})
it(`can copy HTML multiple images when some are in ignore extensions`, async () => {
const path1 = `images/sample-image.jpg`
const path2 = `images/another-sample-image.gif`
const markdownAST = remark.parse(
`<div><img src="${path1}"><img src="${path2}"></div>`
)
await plugin({
files: [...getFiles(path1), ...getFiles(path2)],
markdownAST,
markdownNode,
getNode,
})
expect(fsExtra.copy).toHaveBeenCalledTimes(1)
})
it(`can copy HTML videos`, async () => {
const path = `videos/sample-video.mp4`
const markdownAST = remark.parse(
`<video controls="controls" autoplay="true" loop="true">\n<source type="video/mp4" src="${path}"></source>\n<p>Your browser does not support the video element.</p>\n</video>`
)
await plugin({ files: getFiles(path), markdownAST, markdownNode, getNode })
expect(fsExtra.copy).toHaveBeenCalled()
})
it(`can copy HTML videos from video elements with the src attribute`, async () => {
const path = `videos/sample-video.mp4`
const markdownAST = remark.parse(
`<video controls="controls" autoplay="true" src="${path}">\n<p>Your browser does not support the video element.</p>\n</video>`
)
await plugin({ files: getFiles(path), markdownAST, markdownNode, getNode })
expect(fsExtra.copy).toHaveBeenCalled()
})
it(`can copy HTML images from video elements with the poster attribute `, async () => {
const videoPath = `videos/sample-video.mp4`
const posterPath = `images/sample-image.jpg`
const markdownAST = remark.parse(
`<video controls="controls" autoplay="true" src="${videoPath}" poster="${posterPath}">\n<p>Your browser does not support the video element.</p>\n</video>`
)
await plugin({
files: [...getFiles(videoPath), ...getFiles(posterPath)],
markdownAST,
markdownNode,
getNode,
})
expect(fsExtra.copy).toHaveBeenCalledTimes(2)
})
it(`can copy flash from object elements with the value attribute`, async () => {
const path = `myMovie.swf`
const markdownAST = remark.parse(
`<object type="application/x-shockwave-flash">\n<param name="movie" value="${path}" />\n</object>`
)
await plugin({ files: getFiles(path), markdownAST, markdownNode, getNode })
expect(fsExtra.copy).toHaveBeenCalled()
})
it(`can copy HTML videos when some siblings are in ignore extensions`, async () => {
const path = `videos/sample-video.mp4`
const path1 = `images/sample-image.jpg`
const markdownAST = remark.parse(
`<div><img src="${path1}"><video controls="controls" autoplay="true" loop="true">\n<source type="video/mp4" src="${path}"></source>\n<p>Your browser does not support the video element.</p>\n</video></div>`
)
await plugin({ files: getFiles(path), markdownAST, markdownNode, getNode })
expect(fsExtra.copy).toHaveBeenCalled()
})
it(`leaves HTML nodes alone`, async () => {
const openingTag = `<a href="http://example.com/">`
const markdownAST = remark.parse(`${openingTag}Link to example.com</a>`)
await plugin({
markdownAST,
markdownNode,
getNode,
}).then(() => {
// we expect the resulting markdownAST to consist
// of a paragraph with three children:
// openingTag, text, and closing tag
expect(markdownAST.children[0].children[0].value).toBe(openingTag)
})
})
it(`leaves absolute file paths alone`, async () => {
const path = `https://google.com/images/sample-image.gif`
const markdownAST = remark.parse(`![some absolute image](${path})`)
await plugin({ files: getFiles(path), markdownAST, markdownNode, getNode })
expect(fsExtra.copy).not.toHaveBeenCalled()
})
it(`do nothing if dir is not found`, async () => {
const getNode = () => {
return {
internal: {
type: `Node`,
},
}
}
const path = `images/sample-image.gif`
const markdownAST = remark.parse(`![sample][1]\n\n[1]: ${path}`)
await plugin({ files: getFiles(path), markdownAST, markdownNode, getNode })
expect(fsExtra.copy).not.toHaveBeenCalled()
})
describe(`respects pathPrefix`, () => {
const imageName = `sample-image`
const imageRelativePath = `images/${imageName}.svg`
const imagePath = parentDir + imageRelativePath
// pathPrefix passed to plugins already combine pathPrefix and assetPrefix
it(`relative pathPrefix (no assetPrefix)`, async () => {
const pathPrefix = `/path-prefix`
const markdownAST = remark.parse(`![some image](${imageRelativePath})`)
const expectedNewPath = path.posix.join(
process.cwd(),
`public`,
`some-hash`,
`sample-image.svg`
)
await plugin({
files: getFiles(imagePath),
markdownAST,
markdownNode,
getNode,
pathPrefix,
})
expect(imageURL(markdownAST)).toEqual(
`/path-prefix/some-hash/sample-image.svg`
)
expect(fsExtra.copy).toHaveBeenCalledWith(imagePath, expectedNewPath)
})
it(`absolute pathPrefix (with assetPrefix, empty base path prefix)`, async () => {
const pathPrefix = `https://cdn.mysiteassets.com`
const markdownAST = remark.parse(`![some image](${imageRelativePath})`)
const expectedNewPath = path.posix.join(
process.cwd(),
`public`,
`some-hash`,
`sample-image.svg`
)
await plugin({
files: getFiles(imagePath),
markdownAST,
markdownNode,
getNode,
pathPrefix,
})
expect(imageURL(markdownAST)).toEqual(
`https://cdn.mysiteassets.com/some-hash/sample-image.svg`
)
expect(fsExtra.copy).toHaveBeenCalledWith(imagePath, expectedNewPath)
})
it(`absolute pathPrefix (with assetPrefix, and non-empty base path prefix)`, async () => {
const pathPrefix = `https://cdn.mysiteassets.com/path-prefix`
const markdownAST = remark.parse(`![some image](${imageRelativePath})`)
const expectedNewPath = path.posix.join(
process.cwd(),
`public`,
`some-hash`,
`sample-image.svg`
)
await plugin({
files: getFiles(imagePath),
markdownAST,
markdownNode,
getNode,
pathPrefix,
})
expect(imageURL(markdownAST)).toEqual(
`https://cdn.mysiteassets.com/path-prefix/some-hash/sample-image.svg`
)
expect(fsExtra.copy).toHaveBeenCalledWith(imagePath, expectedNewPath)
})
})
describe(`options.destinationDir`, () => {
const imageName = `sample-image`
const imageRelativePath = `images/${imageName}.gif`
const imagePath = parentDir + imageRelativePath
it(`throws an error if the destination supplied by destinationDir points outside of the root dir`, async () => {
const markdownAST = remark.parse(
`![some absolute image](${imageRelativePath})`
)
const invalidDestinationDir = `../destination`
expect.assertions(2)
return plugin(
{ files: getFiles(imagePath), markdownAST, markdownNode, getNode },
{
destinationDir: invalidDestinationDir,
}
).catch(e => {
expect(e).toEqual(expect.stringContaining(invalidDestinationDir))
expect(fsExtra.copy).not.toHaveBeenCalled()
})
})
it(`throws an error if the destination supplied by the destinationDir function points outside of the root dir`, async () => {
const markdownAST = remark.parse(
`![some absolute image](${imageRelativePath})`
)
const invalidDestinationDir = `../destination`
const customDestinationDir = f =>
`../destination/${f.hash}/${f.name}/${f.notexist}`
expect.assertions(2)
return plugin(
{ files: getFiles(imagePath), markdownAST, markdownNode, getNode },
{
destinationDir: customDestinationDir,
}
).catch(e => {
expect(e).toEqual(expect.stringContaining(invalidDestinationDir))
expect(fsExtra.copy).not.toHaveBeenCalled()
})
})
it(`copies file to the destination supplied by destinationDir`, async () => {
const markdownAST = remark.parse(
`![some absolute image](${imageRelativePath})`
)
const validDestinationDir = `path/to/dir`
const fileLocationPart = `some-hash/${imageName}.gif`
const expectedNewPath = path.posix.join(
process.cwd(),
`public`,
validDestinationDir,
fileLocationPart
)
expect.assertions(3)
await plugin(
{ files: getFiles(imagePath), markdownAST, markdownNode, getNode },
{
destinationDir: validDestinationDir,
}
).then(v => {
expect(v).toBeDefined()
expect(fsExtra.copy).toHaveBeenCalledWith(imagePath, expectedNewPath)
expect(imageURL(markdownAST)).toEqual(
`/path/to/dir/${fileLocationPart}`
)
})
})
it(`copies file to the destination supplied by the destinationDir function`, async () => {
const markdownAST = remark.parse(
`![some absolute image](${imageRelativePath})`
)
const customDestinationDir = f => `foo/${f.hash}--bar`
const expectedDestination = `foo/some-hash--bar.gif`
expect.assertions(3)
await plugin(
{ files: getFiles(imagePath), markdownAST, markdownNode, getNode },
{ destinationDir: customDestinationDir }
).then(v => {
const expectedNewPath = path.posix.join(
...[process.cwd(), `public`, expectedDestination]
)
expect(v).toBeDefined()
expect(fsExtra.copy).toHaveBeenCalledWith(imagePath, expectedNewPath)
expect(imageURL(markdownAST)).toEqual(`/${expectedDestination}`)
})
})
it(`copies file to the destination supplied by destinationDir (with pathPrefix)`, async () => {
const markdownAST = remark.parse(
`![some absolute image](${imageRelativePath})`
)
const pathPrefix = `/blog`
const validDestinationDir = `path/to/dir`
const fileLocationPart = `some-hash/${imageName}.gif`
const expectedNewPath = path.posix.join(
process.cwd(),
`public`,
validDestinationDir,
fileLocationPart
)
expect.assertions(3)
await plugin(
{
files: getFiles(imagePath),
markdownAST,
markdownNode,
pathPrefix,
getNode,
},
{
destinationDir: validDestinationDir,
}
).then(v => {
expect(v).toBeDefined()
expect(fsExtra.copy).toHaveBeenCalledWith(imagePath, expectedNewPath)
expect(imageURL(markdownAST)).toEqual(
`${pathPrefix}/path/to/dir/${fileLocationPart}`
)
})
})
it(`copies file to the destination supplied by the destinationDir function (with pathPrefix)`, async () => {
const markdownAST = remark.parse(
`![some absolute image](${imageRelativePath})`
)
const pathPrefix = `/blog`
const customDestinationDir = f => `hello${f.name}123`
const expectedDestination = `hello${imageName}123.gif`
expect.assertions(3)
await plugin(
{
files: getFiles(imagePath),
markdownAST,
markdownNode,
pathPrefix,
getNode,
},
{ destinationDir: customDestinationDir }
).then(v => {
const expectedNewPath = path.posix.join(
...[process.cwd(), `public`, expectedDestination]
)
expect(v).toBeDefined()
expect(fsExtra.copy).toHaveBeenCalledWith(imagePath, expectedNewPath)
expect(imageURL(markdownAST)).toEqual(
`${pathPrefix}/${expectedDestination}`
)
})
})
it(`copies file to the destination supplied by the destinationDir function (using returned absolutePath)`, async () => {
const imgName = `sample-image`
const imgRelPath = `images/nested-dir/${imgName}.gif`
const imgPath = parentDir + imgRelPath
const markdownAST = remark.parse(`![some absolute image](${imgRelPath})`)
const customDestinationDir = f =>
`${path.dirname(f.absolutePath)}/${f.name}`
const expectedDestination = `images/nested-dir/sample-image.gif`
expect.assertions(3)
await plugin(
{ files: getFiles(imgPath), markdownAST, markdownNode, getNode },
{ destinationDir: customDestinationDir }
).then(v => {
const expectedNewPath = path.posix.join(
...[process.cwd(), `public`, expectedDestination]
)
expect(v).toBeDefined()
expect(fsExtra.copy).toHaveBeenCalledWith(imgPath, expectedNewPath)
expect(imageURL(markdownAST)).toEqual(`/${expectedDestination}`)
})
})
it(`copies file to the root dir when destinationDir is not supplied`, async () => {
const markdownAST = remark.parse(
`![some absolute image](${imageRelativePath})`
)
const expectedNewPath = path.posix.join(
process.cwd(),
`public`,
`/some-hash/${imageName}.gif`
)
expect.assertions(3)
await plugin({
files: getFiles(imagePath),
markdownAST,
markdownNode,
getNode,
}).then(v => {
expect(v).toBeDefined()
expect(fsExtra.copy).toHaveBeenCalledWith(imagePath, expectedNewPath)
expect(imageURL(markdownAST)).toEqual(`/some-hash/${imageName}.gif`)
})
})
})
describe(`options.ignoreFileExtensions`, () => {
const pngImagePath = `images/sample-image.png`
const jpgImagePath = `images/sample-image.jpg`
const jpegImagePath = `images/sample-image.jpeg`
const bmpImagePath = `images/sample-image.bmp`
const tiffImagePath = `images/sample-image.tiff`
it(`optionally copies PNG, JPG/JPEG, BPM and TIFF files`, async () => {
const markdownAST = remark.parse(
`![PNG](${pngImagePath}) ![JPG](${jpgImagePath}) ![JPEG](${jpegImagePath}) ![BPM](${bmpImagePath}) ![TIFF](${tiffImagePath})`
)
await plugin(
{
files: [
...getFiles(pngImagePath),
...getFiles(jpgImagePath),
...getFiles(jpegImagePath),
...getFiles(bmpImagePath),
...getFiles(tiffImagePath),
],
markdownAST,
markdownNode,
getNode,
},
{
ignoreFileExtensions: [],
}
)
expect(fsExtra.copy).toHaveBeenCalledTimes(5)
})
})
})