-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathindex.spec.js
352 lines (292 loc) · 9.46 KB
/
index.spec.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
const chai = require('chai');
const cleanCSS = require('.');
const concat = require('gulp-concat');
const File = require('vinyl');
const gulp = require('gulp');
const gulpSass = require('gulp-sass');
const rename = require('gulp-rename');
const sourcemaps = require('gulp-sourcemaps');
const expect = chai.expect;
chai.should();
chai.use(require('chai-string'));
describe('gulp-clean-css: init', () => {
it('should return the gulp-clean-css object: required export', () => {
expect(cleanCSS).to.exist;
});
});
describe('gulp-clean-css: base functionality', () => {
it('should play nicely with other plugins: gulp-sass: before', done => {
let i = 0;
gulp.src(['test/fixtures/**/*.scss', '!test/fixtures/empty/**', '!test/fixtures/sourcemaps-load/**'])
.pipe(gulpSass())
.pipe(cleanCSS())
.pipe(rename({
suffix: '.generated',
}))
.pipe(gulp.dest('test/fixtures/'))
.on('data', file => {
i += 1;
})
.once('end', () => {
i.should.equal(3);
done();
});
});
it('should allow the file through', done => {
let i = 0;
gulp.src('test/fixtures/test.css')
.pipe(cleanCSS())
.on('data', file => {
i += 1;
})
.once('end', () => {
i.should.equal(1);
done();
});
});
it('should allow the file through: no options specified', done => {
let i = 0;
gulp.src('test/fixtures/test.css')
.pipe(cleanCSS(details => {
console.log('hi');
}))
.on('data', file => {
i += 1;
})
.once('end', () => {
i.should.equal(1);
done();
});
});
it('should allow empty files through', done => {
let i = 0;
gulp.src('test/fixtures/empty.css')
.pipe(cleanCSS())
.on('data', file => {
i += 1;
})
.once('end', () => {
i.should.equal(1);
done();
});
});
it('should allow the file through:empty file, pipe dest', done => {
let i = 0;
gulp.src('test/fixtures/empty/**/*.scss')
.pipe(gulpSass())
.pipe(cleanCSS())
.pipe(rename({
suffix: '.generated',
}))
.pipe(gulp.dest(file => `${file.base}/empty-parsed`))
.on('data', file => {
i += 1;
})
.once('end', () => {
i.should.equal(3);
done();
});
});
it('should produce the expected file', done => {
let mockFile = new File({
cwd: '/',
base: '/test/',
path: '/test/expected.test.css',
contents: new Buffer.from('p{text-align:center;color:green}')
});
gulp.src('test/fixtures/test.css')
.pipe(cleanCSS())
.on('data', file => {
file.contents.should.exist && expect(file.contents.toString()).to.equal(mockFile.contents.toString());
done();
});
});
it('should invoke optional callback with details specified in options: debug', done => {
gulp.src('test/fixtures/test.css')
.pipe(cleanCSS({debug: true}, (details) => {
details.stats.should.exist &&
details.stats.originalSize.should.exist &&
details.stats.minifiedSize.should.exist;
}))
.on('data', file => {
done();
});
});
it('should invoke optional callback with out options object supplied: return object hash', done => {
let called = false;
gulp.src('test/fixtures/test.css')
.pipe(cleanCSS({}, details => {
called = true;
details.stats.should.exist &&
expect(details).to.have.ownProperty('stats') &&
expect(details).to.have.ownProperty('errors') &&
expect(details).to.have.ownProperty('warnings') &&
expect(details).to.not.have.ownProperty('sourceMap');
}))
.on('data', (file) => {
//
})
.once('end', () => {
expect(called).to.be.true;
done();
})
});
it('should invoke optional callback without options object supplied: return object hash with sourceMap: true; return correct hash', done => {
gulp.src('test/fixtures/test.css')
.pipe(cleanCSS({sourceMap: true}, details => {
details.stats.should.exist &&
expect(details).have.ownProperty('sourceMap');
}))
.on('data', file => {
done();
});
});
it('should invoke optional callback with file details returned', done => {
let expected = 'test.css';
gulp.src('test/fixtures/test.css')
.pipe(cleanCSS(details => {
details.name.should.containIgnoreCase(expected)
}))
.on('data', file => {
done();
});
});
it('should write sourcemaps', done => {
let i = 0;
gulp.src(['test/fixtures/sourcemaps/**/*.css', '!test/fixtures/sourcemaps/**/*.generated.css'])
.pipe(sourcemaps.init())
.pipe(concat('sourcemapped.css'))
.pipe(cleanCSS())
.pipe(rename({
suffix: '.generated',
}))
.on('data', file => {
i += 1;
})
.pipe(sourcemaps.write())
.pipe(gulp.dest(file => file.base))
.once('end', () => {
i.should.equal(1);
done();
});
});
it('should write sourcemaps, worrectly map output', done => {
let i = 0;
gulp.src('test/fixtures/sourcemaps-load/scss/test-sass.scss')
.pipe(sourcemaps.init())
.pipe(gulpSass())
.pipe(sourcemaps.init({loadMaps: true}))
.pipe(cleanCSS({sourceMapInlineSources: true}))
.on('data', file => {
i += 1;
})
.pipe(rename({
suffix: '.min'
}))
.pipe(sourcemaps.write())
.pipe(gulp.dest('test/fixtures/sourcemaps-load/min'))
.once('end', () => {
i.should.equal(1); // todo inspect mapping here
done();
});
});
it('should invoke a plugin error: streaming not supported', done => {
gulp.src('test/fixtures/test.css', {buffer: false})
.pipe(cleanCSS()
.on('error', err => {
expect(err.message).to.equal('Streaming not supported!');
done();
}));
});
it('should handle malformed CSS', done => {
let i = 0;
gulp.src('test/fixtures/malformed.css')
.pipe(cleanCSS())
.on('error', e => {
expect(e).to.exist;
done();
})
});
it('should not process empty directories or files', done => {
gulp.src('./test/fixtures/very-empty/**')
.pipe(cleanCSS({}, detail => {
expect(detail.errors).to.be.empty;
}))
.on('data', file => {
//
})
.on('end', () => {
done();
});
})
it('should write sourcemaps, correct source path', done => {
let maps = {};
gulp.src(['test/fixtures/sourcemaps-import/styles/main.css'], {base: 'test/fixtures/sourcemaps-import/styles'})
.pipe(sourcemaps.init())
.pipe(cleanCSS())
.pipe(sourcemaps.mapSources(function (sourcePath, file) {
maps[sourcePath] = true;
return sourcePath;
}))
.pipe(sourcemaps.write('./', {sourceRoot: '/'}))
.pipe(gulp.dest('test/fixtures/sourcemaps-import'))
.once('end', () => {
maps['main.css'].should.be.true;
maps['partial.css'].should.be.true;
done();
});
});
});
describe('gulp-clean-css: rebase', () => {
it('should not rebase files by default - do not resolve relative files', done => {
gulp.src(['test/fixtures/rebasing/subdir/insub.css'])
.pipe(cleanCSS({rebase: false}))
.on('data', file => {
let expected = `
p.insub_same{background:url(insub.png)}
p.insub_child{background:url(child/child.png)}
p.insub_parent{background:url(../parent.png)}
p.insub_other{background:url(../othersub/inother.png)}
p.insub_absolute{background:url(/inroot.png)}`;
let actual = file.contents.toString();
expect(actual).to.equalIgnoreSpaces(expected)
})
.once('end', done);
});
it('should by rebase files with target specified', done => {
gulp.src(['test/fixtures/rebasing/subdir/insub.css'])
.pipe(cleanCSS({rebaseTo: 'test'}))
.on('data', file => {
let expected = `
p.insub_same{background:url(fixtures/rebasing/subdir/insub.png)}
p.insub_child{background:url(fixtures/rebasing/subdir/child/child.png)}
p.insub_parent{background:url(fixtures/rebasing/parent.png)}
p.insub_other{background:url(fixtures/rebasing/othersub/inother.png)}
p.insub_absolute{background:url(/inroot.png)}`;
let actual = file.contents.toString();
expect(actual).to.equalIgnoreSpaces(expected);
})
.once('end', done);
});
it('should rebase to current relative file location - relative imports are resolved like in the browser', done => {
gulp.src(['test/fixtures/rebasing/subdir/import.css'])
.pipe(cleanCSS())
.on('data', file => {
let expected = `
p.imported_nested{background:url(../otherdir/nestedsub/nested.png)}
p.imported_same{background:url(../otherdir/imported.png)}
p.imported_parent{background:url(../parent.png)}
p.imported_other{background:url(../othersub/inother.png)}
p.imported_absolute{background:url(/inroot.png)}
p.insub_same{background:url(insub.png)}
p.insub_child{background:url(child/child.png)}
p.insub_parent{background:url(../parent.png)}
p.insub_other{background:url(../othersub/inother.png)}
p.insub_absolute{background:url(/inroot.png)}
p.import{background:url(import.png)}`;
let actual = file.contents.toString();
expect(actual).to.equalIgnoreSpaces(expected)
})
.once('end', done);
});
});