-
Notifications
You must be signed in to change notification settings - Fork 34
/
index.test.ts
482 lines (418 loc) · 14 KB
/
index.test.ts
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
import {promises as fs, constants as fsConstants} from 'fs';
import * as path from 'path';
import test from 'ava';
import sinon from 'sinon';
import {OutputOptions, rollup, RollupOutput} from 'rollup';
import * as sassJs from 'sass';
import sass from '../src/index';
import {SassOptions} from "../src/types";
import {error} from "../src/utils";
import postcss from "postcss";
import {extractICSS} from "icss-utils";
const repoRoot = path.join(__dirname, '../'),
tmpDir = path.join(repoRoot, '.tests-output/'),
sassOptions = {
outputStyle: 'compressed',
} as SassOptions,
baseConfig = {
plugins: [
sass({
options: sassOptions,
}),
],
},
generateOptions = {
format: 'es',
} as OutputOptions,
outputOptions = {
format: 'es',
file: path.join(tmpDir, 'bundle.js'),
},
squash = str => str.trim().replace(/[\n\r\f]/g, ''),
reverse = str => str.split('').reverse().join(''),
unwrap = output => output[0].code;
let expectA, expectA2, expectB, expectC, expectD, expectE;
test.before(async () => {
const mkDir = () => fs.mkdir(tmpDir);
await fs.rmdir(tmpDir, {recursive: true})
.then(mkDir, mkDir)
.then(() => Promise.all([
'test/assets/expect_a.css',
'test/assets/expect_a--with-icss-exports.css',
'test/assets/expect_b.css',
'test/assets/expect_c.css',
'test/assets/expect_d.css',
'test/assets/expect_e.css'
]
.map(xs => fs.readFile(xs).then(buff => buff.toString()))
))
.then(([a, a2, b, c, d, e]) => {
expectA = squash(a);
expectA2 = squash(a2);
expectB = squash(b);
expectC = squash(c);
expectD = squash(d);
expectE = squash(e);
});
});
test('should import *.scss and *.sass files', async t => {
const outputBundle = await rollup({
...baseConfig,
input: 'test/fixtures/basic/index.js',
}),
{output} = await outputBundle.generate({
format: 'es',
file: path.join(tmpDir, 'import_scss_and_sass.js')
}),
rslt = squash(unwrap(output));
t.true([expectA, expectB, expectC].every(xs => rslt.includes(xs)));
});
test('should compress the dest CSS', async t => {
const outputBundle = await rollup({
...baseConfig,
input: 'test/fixtures/compress/index.js',
}),
{output} = await outputBundle.generate(generateOptions);
t.true(squash(unwrap(output)).indexOf(expectD) > -1);
});
test('should custom importer works', async t => {
const outputBundle = await rollup({
input: 'test/fixtures/custom-importer/index.js',
plugins: [
sass({
options: {
...sassOptions,
importer: [
(url, prev, done) => {
done({
file: url.replace('${name}', 'actual_a'),
});
},
],
}
}),
],
}),
{output} = await outputBundle.generate(generateOptions);
t.true(squash(unwrap(output)).indexOf(expectA) > -1);
});
test('should support options.data', async t => {
const jsVars = {
color_red: 'red',
};
const scssVars = Object.keys(jsVars).reduce((prev, key) => `${prev}$${key}:${jsVars[key]};`, '');
const outputBundle = await rollup({
input: 'test/fixtures/data/index.js',
plugins: [
sass({
options: {
...sassOptions,
data: scssVars,
},
}),
],
});
const {output} = await outputBundle.generate(generateOptions);
t.true(squash(unwrap(output)).indexOf(expectE) > -1);
});
test('should insert CSS into head tag', async t => {
const outputBundle = await rollup({
input: 'test/fixtures/insert/index.js',
plugins: [
sass({
insert: true,
options: sassOptions,
}),
],
}),
{output} = await outputBundle.generate(generateOptions);
t.true(unwrap(output).includes('___$insertStyle("body{color:red}");'));
t.true(unwrap(output).includes('___$insertStyle("body{color:green}");'));
});
test('should support output as function', async t => {
const outputSpy = sinon.spy(),
file = path.join(tmpDir, 'import_scss_and_sass.js'),
outputBundle = await rollup({
input: 'test/fixtures/output-function/index.js',
plugins: [
sass({
output: outputSpy,
options: sassOptions,
}),
],
}),
expectedSpyArg = squash(`${expectA}${expectB}`);
await outputBundle.write({...outputOptions, file} as OutputOptions);
await fs.readFile(file)
.then(rslt => t.true(squash(rslt.toString()) === ''))
.then(() => t.true(
outputSpy.calledWith(expectedSpyArg),
`\`outputSpy\` should've been called with \`${expectedSpyArg}\`. `+
`Spy called with \`${outputSpy.args[0][0]}\`, other args ` +
`${JSON.stringify(outputSpy.args[0].slice(1))}`
))
.catch(() => t.true(false, `Trouble reading back written file "${file}".`));
});
test('should support output as (non-previously existent) path', async t => {
const outputStylePath = path.join(tmpDir, 'output-path/style.css'),
outputBundle = await rollup({
input: 'test/fixtures/output-path/index.js',
plugins: [
sass({
output: outputStylePath,
options: sassOptions,
}),
],
}),
filePath = path.join(tmpDir, 'support_output_prev-non-exist.js');
await outputBundle.write({...outputOptions, file: filePath} as OutputOptions);
await fs.readFile(filePath)
.then((rslt) => {
t.is(squash(rslt.toString()), '');
})
.then(() => fs.readFile(outputStylePath))
.then((rslt) => {
t.not(squash(rslt.toString()).indexOf(expectA), -1);
t.not(squash(rslt.toString()).indexOf(expectB), -1);
});
});
test('should support output as true', async t => {
const outputBundle = await rollup({
input: 'test/fixtures/output-true/index.js',
plugins: [
sass({
output: true,
options: sassOptions,
}),
],
}),
filePath = path.join(tmpDir, 'support-output-as-true.js');
await outputBundle.write({...outputOptions, file: filePath} as OutputOptions);
await fs.readFile(filePath)
.then(rslt => t.is(squash(rslt.toString()), ''))
.then(() => fs.readFile(filePath.replace('.js', '.css')))
.then(rslt => squash(rslt.toString()))
.then(rslt => {
t.not(rslt.indexOf(expectA), -1);
t.not(rslt.indexOf(expectB), -1);
});
});
test('should processor return as string', async t => {
const outputBundle = await rollup({
input: 'test/fixtures/processor-string/index.js',
plugins: [
sass({
processor: css => reverse(css),
options: sassOptions,
}),
],
}),
{output} = await outputBundle.generate(generateOptions);
t.true(squash(unwrap(output)).indexOf(reverse(expectA)) > -1);
t.true(squash(unwrap(output)).indexOf(reverse(expectB)) > -1);
});
test('should processor return as object', async t => {
const outputBundle = await rollup({
input: 'test/fixtures/processor-object/index.js',
plugins: [
sass({
processor(css) {
return {
css,
foo: 'foo',
bar: 'bar',
};
},
options: sassOptions,
}),
],
});
const {output} = await outputBundle.generate(generateOptions);
t.true(squash(unwrap(output)).indexOf(expectA) > -1);
t.true(squash(unwrap(output)).indexOf(expectB) > -1);
t.true(squash(unwrap(output)).indexOf('foo') > -1);
t.true(squash(unwrap(output)).indexOf('bar') > -1);
});
test('should support processor return type `Promise<string>`', async t => {
const outputBundle = await rollup({
input: 'test/fixtures/processor-promise/index.js',
plugins: [
sass({
processor: (css) => new Promise(resolve =>
setTimeout(() => resolve(css), 100)),
options: sassOptions,
}),
],
}),
{output} = await outputBundle.generate(generateOptions);
t.true(squash(unwrap(output)).indexOf(expectA) > -1);
t.true(squash(unwrap(output)).indexOf(expectB) > -1);
});
test('should support processor return type `Promise<{css: string, icssExport: {}, icssImport: {}}}>', async t => {
const outputBundle = await rollup({
input: 'test/fixtures/processor-promise/with-icss-exports.js',
plugins: [
sass({
processor: (css) => new Promise((resolve, reject) => {
const pcssRootNodeRslt = postcss.parse(css),
extractedIcss = extractICSS(pcssRootNodeRslt, true),
cleanedCss = pcssRootNodeRslt.toString(),
out = Object.assign({}, extractedIcss.icssExports, {
css: cleanedCss,
});
// console.table(extractedIcss);
// console.log(out);
resolve(out);
}),
options: sassOptions,
}),
],
}),
{output} = await outputBundle.generate(generateOptions),
rslt = squash(unwrap(output));
t.true(rslt.includes(expectA2));
t.true(rslt.includes(expectB));
});
test('should processor throw error', async t => {
await t.throwsAsync(async () => rollup({
input: 'test/fixtures/processor-error/index.js',
plugins: [
sass({
// @ts-ignore
processor: () => ({}),
options: sassOptions,
}),
],
}), {
message: 'You need to return the styles using the `css` property. See https://github.com/differui/rollup-plugin-sass#processor',
});
});
test('should resolve ~ as node_modules', async t => {
const outputBundle = await rollup({
input: 'test/fixtures/import/index.js',
plugins: [
sass({
options: sassOptions,
}),
],
});
const {output} = await outputBundle.generate(generateOptions);
t.true(squash(unwrap(output)).indexOf(expectA) > -1);
t.true(squash(unwrap(output)).indexOf(expectB) > -1);
t.true(squash(unwrap(output)).indexOf(expectC) > -1);
});
test('should resolve ~ as node_modules and output javascript modules', async t => {
const outputBundle = await rollup({
input: 'test/fixtures/import/index.js',
plugins: [
sass({
options: sassOptions,
}),
],
}),
outputFilePath = path.join(tmpDir, 'import_scss_and_sass.es.js'),
outputFilePath2 = path.join(tmpDir, 'import_scss_and_sass.cjs.js'),
expectedInOutput = `${expectA + expectB + expectC}`,
{output} = await outputBundle.generate(generateOptions),
outputRslt = squash(unwrap(output));
t.true(outputRslt.includes(expectedInOutput),
`${JSON.stringify(outputRslt)}.includes(\`${expectedInOutput}\`)`);
// Test 'es' module output
// ----
await Promise.all([
outputBundle.write({
format: 'es',
file: outputFilePath
})
.then(() => fs.readFile(outputFilePath))
.then(data => {
const rslt = squash(data.toString());
// Ensure content exist in output file
t.true(rslt.includes(expectedInOutput),
`${JSON.stringify(rslt)}.includes(\`${expectedInOutput}\`)`)
}),
// Test 'cjs' module output
// ----
outputBundle.write({
format: 'cjs',
file: outputFilePath2
})
.then(() => fs.readFile(outputFilePath2))
.then(data => {
const rslt = squash(data.toString());
// Ensure content exist in output file
t.true(rslt.includes(expectedInOutput),
`${JSON.stringify(rslt)}.includes(\`${expectedInOutput}\`)`)
})
]);
});
test('should support options.runtime', async t => {
const outputBundle = await rollup({
input: 'test/fixtures/runtime/index.js',
plugins: [
sass({
runtime: sassJs,
options: sassOptions,
}),
],
}),
{output} = await outputBundle.generate(generateOptions),
rslt = squash(unwrap(output));
t.true([expectA, expectB, expectC].every(xs => rslt.includes(xs)));
});
test('When `sourcemap` isn\'t set adjacent source map files should not be output, and ' +
'rollup output chunk shouldn\'t contain a `map` entry', async t => {
const outputFilePath = path.join(tmpDir, 'with-no-adjacent-source-map.js'),
bundle = await rollup({
input: 'test/fixtures/basic/index.js',
plugins: [
sass({
options: sassOptions
}),
],
}),
sourceMapFilePath = `${outputFilePath}.map`;
// Run test
await bundle.write({file: outputFilePath, format: 'esm'})
.then((rslt: RollupOutput): Promise<any> => {
// Check for output chunk
t.true(rslt && rslt.output && !!rslt.output.length, 'output should contain an output chunk');
// Check absence of 'map' entry in chunk
t.true(rslt.output[0].map === null || rslt.output[0].map === undefined,
'output chunk\'s `map` property should not be set. It should equal `null` or `undefined`');
// Check for absence of source map file
return fs.access(sourceMapFilePath, fsConstants.R_OK)
.then(() => t.false(true, `'${sourceMapFilePath}' should not exist.`),
() => t.true(true)
);
});
});
test('When `sourcemap` is set, to `true`, adjacent source map file should be output, and ' +
'rollup output chunk should contain `map` entry', async t => {
const outputFilePath = path.join(tmpDir, 'with-adjacent-source-map.js'),
bundle = await rollup({
input: 'test/fixtures/basic/index.js',
plugins: [
sass({
options: sassOptions
}),
],
}),
sourceMapFilePath = `${outputFilePath}.map`;
await bundle.write({file: outputFilePath, sourcemap: true, format: 'esm'})
.then((rslt: RollupOutput): Promise<any> => {
// Check for output chunk
t.true(rslt && rslt.output && !!rslt.output.length, 'output should contain an output chunk');
// Check for 'map' entry in chunk
t.true(!!rslt.output[0].map, 'rollup output output chunk\'s `map` property should be set');
// Check for source map file
return fs.readFile(sourceMapFilePath)
.then(contents => {
t.true(!!contents.toString(), `${sourceMapFilePath} should have been written.`);
});
});
});
test.after(async (): Promise<any> => {
return fs.rmdir(tmpDir, {recursive: true})
.catch(error);
});