-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.test.ts
137 lines (121 loc) · 3.39 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
import fs from "fs";
import { toMatchFile } from "jest-file-snapshot";
import path from "path";
import rimraf from "rimraf";
import { generateTypeScriptFile, TysonConfig } from "../src/";
import { getErrorDiagnostics } from "./util/compiler";
import { normalizeTysonPathsInErrorMessage } from "./util/deviceAgnosticPathNormalization";
expect.extend({ toMatchFile });
beforeAll(() => {
rimraf.sync(path.join(__dirname, "./tempIndexTest"));
fs.mkdirSync(path.join(__dirname, "./tempIndexTest"));
fs.mkdirSync(path.join(__dirname, "./tempIndexTest/noTypeErrors"));
fs.mkdirSync(path.join(__dirname, "./tempIndexTest/typeErrors"));
});
test("success cases", () => {
const dirs = fs.readdirSync(path.join(__dirname, "./fixtures/shouldSucceed"));
dirs.forEach((dir) => {
const pathToBnfGrammarFile = path.join(
__dirname,
"fixtures/shouldSucceed",
dir,
"grammar.jison"
);
const pathToTypeDictFile = path.join(
__dirname,
"fixtures/shouldSucceed",
dir,
"typeDict.ts"
);
const pathToOutputFile = path.join(
__dirname,
"tempIndexTest/noTypeErrors",
dir + ".generated.ts"
);
const pathToConfigFile = path.join(
__dirname,
"fixtures/shouldSucceed",
dir,
"config.json"
);
const config = getConfig(pathToConfigFile);
generateTypeScriptFile({
pathToBnfGrammarFile,
pathToTypeDictFile,
pathToOutputFile,
...config,
});
expect(getErrorDiagnostics([pathToOutputFile])).toHaveLength(0);
const pathToFileSnapshot = path.join(
__dirname,
"__file_snapshots__/noTypeErrors/",
dir + ".ts"
);
expect(fs.readFileSync(pathToOutputFile, "utf8")).toMatchFile(
pathToFileSnapshot
);
});
});
test("failure cases", () => {
const dirs = fs.readdirSync(path.join(__dirname, "./fixtures/shouldFail"));
dirs.forEach((dir) => {
const pathToBnfGrammarFile = path.join(
__dirname,
"fixtures/shouldFail",
dir,
"grammar.jison"
);
const pathToTypeDictFile = path.join(
__dirname,
"fixtures/shouldFail",
dir,
"typeDict.ts"
);
const pathToOutputFile = path.join(
__dirname,
"tempIndexTest/typeErrors",
dir + ".generated.ts"
);
const pathToConfigFile = path.join(
__dirname,
"fixtures/shouldFail",
dir,
"config.json"
);
const config = getConfig(pathToConfigFile);
try {
generateTypeScriptFile({
pathToBnfGrammarFile,
pathToTypeDictFile,
pathToOutputFile,
...config,
});
} catch (e) {
if (!(e instanceof Error)) {
throw e;
}
const deviceAgnosticError = normalizeTysonPathsInErrorMessage(e);
expect(deviceAgnosticError).toMatchSnapshot("error for " + dir);
}
if (fs.existsSync(pathToOutputFile)) {
expect(
getErrorDiagnostics([pathToOutputFile]).length
).toBeGreaterThanOrEqual(1);
const pathToFileSnapshot = path.join(
__dirname,
"__file_snapshots__/typeErrors/",
dir + ".ts"
);
expect(fs.readFileSync(pathToOutputFile, "utf8")).toMatchFile(
pathToFileSnapshot
);
}
});
});
function getConfig(pathToConfigFile: string): Partial<TysonConfig> {
if (fs.existsSync(pathToConfigFile)) {
return JSON.parse(fs.readFileSync(pathToConfigFile, "utf8"));
} else {
return {};
}
}