-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathproject.test.ts
More file actions
573 lines (555 loc) · 20.1 KB
/
project.test.ts
File metadata and controls
573 lines (555 loc) · 20.1 KB
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
import { access, chmod, rm, writeFile } from 'node:fs/promises';
import { TsConfigFileNotFoundError } from '@css-modules-kit/core';
import dedent from 'dedent';
import { describe, expect, test } from 'vitest';
import { ReadCSSModuleFileError } from './error.js';
import { createProject } from './project.js';
import { formatDiagnostics } from './test/diagnostic.js';
import { createIFF } from './test/fixture.js';
describe('createProject', () => {
test('creates project', async () => {
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true } }',
});
const project = createProject({ project: iff.rootDir });
expect(project.config.dtsOutDir).toContain('generated');
});
test('throws TsConfigFileNotFoundError when tsconfig.json does not exist', async () => {
const iff = await createIFF({});
expect(() => createProject({ project: iff.rootDir })).toThrow(TsConfigFileNotFoundError);
});
test.runIf(process.platform !== 'win32')(
'throws ReadCSSModuleFileError when a CSS module file cannot be read',
async () => {
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true } }',
'src/a.module.css': '.a1 { color: red; }',
});
await chmod(iff.paths['src/a.module.css'], 0o200); // Remove read permission
expect(() => createProject({ project: iff.rootDir })).toThrow(ReadCSSModuleFileError);
},
);
});
test('isWildcardMatchedFile', async () => {
const iff = await createIFF({
'tsconfig.json': dedent`
{
"include": ["src"],
"exclude": ["src/excluded"]
}
`,
});
const project = createProject({ project: iff.rootDir });
expect(project.isWildcardMatchedFile(iff.join('src/a.module.css'))).toBe(true);
expect(project.isWildcardMatchedFile(iff.join('src/excluded/b.module.css'))).toBe(false);
expect(project.isWildcardMatchedFile(iff.join('c.module.css'))).toBe(false);
});
describe('addFile', () => {
test('The diagnostics of the added file are reported, and .d.ts file is emitted', async () => {
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true } }',
'src': {},
});
const project = createProject({ project: iff.rootDir });
// Even if the file is added, diagnostics will not change until notified by `addFile`.
await writeFile(iff.join('src/a.module.css'), '.a_1 {');
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"text": "The file specified in tsconfig.json not found.",
},
]
`);
project.addFile(iff.join('src/a.module.css'));
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"fileName": "<rootDir>/src/a.module.css",
"length": 1,
"start": {
"column": 1,
"line": 1,
},
"text": "Unclosed block",
},
]
`);
await project.emitDtsFiles();
await expect(access(iff.join('generated/src/a.module.css.d.ts'))).resolves.not.toThrow();
});
test('changes diagnostics in files that import it directly or indirectly', async () => {
// This test case suggests the following facts:
// - The check stage cache for files that directly import the added file should be invalidated.
// - The check stage cache for files that indirectly import the added file should also be invalidated.
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true } }',
'src/b.module.css': '@import "./a.module.css";', // directly
'src/c.module.css': '@value a_1 from "./b.module.css";', // indirectly
});
const project = createProject({ project: iff.rootDir });
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"fileName": "<rootDir>/src/b.module.css",
"length": 14,
"start": {
"column": 10,
"line": 1,
},
"text": "Cannot import module './a.module.css'",
},
{
"category": "error",
"fileName": "<rootDir>/src/c.module.css",
"length": 3,
"start": {
"column": 8,
"line": 1,
},
"text": "Module './b.module.css' has no exported token 'a_1'.",
},
]
`);
await writeFile(iff.join('src/a.module.css'), '@value a_1: red;');
project.addFile(iff.join('src/a.module.css'));
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`[]`);
});
test('changes the resolution results of import specifiers in other files', async () => {
// This test case suggests the following facts:
// - The check stage cache for files that import other files should be invalidated.
// - Only independent files that do not import any other files can keep the check stage cache.
const iff = await createIFF({
'tsconfig.json': dedent`
{
"compilerOptions": {
"paths": {
"@/a.module.css": ["src/a-1.module.css", "src/a-2.module.css"]
}
},
"cmkOptions": { "enabled": true }
}
`,
'src/a-2.module.css': '@value a_2: red;',
'src/b.module.css': '@import "@/a.module.css";',
'src/c.module.css': '@value a_2 from "./b.module.css";',
});
const project = createProject({ project: iff.rootDir });
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`[]`);
await writeFile(iff.join('src/a-1.module.css'), '@value a_1: red;');
project.addFile(iff.join('src/a-1.module.css'));
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"fileName": "<rootDir>/src/c.module.css",
"length": 3,
"start": {
"column": 8,
"line": 1,
},
"text": "Module './b.module.css' has no exported token 'a_2'.",
},
]
`);
});
});
describe('updateFile', () => {
test('The new diagnostics of the changed file are reported, and new .d.ts file is emitted', async () => {
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true } }',
'src/a.module.css': '',
});
const project = createProject({ project: iff.rootDir });
// Even if the file is updated, diagnostics will not change until notified by `updateFile`.
await writeFile(iff.join('src/a.module.css'), '.a_1 {');
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`[]`);
// New syntactic diagnostics are reported
project.updateFile(iff.join('src/a.module.css'));
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"fileName": "<rootDir>/src/a.module.css",
"length": 1,
"start": {
"column": 1,
"line": 1,
},
"text": "Unclosed block",
},
]
`);
// New .d.ts file is emitted
await project.emitDtsFiles();
expect(await iff.readFile('generated/src/a.module.css.d.ts')).toMatchInlineSnapshot(`
"// @ts-nocheck
declare const styles = {
a_1: '' as readonly string,
};
export default styles;
"
`);
// New semantic diagnostics are reported
await writeFile(iff.join('src/a.module.css'), `@import './non-existent.module.css';`);
project.updateFile(iff.join('src/a.module.css'));
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"fileName": "<rootDir>/src/a.module.css",
"length": 25,
"start": {
"column": 10,
"line": 1,
},
"text": "Cannot import module './non-existent.module.css'",
},
]
`);
});
test('changes diagnostics in files that import it directly or indirectly', async () => {
// This test case suggests the following facts:
// - The resolution cache should be invalidated.
// - The check stage cache for files that directly import the changed file should be invalidated.
// - The check stage cache for files that indirectly import the changed file should also be invalidated.
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true } }',
'src/a.module.css': '',
'src/b.module.css': dedent`
@value a_1 from "./a.module.css";
@import "./a.module.css";
`,
'src/c.module.css': '@value a_2 from "./b.module.css";',
});
const project = createProject({ project: iff.rootDir });
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"fileName": "<rootDir>/src/b.module.css",
"length": 3,
"start": {
"column": 8,
"line": 1,
},
"text": "Module './a.module.css' has no exported token 'a_1'.",
},
{
"category": "error",
"fileName": "<rootDir>/src/c.module.css",
"length": 3,
"start": {
"column": 8,
"line": 1,
},
"text": "Module './b.module.css' has no exported token 'a_2'.",
},
]
`);
await writeFile(iff.join('src/a.module.css'), '@value a_1: red; @value a_2: blue;');
project.updateFile(iff.join('src/a.module.css'));
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`[]`);
});
});
describe('removeFile', () => {
test('The diagnostics of the removed file are not reported, and .d.ts file is not emitted', async () => {
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true } }',
'src/a.module.css': '.a_1 {',
});
const project = createProject({ project: iff.rootDir });
// Even if the file is deleted, diagnostics will not change until notified by `removeFile`.
await rm(iff.join('src/a.module.css'));
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"fileName": "<rootDir>/src/a.module.css",
"length": 1,
"start": {
"column": 1,
"line": 1,
},
"text": "Unclosed block",
},
]
`);
project.removeFile(iff.join('src/a.module.css'));
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"text": "The file specified in tsconfig.json not found.",
},
]
`);
await project.emitDtsFiles();
await expect(access(iff.join('generated/src/a.module.css.d.ts'))).rejects.toThrow();
});
test('changes diagnostics in files that import it directly or indirectly', async () => {
// This test case suggests the following facts:
// - The check stage cache for files that directly import the changed file should be invalidated.
// - The check stage cache for files that indirectly import the changed file should also be invalidated.
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true } }',
'src/a.module.css': '@value a_1: red;',
'src/b.module.css': '@import "./a.module.css";', // directly
'src/c.module.css': '@value a_1 from "./b.module.css";', // indirectly
});
const project = createProject({ project: iff.rootDir });
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`[]`);
await rm(iff.join('src/a.module.css'));
project.removeFile(iff.join('src/a.module.css'));
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"fileName": "<rootDir>/src/b.module.css",
"length": 14,
"start": {
"column": 10,
"line": 1,
},
"text": "Cannot import module './a.module.css'",
},
{
"category": "error",
"fileName": "<rootDir>/src/c.module.css",
"length": 3,
"start": {
"column": 8,
"line": 1,
},
"text": "Module './b.module.css' has no exported token 'a_1'.",
},
]
`);
});
test('changes the resolution results of import specifiers in other files', async () => {
// This test case suggests the following facts:
// - The resolution cache should be invalidated.
// - The check stage cache for files that import the removed file should be invalidated.
const iff = await createIFF({
'tsconfig.json': dedent`
{
"compilerOptions": {
"paths": {
"@/a.module.css": ["src/a-1.module.css", "src/a-2.module.css"]
}
},
"cmkOptions": { "enabled": true }
}
`,
'src/a-1.module.css': '@value a_1: red;',
'src/a-2.module.css': '@value a_2: red;',
'src/b.module.css': '@import "@/a.module.css";',
'src/c.module.css': '@value a_2 from "./b.module.css";',
});
const project = createProject({ project: iff.rootDir });
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"fileName": "<rootDir>/src/c.module.css",
"length": 3,
"start": {
"column": 8,
"line": 1,
},
"text": "Module './b.module.css' has no exported token 'a_2'.",
},
]
`);
await rm(iff.join('src/a-1.module.css'));
project.removeFile(iff.join('src/a-1.module.css'));
expect(formatDiagnostics(project.getDiagnostics(), iff.rootDir)).toMatchInlineSnapshot(`[]`);
});
});
describe('getDiagnostics', () => {
test('returns empty array when no diagnostics', async () => {
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true } }',
'src/a.module.css': '.a_1 { color: red; }',
});
const project = createProject({ project: iff.rootDir });
const diagnostics = project.getDiagnostics();
expect(diagnostics).toEqual([]);
});
test('returns warning when enabled is not specified', async () => {
const iff = await createIFF({
'tsconfig.json': '{}',
'src/a.module.css': '.a_1 { color: red; }',
});
const project = createProject({ project: iff.rootDir });
const diagnostics = project.getDiagnostics();
expect(formatDiagnostics(diagnostics, iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "warning",
"text": ""cmkOptions.enabled" will be required in a future version of css-modules-kit. Add \`"cmkOptions": { "enabled": true }\` to tsconfig.json. See https://github.com/mizdra/css-modules-kit/issues/289 for details.",
},
]
`);
});
test('returns project diagnostics', async () => {
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true, "dtsOutDir": 1 } }',
});
const project = createProject({ project: iff.rootDir });
const diagnostics = project.getDiagnostics();
expect(formatDiagnostics(diagnostics, iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"text": "\`dtsOutDir\` in <rootDir>/tsconfig.json must be a string.",
},
{
"category": "error",
"text": "The file specified in tsconfig.json not found.",
},
]
`);
});
test('returns syntactic diagnostics', async () => {
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true } }',
'src/a.module.css': '.a_1 {',
'src/b.module.css': '.a_2 { color }',
});
const project = createProject({ project: iff.rootDir });
const diagnostics = project.getDiagnostics();
expect(formatDiagnostics(diagnostics, iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"fileName": "<rootDir>/src/a.module.css",
"length": 1,
"start": {
"column": 1,
"line": 1,
},
"text": "Unclosed block",
},
{
"category": "error",
"fileName": "<rootDir>/src/b.module.css",
"length": 5,
"start": {
"column": 8,
"line": 1,
},
"text": "Unknown word color",
},
]
`);
});
test('returns semantic diagnostics', async () => {
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true } }',
'src/a.module.css': `@import './non-existent-1.module.css';`,
'src/b.module.css': `@import './non-existent-2.module.css';`,
});
const project = createProject({ project: iff.rootDir });
const diagnostics = project.getDiagnostics();
expect(formatDiagnostics(diagnostics, iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"fileName": "<rootDir>/src/a.module.css",
"length": 27,
"start": {
"column": 10,
"line": 1,
},
"text": "Cannot import module './non-existent-1.module.css'",
},
{
"category": "error",
"fileName": "<rootDir>/src/b.module.css",
"length": 27,
"start": {
"column": 10,
"line": 1,
},
"text": "Cannot import module './non-existent-2.module.css'",
},
]
`);
});
test('skips semantic diagnostics when project or syntactic diagnostics exist', async () => {
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true, "dtsOutDir": 1 } }',
'src/a.module.css': '.a_1 {',
'src/b.module.css': `@import './non-existent.module.css';`,
});
const project = createProject({ project: iff.rootDir });
const diagnostics = project.getDiagnostics();
expect(formatDiagnostics(diagnostics, iff.rootDir)).toMatchInlineSnapshot(`
[
{
"category": "error",
"text": "\`dtsOutDir\` in <rootDir>/tsconfig.json must be a string.",
},
{
"category": "error",
"fileName": "<rootDir>/src/a.module.css",
"length": 1,
"start": {
"column": 1,
"line": 1,
},
"text": "Unclosed block",
},
]
`);
});
});
describe('emitDtsFiles', () => {
test('emits .d.ts files', async () => {
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true } }',
'src/a.module.css': '.a1 { color: red; }',
'src/b.module.css': '.b1 { color: blue; }',
});
const project = createProject({ project: iff.rootDir });
await project.emitDtsFiles();
expect(await iff.readFile('generated/src/a.module.css.d.ts')).toMatchInlineSnapshot(`
"// @ts-nocheck
declare const styles = {
a1: '' as readonly string,
};
export default styles;
"
`);
expect(await iff.readFile('generated/src/b.module.css.d.ts')).toMatchInlineSnapshot(`
"// @ts-nocheck
declare const styles = {
b1: '' as readonly string,
};
export default styles;
"
`);
});
test('does not emit .d.ts files for files not matched by `pattern`', async () => {
const iff = await createIFF({
'tsconfig.json': '{ "cmkOptions": { "enabled": true } }',
'src/a.module.css': '.a1 { color: red; }',
'src/b.css': '.b1 { color: blue; }',
});
const project = createProject({ project: iff.rootDir });
await project.emitDtsFiles();
expect(await iff.readFile('generated/src/a.module.css.d.ts')).toMatchInlineSnapshot(`
"// @ts-nocheck
declare const styles = {
a1: '' as readonly string,
};
export default styles;
"
`);
await expect(access(iff.join('generated/src/a.module.css.d.ts'))).resolves.not.toThrow();
await expect(access(iff.join('generated/src/b.css.d.ts'))).rejects.toThrow();
});
});