-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
test.js
384 lines (318 loc) · 11.2 KB
/
test.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
/* global describe, it, before, after, beforeEach, afterEach */
const assert = require('assert')
const cheerio = require('cheerio')
const fancyLog = require('fancy-log')
const finalhandler = require('finalhandler')
const http = require('http')
const PluginError = require('plugin-error')
const puppeteer = require('puppeteer')
const sandbox = require('sinon').createSandbox()
const serveStatic = require('serve-static')
const svgstore = require('./index')
const Vinyl = require('vinyl')
describe('gulp-svgstore usage test', () => {
let browser
let port
let page
const server = http.createServer((req, res) => {
serveStatic('test')(req, res, finalhandler(req, res))
})
before(() => Promise.all([
puppeteer.launch()
.then((b) => { browser = b })
.then(() => browser.newPage())
.then((p) => { page = p })
, new Promise((resolve) => {
server.listen(() => {
port = server.address().port
resolve()
})
})
]))
after(() => Promise.all([
browser.close()
, new Promise((resolve) => {
server.close()
server.unref()
resolve()
})
]))
it('stored image should equal original svg', () => {
let screenshot1
return page.goto('http://localhost:' + port + '/inline-svg.html')
.then(() => page.evaluate(() => document.title))
.then((title) => {
assert.strictEqual(title, 'gulp-svgstore', 'Test page is not loaded')
})
.then(() => page.screenshot())
.then((data) => { screenshot1 = data })
.then(() => page.goto('http://localhost:' + port + '/dest/inline-svg.html'))
.then(() => page.screenshot())
.then((screenshot2) => {
assert(screenshot1.toString() === screenshot2.toString(), 'Screenshots are different')
})
})
})
describe('gulp-svgstore unit test', () => {
beforeEach(() => { sandbox.stub(fancyLog, 'info') })
afterEach(() => { sandbox.restore() })
it('should not create empty svg file', (done) => {
const stream = svgstore()
let isEmpty = true
stream.on('data', () => { isEmpty = false })
stream.on('end', () => {
assert.ok(isEmpty, 'Created empty svg')
done()
})
stream.end()
})
it('should correctly merge svg files', (done) => {
const stream = svgstore({ inlineSvg: true })
stream.on('data', (file) => {
const result = file.contents.toString()
const target =
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">' +
'<symbol id="circle" viewBox="0 0 4 4" preserveAspectRatio="xMinYMid meet"><circle cx="2" cy="2" r="1"/></symbol>' +
'<symbol id="square"><rect x="1" y="1" width="2" height="2"/></symbol>' +
'</svg>'
assert.strictEqual(result, target)
done()
})
stream.write(new Vinyl({
contents: Buffer.from('<svg viewBox="0 0 4 4" preserveAspectRatio="xMinYMid meet"><circle cx="2" cy="2" r="1"/></svg>')
, path: 'circle.svg'
}))
stream.write(new Vinyl({
contents: Buffer.from('<svg><rect x="1" y="1" width="2" height="2"/></svg>')
, path: 'square.svg'
}))
stream.end()
})
it('should not include null or invalid files', (done) => {
const stream = svgstore({ inlineSvg: true })
stream.on('data', (file) => {
const result = file.contents.toString()
const target =
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">' +
'<symbol id="circle" viewBox="0 0 4 4"><circle cx="2" cy="2" r="1"/></symbol>' +
'</svg>'
assert.strictEqual(result, target)
done()
})
stream.write(new Vinyl({
contents: Buffer.from('<svg viewBox="0 0 4 4"><circle cx="2" cy="2" r="1"/></svg>')
, path: 'circle.svg'
}))
stream.write(new Vinyl({
contents: null
, path: 'square.svg'
}))
stream.write(new Vinyl({
contents: Buffer.from('not an svg')
, path: 'square.svg'
}))
stream.end()
})
it('should merge defs to parent svg file', (done) => {
const stream = svgstore({ inlineSvg: true })
stream.on('data', (file) => {
const result = file.contents.toString()
const target =
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">' +
'<defs><circle id="circ" cx="2" cy="2" r="1"/></defs>' +
'<symbol id="circle" viewBox="0 0 4 4"/>' +
'</svg>'
assert.strictEqual(result, target)
done()
})
stream.write(new Vinyl({
contents: Buffer.from(
'<svg viewBox="0 0 4 4">' +
'<defs><circle id="circ" cx="2" cy="2" r="1"/></svg></defs>' +
'<circle cx="2" cy="2" r="1"/>' +
'</svg>'
)
, path: 'circle.svg'
}))
stream.end()
})
it('should emit error if files have the same name', (done) => {
const stream = svgstore()
stream.on('error', (error) => {
assert.ok(error instanceof PluginError)
assert.strictEqual(error.message, 'File name should be unique: circle')
done()
})
stream.write(new Vinyl({ contents: Buffer.from('<svg></svg>'), path: 'circle.svg' }))
stream.write(new Vinyl({ contents: Buffer.from('<svg></svg>'), path: 'circle.svg' }))
stream.end()
})
it('should generate result filename based on base path of the first file', (done) => {
const stream = svgstore()
stream.on('data', (file) => {
assert.strictEqual(file.relative, 'icons.svg')
done()
})
stream.write(new Vinyl({
contents: Buffer.from('<svg/>')
, path: 'src/icons/circle.svg'
, base: 'src/icons'
}))
stream.write(new Vinyl({
contents: Buffer.from('<svg/>')
, path: 'src2/icons2/square.svg'
, base: 'src2/icons2'
}))
stream.end()
})
it('should generate svgstore.svg if base path of the 1st file is dot', (done) => {
const stream = svgstore()
stream.on('data', (file) => {
assert.strictEqual(file.relative, 'svgstore.svg')
done()
})
stream.write(new Vinyl({
contents: Buffer.from('<svg/>')
, path: 'circle.svg'
, base: '.'
}))
stream.write(new Vinyl({
contents: Buffer.from('<svg/>')
, path: 'src2/icons2/square.svg'
, base: 'src2'
}))
stream.end()
})
it('should include all namespace into final svg', (done) => {
const stream = svgstore()
stream.on('data', (file) => {
const $resultSvg = cheerio.load(file.contents.toString(), { xmlMode: true })('svg')
assert.strictEqual($resultSvg.attr('xmlns'), 'http://www.w3.org/2000/svg')
assert.strictEqual($resultSvg.attr('xmlns:xlink'), 'http://www.w3.org/1999/xlink')
done()
})
stream.write(new Vinyl({
contents: Buffer.from(
'<svg xmlns="http://www.w3.org/2000/svg">' +
'<rect width="1" height="1"/>' +
'</svg>')
, path: 'rect.svg'
}))
stream.write(new Vinyl({
contents: Buffer.from(
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"' +
'viewBox="0 0 50 50">' +
'<rect id="a" width="50" height="10"/>' +
'<use y="20" xlink:href="#a"/>' +
'<use y="40" xlink:href="#a"/>' +
'</svg>')
, path: 'sandwich.svg'
}))
stream.end()
})
it('should not include duplicate namespaces into final svg', (done) => {
const stream = svgstore({ inlineSvg: true })
stream.on('data', (file) => {
assert.strictEqual(
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">' +
'<symbol id="rect"/><symbol id="sandwich"/></svg>',
file.contents.toString()
)
done()
})
stream.write(new Vinyl({
contents: Buffer.from(
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"/>'
)
, path: 'rect.svg'
}))
stream.write(new Vinyl({
contents: Buffer.from(
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"/>'
)
, path: 'sandwich.svg'
}))
stream.end()
})
it('should transfer svg presentation attributes to a wrapping g element', (done) => {
const stream = svgstore({ inlineSvg: true })
const attrs = 'stroke="currentColor" stroke-width="2" stroke-linecap="round" style="fill:#0000"';
stream.on('data', (file) => {
assert.strictEqual(
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">' +
`<symbol id="rect"><g ${attrs}><rect width="1" height="1"/></g></symbol></svg>`,
file.contents.toString()
)
done()
})
stream.write(new Vinyl({
contents: Buffer.from(
`<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" ${attrs}>` +
'<rect width="1" height="1"/></svg>'
)
, path: 'rect.svg'
}))
stream.end()
})
it('Warn about duplicate namespace value under different name', (done) => {
const stream = svgstore()
stream.on('data', () => {
assert.strictEqual(
'Same namespace value under different names : xmlns:lk and xmlns:xlink.\n' +
'Keeping both.',
fancyLog.info.getCall(0).args[0]
)
done()
})
stream.write(new Vinyl({
contents: Buffer.from(
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:lk="http://www.w3.org/1999/xlink">' +
'<rect id="a" width="1" height="1"/>' +
'<use y="2" lk:href="#a"/>' +
'</svg>')
, path: 'rect.svg'
}))
stream.write(new Vinyl({
contents: Buffer.from(
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"' +
'viewBox="0 0 50 50">' +
'<rect id="a" width="50" height="10"/>' +
'<use y="20" xlink:href="#a"/>' +
'<use y="40" xlink:href="#a"/>' +
'</svg>')
, path: 'sandwich.svg'
}))
stream.end()
})
it('Strong warn about duplicate namespace name with different value', (done) => {
const stream = svgstore()
stream.on('data', () => {
assert.strictEqual(
'xmlns:xlink namespace appeared multiple times with different value. ' +
'Keeping the first one : "http://www.w3.org/1998/xlink".\n' +
'Each namespace must be unique across files.'
, fancyLog.info.getCall(0).args[0]
)
done()
})
stream.write(new Vinyl({
contents: Buffer.from(
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1998/xlink">' +
'<rect id="a" width="1" height="1"/>' +
'<use y="2" xlink:href="#a"/>' +
'</svg>')
, path: 'rect.svg'
}))
stream.write(new Vinyl({
contents: Buffer.from(
'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"' +
'viewBox="0 0 50 50">' +
'<rect id="a" width="50" height="10"/>' +
'<use y="20" xlink:href="#a"/>' +
'<use y="40" xlink:href="#a"/>' +
'</svg>')
, path: 'sandwich.svg'
}))
stream.end()
})
})