forked from w0rm/gulp-svgstore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
414 lines (325 loc) · 11 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
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
/* global describe, it, before, after, beforeEach, afterEach */
var username = process.env.SAUCE_USERNAME || 'SAUCE_USERNAME'
var accessKey = process.env.SAUCE_ACCESS_KEY || 'SAUCE_ACCESS_KEY'
var tunnelIdentifier = process.env.TRAVIS_JOB_NUMBER
var port = process.env.PORT || null
var wd = require('wd')
var assert = require('assert')
var Q = wd.Q
var svgstore = require('./index')
var cheerio = require('cheerio')
var sinon = require('sinon')
var finalhandler = require('finalhandler')
var serveStatic = require('serve-static')
var http = require('http')
var sandbox = sinon.sandbox.create()
var fancyLog = require('fancy-log')
var PluginError = require('plugin-error')
var Vinyl = require('vinyl')
describe('gulp-svgstore usage test', function () {
this.timeout(10 * 1000)
var browser
var serve = serveStatic('test')
var server = http.createServer(function(req, res){
var done = finalhandler(req, res)
serve(req, res, done)
})
before(function () {
browser = wd.promiseChainRemote('ondemand.saucelabs.com', 80, username, accessKey)
return Q.all([
browser.init({
browserName: 'chrome'
, 'tunnel-identifier': tunnelIdentifier
}),
Q.Promise(function (resolve) {
if (port) {
server.listen(port, function () {
resolve()
})
} else {
server.listen(function () {
port = server.address().port
resolve()
})
}
})
])
})
after(function () {
return Q.all([
browser.quit().then(function(){}),
Q.Promise(function (resolve) {
server.close()
server.unref()
resolve()
})
])
})
it('stored image should equal original svg', function () {
var screenshot1
return browser
.get('http://localhost:' + port + '/inline-svg.html')
.title()
.then(function (title) {
assert.equal(title, 'gulp-svgstore', 'Test page is not loaded')
})
.takeScreenshot()
.then(function (data) {
screenshot1 = data
})
.get('http://localhost:' + port + '/dest/inline-svg.html')
.takeScreenshot()
.then(function (screenshot2) {
assert(screenshot1.toString() === screenshot2.toString(), 'Screenshots are different')
})
})
})
describe('gulp-svgstore unit test', function () {
beforeEach(function () {
sandbox.stub(fancyLog, 'info')
})
afterEach(function () {
sandbox.restore()
})
it('should not create empty svg file', function (done) {
var stream = svgstore()
var isEmpty = true
stream.on('data', function () {
isEmpty = false
})
stream.on('end', function () {
assert.ok(isEmpty, 'Created empty svg')
done()
})
stream.end()
})
it('should correctly merge svg files', function (done) {
var stream = svgstore({ inlineSvg: true })
stream.on('data', function (file) {
var result = file.contents.toString()
var 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.equal( 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', function (done) {
var stream = svgstore({ inlineSvg: true })
stream.on('data', function (file) {
var result = file.contents.toString()
var 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.equal( 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', function (done) {
var stream = svgstore({ inlineSvg: true })
stream.on('data', function(file){
var result = file.contents.toString()
var 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.equal( 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', function (done) {
var stream = svgstore()
stream.on('error', function (error) {
assert.ok(error instanceof PluginError)
assert.equal(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', function (done) {
var stream = svgstore()
stream.on('data', function (file) {
assert.equal(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', function (done) {
var stream = svgstore()
stream.on('data', function (file) {
assert.equal(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', function (done) {
var stream = svgstore()
stream.on('data', function (file) {
var $resultSvg = cheerio.load(file.contents.toString(), { xmlMode: true })('svg')
assert.equal($resultSvg.attr('xmlns'), 'http://www.w3.org/2000/svg')
assert.equal($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', function (done) {
var stream = svgstore({ inlineSvg: true })
stream.on('data', function (file) {
assert.equal(
'<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('Warn about duplicate namespace value under different name', function (done) {
var stream = svgstore()
stream.on('data', function () {
assert.equal(
'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', function (done) {
var stream = svgstore()
stream.on('data', function () {
assert.equal(
'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()
})
})