forked from microsoft/typespec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-host.ts
133 lines (123 loc) · 4.06 KB
/
test-host.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
import { Diagnostic, interpolatePath } from "@typespec/compiler";
import {
createTestHost,
createTestWrapper,
expectDiagnosticEmpty,
resolveVirtualPath,
} from "@typespec/compiler/testing";
import { HttpTestLibrary } from "@typespec/http/testing";
import { OpenAPITestLibrary } from "@typespec/openapi/testing";
import { RestTestLibrary } from "@typespec/rest/testing";
import { VersioningTestLibrary } from "@typespec/versioning/testing";
import { ok } from "assert";
import { OpenAPI3EmitterOptions } from "../src/lib.js";
import { OpenAPI3TestLibrary } from "../src/testing/index.js";
import { OpenAPI3Document } from "../src/types.js";
export async function createOpenAPITestHost() {
return createTestHost({
libraries: [
HttpTestLibrary,
RestTestLibrary,
VersioningTestLibrary,
OpenAPITestLibrary,
OpenAPI3TestLibrary,
],
});
}
export async function createOpenAPITestRunner({
withVersioning,
}: { withVersioning?: boolean } = {}) {
const host = await createOpenAPITestHost();
const importAndUsings = `
import "@typespec/http";
import "@typespec/rest";
import "@typespec/openapi";
import "@typespec/openapi3";
${withVersioning ? `import "@typespec/versioning"` : ""};
using TypeSpec.Rest;
using TypeSpec.Http;
using TypeSpec.OpenAPI;
${withVersioning ? "using TypeSpec.Versioning;" : ""}
`;
return createTestWrapper(host, {
wrapper: (code) => `${importAndUsings} ${code}`,
compilerOptions: {
emit: ["@typespec/openapi3"],
},
});
}
export async function emitOpenApiWithDiagnostics(
code: string,
options: OpenAPI3EmitterOptions = {}
): Promise<[OpenAPI3Document, readonly Diagnostic[]]> {
const runner = await createOpenAPITestRunner();
const outputFile = resolveVirtualPath("openapi.json");
const diagnostics = await runner.diagnose(code, {
noEmit: false,
emit: ["@typespec/openapi3"],
options: {
"@typespec/openapi3": { ...options, "output-file": outputFile },
},
});
const content = runner.fs.get(outputFile);
ok(content, "Expected to have found openapi output");
const doc = JSON.parse(content);
return [doc, diagnostics];
}
export async function diagnoseOpenApiFor(code: string, options: OpenAPI3EmitterOptions = {}) {
const runner = await createOpenAPITestRunner();
const diagnostics = await runner.diagnose(code, {
emit: ["@typespec/openapi3"],
options: { "@typespec/openapi3": options as any },
});
return diagnostics;
}
export async function openApiFor(
code: string,
versions?: string[],
options: OpenAPI3EmitterOptions = {}
) {
const host = await createOpenAPITestHost();
const outPath = resolveVirtualPath("{version}.openapi.json");
host.addTypeSpecFile(
"./main.tsp",
`import "@typespec/http"; import "@typespec/rest"; import "@typespec/openapi"; import "@typespec/openapi3"; ${
versions ? `import "@typespec/versioning"; using TypeSpec.Versioning;` : ""
}using TypeSpec.Rest;using TypeSpec.Http;using TypeSpec.OpenAPI;${code}`
);
const diagnostics = await host.diagnose("./main.tsp", {
noEmit: false,
emit: ["@typespec/openapi3"],
options: { "@typespec/openapi3": { ...options, "output-file": outPath } },
});
expectDiagnosticEmpty(diagnostics);
if (!versions) {
return JSON.parse(host.fs.get(resolveVirtualPath("openapi.json"))!);
} else {
const output: any = {};
for (const version of versions) {
output[version] = JSON.parse(host.fs.get(interpolatePath(outPath, { version: version }))!);
}
return output;
}
}
export async function checkFor(code: string) {
const host = await createOpenAPITestRunner();
return await host.diagnose(code);
}
export async function oapiForModel(name: string, modelDef: string) {
const oapi = await openApiFor(`
${modelDef};
@service({title: "Testing model"})
@route("/")
namespace root {
op read(): { @body body: ${name} };
}
`);
const useSchema = oapi.paths["/"].get.responses[200].content["application/json"].schema;
return {
isRef: !!useSchema.$ref,
useSchema,
schemas: oapi.components.schemas || {},
};
}