|
1 |
| -import { type Diagnostic, type DiagnosticWithLocation, SystemError } from '@css-modules-kit/core'; |
2 |
| -import { describe, expect, test } from 'vitest'; |
3 |
| -import { formatDiagnostic, formatSystemError } from './formatter'; |
| 1 | +import dedent from 'dedent'; |
| 2 | +import ts from 'typescript'; |
| 3 | +import { describe, expect, it } from 'vitest'; |
| 4 | +import { formatDiagnostics } from './formatter'; |
4 | 5 |
|
5 |
| -const cwd = '/app'; |
| 6 | +describe('formatDiagnostics', () => { |
| 7 | + const file = ts.createSourceFile( |
| 8 | + '/app/test.module.css', |
| 9 | + dedent` |
| 10 | + .a_1 { color: red; } |
| 11 | + .a_2 { color: red; } |
| 12 | + `, |
| 13 | + ts.ScriptTarget.JSON, |
| 14 | + undefined, |
| 15 | + ts.ScriptKind.Unknown, |
| 16 | + ); |
| 17 | + const host: ts.FormatDiagnosticsHost = { |
| 18 | + getCurrentDirectory: () => '/app', |
| 19 | + getCanonicalFileName: (fileName) => fileName, |
| 20 | + getNewLine: () => '\n', |
| 21 | + }; |
| 22 | + const diagnostics: ts.Diagnostic[] = [ |
| 23 | + { |
| 24 | + file, |
| 25 | + start: 1, |
| 26 | + length: 3, |
| 27 | + messageText: '`a_1` is not allowed', |
| 28 | + category: ts.DiagnosticCategory.Error, |
| 29 | + code: 0, |
| 30 | + }, |
| 31 | + { |
| 32 | + file, |
| 33 | + start: 22, |
| 34 | + length: 3, |
| 35 | + messageText: '`a_2` is not allowed', |
| 36 | + category: ts.DiagnosticCategory.Error, |
| 37 | + code: 0, |
| 38 | + }, |
| 39 | + ]; |
6 | 40 |
|
7 |
| -describe('formatDiagnostic', () => { |
8 |
| - test('should format diagnostic without filename and start position', () => { |
9 |
| - const diagnostic: Diagnostic = { category: 'error', text: 'text' }; |
10 |
| - const result = formatDiagnostic(diagnostic, cwd, false); |
11 |
| - expect(result).toMatchInlineSnapshot(`"error: text"`); |
12 |
| - }); |
13 |
| - test('should format diagnostic with filename and start position', () => { |
14 |
| - const diagnostic: DiagnosticWithLocation = { |
15 |
| - file: { fileName: '/app/path/to/file.ts', text: 'abcdef' }, |
16 |
| - start: { line: 1, column: 2 }, |
17 |
| - length: 1, |
18 |
| - category: 'error', |
19 |
| - text: 'text', |
20 |
| - }; |
21 |
| - const result = formatDiagnostic(diagnostic, cwd, false); |
22 |
| - expect(result).toMatchInlineSnapshot(`"path/to/file.ts:1:2 - error: text"`); |
23 |
| - }); |
24 |
| - test('should format diagnostic with error category', () => { |
25 |
| - const diagnostic: Diagnostic = { |
26 |
| - category: 'error', |
27 |
| - text: 'error text', |
28 |
| - }; |
29 |
| - const result = formatDiagnostic(diagnostic, cwd, false); |
30 |
| - expect(result).toMatchInlineSnapshot(`"error: error text"`); |
31 |
| - }); |
32 |
| - test('should format diagnostic with warning category', () => { |
33 |
| - const diagnostic: Diagnostic = { |
34 |
| - category: 'warning', |
35 |
| - text: 'warning text', |
36 |
| - }; |
37 |
| - const result = formatDiagnostic(diagnostic, cwd, false); |
38 |
| - expect(result).toMatchInlineSnapshot(`"warning: warning text"`); |
| 41 | + it('formats diagnostics with color and context when pretty is true', () => { |
| 42 | + const result = formatDiagnostics(diagnostics, host, true); |
| 43 | + expect(result).toMatchInlineSnapshot(` |
| 44 | + "[96mtest.module.css[0m:[93m1[0m:[93m2[0m - [91merror[0m[90m: [0m\`a_1\` is not allowed |
| 45 | +
|
| 46 | + [7m1[0m .a_1 { color: red; } |
| 47 | + [7m [0m [91m ~~~[0m |
| 48 | +
|
| 49 | + [96mtest.module.css[0m:[93m2[0m:[93m2[0m - [91merror[0m[90m: [0m\`a_2\` is not allowed |
| 50 | +
|
| 51 | + [7m2[0m .a_2 { color: red; } |
| 52 | + [7m [0m [91m ~~~[0m |
| 53 | +
|
| 54 | + " |
| 55 | + `); |
39 | 56 | });
|
40 |
| -}); |
41 | 57 |
|
42 |
| -test('formatSystemError', () => { |
43 |
| - expect(formatSystemError(new SystemError('CODE', 'message'), false)).toMatchInlineSnapshot(`"error CODE: message"`); |
44 |
| - const cause = new Error('msg2'); |
45 |
| - expect(formatSystemError(new SystemError('CODE', 'msg1', cause), false)).toMatch( |
46 |
| - /error CODE: msg1\n {2}\[cause\]: Error: msg2\n {6}at .*/mu, |
47 |
| - ); |
| 58 | + it('formats diagnostics without color and context when pretty is false', () => { |
| 59 | + const result = formatDiagnostics(diagnostics, host, false); |
| 60 | + expect(result).toMatchInlineSnapshot(` |
| 61 | + "test.module.css(1,2): error: \`a_1\` is not allowed |
| 62 | +
|
| 63 | + test.module.css(2,2): error: \`a_2\` is not allowed |
| 64 | +
|
| 65 | + " |
| 66 | + `); |
| 67 | + }); |
48 | 68 | });
|
0 commit comments