forked from runem/ts-simple-type
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcompiler.spec.ts
354 lines (308 loc) · 11.1 KB
/
compiler.spec.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
import test from "ava";
import { RawSourceMap } from "source-map";
import { SimpleType, SimpleTypePath, SimpleTypePathStepNamedMember, Visitor } from "../src";
import { JSONSchemaCompilerTarget } from "../src/compile-to/json-schema";
import { PythonCompilerTarget } from "../src/compile-to/python3";
import { ThriftCompilerTarget } from "../src/compile-to/thrift";
import { Proto3CompilerTarget } from "../src/compile-to/proto3";
import { SimpleTypeCompiler, SimpleTypeCompilerDeclarationLocation, SimpleTypeCompilerLocation, SimpleTypeCompilerNode, SimpleTypeCompilerTarget } from "../src/transform/compiler";
import { getTestTypes } from "./helpers/get-test-types";
const EXAMPLE_TS = `
type DBTable =
| 'block'
| 'collection'
| 'space'
type RecordPointer<T extends DBTable = DBTable> = T extends 'space' ?
{ table: T; id: string } :
{ table: T; id: string; spaceId: string }
// Forcing an anonymous type for testing purpose.
type TableModal<T extends DBTable = DBTable> = T extends 'space'
? { open: false }
: ({ open: true, view: string } | { open: false })
enum AnnotationType {
Bold,
Italic,
Underline,
Strike,
Code
}
/** Blocks allowed in a document. */
export type DocumentBlock = Text | Table | Document
export interface Table {
header: string[]
rows: string[][]
parent: RecordPointer<'block'>
/** @deprecated */
modal: TableModal<'block'>
rect?: Rect
}
export interface Text {
plain: string
annotations: Annotation[]
rect?: Rect
toString(): string
}
export interface Annotation {
type: AnnotationType
start: number
end: number
unknownData: unknown
anyData: any
}
type Position = {
x: number,
y: number
move(dx: number, dy: number): Position
}
type Dimension = {
width: number,
height: number
resize(width: number, height: number): Dimension
}
type Rect = Position & Dimension
/** A persisted document in our database */
export interface Document {
parent: RecordPointer
/** Title of the document */
title: string
/** Author's email */
author: string
body: Array<DocumentBlock>
}
`;
test("Show input Typescript used in tests", ctx => {
const { types, typeChecker } = getTestTypes(["Document"], EXAMPLE_TS);
const compiler = new SimpleTypeCompiler(typeChecker, () => {
return {} as any;
});
const location = compiler.getSourceLocation(compiler.toSimpleType(types.Document));
ctx.snapshot(location.sourceMap.sourceContent, "test.ts");
});
test("compile-to/python3: compile test.ts to Python with custom declaration routing", ctx => {
const { types, typeChecker } = getTestTypes(["Document"], EXAMPLE_TS);
class TestPythonTarget extends PythonCompilerTarget implements SimpleTypeCompilerTarget {
suggestDeclarationLocation(type: SimpleType, from: SimpleTypeCompilerLocation): SimpleTypeCompilerLocation | SimpleTypeCompilerDeclarationLocation {
if (!type.name) {
return {
fileName: "editor/generated.py"
};
}
return from;
}
}
const compiler = TestPythonTarget.createCompiler(typeChecker);
const outputs = compiler.compileProgram([
{
inputType: types.Document,
outputLocation: {
fileName: "editor/document.py"
}
}
]);
for (const [fileName, output] of outputs.files) {
ctx.snapshot(output.text, fileName);
const map = output.sourceMap.toJSON();
const snapshotSourceMap: RawSourceMap = {
...map,
sources: map.sources.map((s, i) => `source ${i}`),
sourcesContent: map.sourcesContent?.map((s, i) => `source ${i}: length ${s?.length}`)
};
ctx.snapshot(snapshotSourceMap, `${fileName}.map`);
}
ctx.snapshot(outputs.files.size, "output count");
});
test("SimpleTypeCompiler#assignDeclarationLocation: same location = same name", ctx => {
const { types, typeChecker } = getTestTypes(["Document"], EXAMPLE_TS);
const compiler = new SimpleTypeCompiler(typeChecker, () => {
return {} as any;
});
const DocumentType = compiler.toSimpleType(types.Document);
const name = compiler.assignDeclarationLocation(DocumentType, []);
const name2 = compiler.assignDeclarationLocation(DocumentType, []);
ctx.is(name, name2);
const name3 = compiler.assignDeclarationLocation(DocumentType, [], {
fileName: "random/output.py"
});
ctx.is(name, name3);
});
test("SimpleTypeCompiler#assignDeclarationLocation: same location with different type gives unique names", ctx => {
const one = getTestTypes(["Document"], EXAMPLE_TS);
const two = getTestTypes(["Document"], EXAMPLE_TS);
const compiler1 = new SimpleTypeCompiler(one.typeChecker, () => {
return {} as any;
});
const compiler2 = new SimpleTypeCompiler(two.typeChecker, () => {
return {} as any;
});
const doc1 = compiler1.toSimpleType(one.types.Document);
const doc2 = compiler2.toSimpleType(two.types.Document);
const name1 = compiler1.assignDeclarationLocation(doc1, []);
const name2 = compiler1.assignDeclarationLocation(doc2, []);
ctx.not(name1.name, name2.name);
ctx.true(SimpleTypeCompilerLocation.fileAndNamespaceEqual(name1, name2));
});
test("compile-to/thrift: Compile test.ts to thrift", ctx => {
const { types, typeChecker } = getTestTypes(["Document"], EXAMPLE_TS);
const compiler = ThriftCompilerTarget.createCompiler(typeChecker);
const outputs = compiler.compileProgram([
{
inputType: types.Document,
outputLocation: {
fileName: "thrift/schema.thrift"
}
}
]);
for (const [fileName, output] of outputs.files) {
ctx.snapshot(output.text, fileName);
const map = output.sourceMap.toJSON();
const snapshotSourceMap: RawSourceMap = {
...map,
sources: map.sources.map((s, i) => `source ${i}`),
sourcesContent: map.sourcesContent?.map((s, i) => `source ${i}: length ${s?.length}`)
};
ctx.snapshot(snapshotSourceMap, `${fileName}.map`);
}
ctx.snapshot(outputs.files.size, "output count");
});
test("compile-to/json-schema: Compile test.ts to JSONSchema", ctx => {
const { types, typeChecker } = getTestTypes(["Document"], EXAMPLE_TS);
const compiler = JSONSchemaCompilerTarget.createCompiler(typeChecker);
const outputs = compiler.compileProgram([
{
inputType: types.Document,
outputLocation: {
fileName: "json-schema/schema.json"
}
}
]);
for (const [fileName, output] of outputs.files) {
ctx.snapshot(output.text, fileName);
const map = output.sourceMap.toJSON();
const snapshotSourceMap: RawSourceMap = {
...map,
sources: map.sources.map((s, i) => `source ${i}`),
sourcesContent: map.sourcesContent?.map((s, i) => `source ${i}: length ${s?.length}`)
};
ctx.snapshot(snapshotSourceMap, `${fileName}.map`);
}
ctx.snapshot(outputs.files.size, "output count");
});
test("compile-to/proto3: Compile test.ts to Proto3", ctx => {
const { types, typeChecker } = getTestTypes(["Document"], EXAMPLE_TS);
const compiler = Proto3CompilerTarget.createCompiler(typeChecker);
const outputs = compiler.compileProgram([
{
inputType: types.Document,
outputLocation: {
fileName: "proto/schema.proto"
}
}
]);
for (const [fileName, output] of outputs.files) {
ctx.snapshot(output.text, fileName);
const map = output.sourceMap.toJSON();
const snapshotSourceMap: RawSourceMap = {
...map,
sources: map.sources.map((s, i) => `source ${i}`),
sourcesContent: map.sourcesContent?.map((s, i) => `source ${i}: length ${s?.length}`)
};
ctx.snapshot(snapshotSourceMap, `${fileName}.map`);
}
ctx.snapshot(outputs.files.size, "output count");
});
test("README example: Typescript to C", ctx => {
const { types, typeChecker } = getTestTypes(
["TypeA"],
`
export interface TypeA {
name: string;
workplace: Location;
}
interface Location {
id: bigint;
title: string;
description: string;
lat: number;
lng: number;
}
`
);
const typeA = types.TypeA;
const typescriptToC = new SimpleTypeCompiler(typeChecker, compiler => ({
// Called by the compiler to compile a SimpleType (`type`) to an AST node.
compileType({ type, path, visit }) {
const builder = compiler.nodeBuilder(type, path);
switch (type.kind) {
// Usually types translate directly to the target language,
// so your compileType function can return a normal AST node.
case "BOOLEAN":
return builder.node`bool_t`;
case "STRING":
return builder.node`char*`;
case "BIG_INT":
return builder.node`int64_t`;
case "NUMBER":
return builder.node`double`;
// In some cases, we need to map a type to a declaration in the target language.
// For this example, we'll map all object-like types to a `typedef struct {}` declaration.
case "INTERFACE":
case "CLASS":
case "OBJECT": {
// Declarations are assigned locations in a compiler output file.
const declarationLocation = compiler.assignDeclarationLocation(type, path);
const fields = Visitor[type.kind].mapNamedMembers<SimpleTypeCompilerNode>({
path,
type,
visit: visit.with(({ type, path }) => {
const builder = compiler.nodeBuilder(type, path);
// `path` is a list of steps from a root type to the current type.
// In this example, we're mapping over the member types in a object-like Typescript type.
const step = SimpleTypePath.last(path) as SimpleTypePathStepNamedMember;
const member = step.member;
// Often, declarations aren't syntactically valid in arbitrary locations.
// Instead we refer to declarations by name, and sometimes need an import.
// The `builder.reference` function will compiler a *reference* to the target declaration
// using your `compileReference` callback.
// If the target is not a declaration, it's returned as-is.
const memberType = builder.reference(compiler.compileType(type, path, declarationLocation));
return builder.node` ${memberType} ${member.name};`;
})
});
const newlineSeparatedFields = builder.node(fields).joinNodes("\n");
return builder.declaration(declarationLocation, builder.node`typedef struct {\n${newlineSeparatedFields}\n} ${declarationLocation.name};`);
}
default:
throw new Error(`Unsupported type: ${type.kind}`);
}
},
// Called by the compiler to compile a reference to a declaration.
// Declaration locations can have a fileName, namespace, and name,
// although not all languages need to use these.
compileReference({ to }) {
const builder = compiler.anonymousNodeBuilder();
const isPointerType = builder.isDeclaration(to) && to.type?.kind === "INTERFACE";
return builder.node`${to.location.name}${isPointerType ? "*" : ""}`;
},
// Called by the compiler after compiling all types to AST nodes.
// This function is called once per output file to compile any references
// that file has to other files, and combine together the declarations in the file.
compileFile(file) {
const builder = compiler.anonymousNodeBuilder();
const includes = Array.from(new Set(file.references.map(ref => ref.fileName))).filter(fileName => fileName !== file.fileName);
return builder.node([...includes.map(include => builder.node`#include "${include}"`), ...file.nodes]).joinNodes("\n\n");
}
}));
// Run the compiler to produce outputs files.
// It's up to you to write these to disk, post-process them, etc.
const { files } = typescriptToC.compileProgram([
{
inputType: typeA,
outputLocation: {
fileName: "c/types.h"
}
}
]);
for (const [fileName, outputFile] of files) {
ctx.snapshot(outputFile.text, fileName);
}
});