-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- test all the different categories and formattings - full unit test coverage now! (except for `index`/`tscache`, which integration tests cover)
- Loading branch information
Showing
2 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import { test, expect } from "@jest/globals"; | ||
import * as ts from "typescript"; | ||
import { red } from "colors/safe"; | ||
|
||
import { makeContext } from "./fixtures/context"; | ||
import { setTypescriptModule } from "../src/tsproxy"; | ||
import { printDiagnostics } from "../src/print-diagnostics"; | ||
|
||
setTypescriptModule(ts); | ||
|
||
const diagnostic = { | ||
flatMessage: "Compiler option 'include' requires a value of type Array.", | ||
formatted: "\x1B[91merror\x1B[0m\x1B[90m TS5024: \x1B[0mCompiler option 'include' requires a value of type Array.\n", | ||
category: ts.DiagnosticCategory.Error, | ||
code: 5024, | ||
type: 'config' | ||
}; | ||
|
||
test("print-diagnostics - categories", () => { | ||
const context = makeContext(); | ||
|
||
printDiagnostics(context, [diagnostic]); | ||
expect(context.error).toHaveBeenLastCalledWith(diagnostic.formatted); | ||
|
||
printDiagnostics(context, [{ ...diagnostic, category: ts.DiagnosticCategory.Warning } ]); | ||
expect(context.warn).toHaveBeenLastCalledWith(diagnostic.formatted); | ||
|
||
printDiagnostics(context, [{ ...diagnostic, category: ts.DiagnosticCategory.Suggestion } ]); // default case | ||
expect(context.warn).toHaveBeenLastCalledWith(diagnostic.formatted); | ||
|
||
printDiagnostics(context, [{ ...diagnostic, category: ts.DiagnosticCategory.Message } ]); | ||
expect(context.info).toHaveBeenLastCalledWith(diagnostic.formatted); | ||
|
||
// should match exactly, no more | ||
expect(context.error).toBeCalledTimes(1); | ||
expect(context.warn).toBeCalledTimes(2) | ||
expect(context.info).toBeCalledTimes(1); | ||
expect(context.debug).toBeCalledTimes(0); | ||
}); | ||
|
||
test("print-diagnostics - formatting / style", () => { | ||
const context = makeContext(); | ||
const category = "error"; // string version | ||
|
||
printDiagnostics(context, [diagnostic], false); | ||
expect(context.error).toHaveBeenLastCalledWith(`${diagnostic.type} ${category} TS${diagnostic.code}: ${red(diagnostic.flatMessage)}`); | ||
|
||
const fileLine = "0" | ||
printDiagnostics(context, [{ ...diagnostic, fileLine }], false); | ||
expect(context.error).toHaveBeenLastCalledWith(`${fileLine}: ${diagnostic.type} ${category} TS${diagnostic.code}: ${red(diagnostic.flatMessage)}`); | ||
|
||
// should match exactly, no more | ||
expect(context.error).toBeCalledTimes(2); | ||
expect(context.warn).toBeCalledTimes(0) | ||
expect(context.info).toBeCalledTimes(0); | ||
expect(context.debug).toBeCalledTimes(0); | ||
}); |