-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathgen-api-models.test.ts
More file actions
299 lines (267 loc) · 8.21 KB
/
Copy pathgen-api-models.test.ts
File metadata and controls
299 lines (267 loc) · 8.21 KB
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
/* tslint:disable:no-duplicate-string */
import * as SwaggerParser from "swagger-parser";
import { Schema, Spec } from "swagger-schema-official";
import {
initNunJucksEnvironment,
renderDefinitionCode,
renderOperation
} from "../gen-api-models";
const env = initNunJucksEnvironment();
let spec;
beforeAll(async () =>
(spec = await SwaggerParser.bundle(`${__dirname}/api.yaml`)));
describe("gen-api-models", () => {
it("should not generate duplicate imports", async () => {
expect(spec.definitions).toBeDefined();
if (spec.definitions === undefined) {
fail("unexpected specs");
return;
}
const profileDefinition = spec.definitions.Profile;
expect(profileDefinition).toBeDefined();
const code = await renderDefinitionCode(
env,
"Profile",
profileDefinition,
false
);
expect(code).toBeDefined();
expect(code).toMatchSnapshot("dup-imports");
});
it("should handle WithinRangeStrings", async () => {
const definition = spec.definitions.WithinRangeStringTest;
const code = await renderDefinitionCode(
env,
"WithinRangeStringTest",
definition,
false
);
expect(code).toContain("WithinRangeString(10, 11)");
expect(code).toMatchSnapshot("within-range-strings");
});
it("should handle NonNegativeNumbers", async () => {
const definition = spec.definitions.NonNegativeNumberTest;
const code = await renderDefinitionCode(
env,
"NonNegativeNumberTest",
definition,
false
);
expect(code).toContain("NonNegativeNumber");
expect(code).toMatchSnapshot("non-negative-numbers");
});
it("should handle NonNegativeIntegers", async () => {
const definition = spec.definitions.NonNegativeIntegerTest;
const code = await renderDefinitionCode(
env,
"NonNegativeIntegerTest",
definition,
false
);
expect(code).toContain("NonNegativeInteger");
expect(code).toMatchSnapshot("non-negative-integer");
});
it("should handle WithinRangeNumbers", async () => {
const definition = spec.definitions.WithinRangeNumberTest;
const code = await renderDefinitionCode(
env,
"WithinRangeNumberTest",
definition,
false
);
expect(code).toContain("WithinRangeNumber");
expect(code).toMatchSnapshot("within-range-numbers");
});
it("should handle WithinRangeIntegers", async () => {
const definition = spec.definitions.WithinRangeIntegerTest;
const code = await renderDefinitionCode(
env,
"WithinRangeIntegerTest",
definition,
false
);
expect(code).toContain("WithinRangeInteger");
expect(code).toMatchSnapshot("within-range-integer");
});
it("should handle CustomStringFormats", async () => {
const definition = spec.definitions.CustomStringFormatTest;
const code = await renderDefinitionCode(
env,
"CustomStringFormatTest",
definition,
false
);
expect(code).toContain(
"import { SomeCustomStringType as SomeCustomStringTypeT }"
);
expect(code).toMatchSnapshot("custom-string-format");
});
it("should handle enums", async () => {
const definition = spec.definitions.EnumTest;
const code = await renderDefinitionCode(env, "EnumTest", definition, false);
expect(code).toMatchSnapshot("enum-simple");
});
it("should generate a dictionary from additionalProperties", async () => {
const definition = spec.definitions.AdditionalPropsTest;
const code = await renderDefinitionCode(
env,
"AdditionalPropsTest",
definition,
false
);
expect(code).toContain("t.dictionary");
expect(code).toMatchSnapshot("additional-properties");
});
it("should generate a dictionary from additionalProperties: true", async () => {
const definition = spec.definitions.AdditionalPropsTrueTest;
const code = await renderDefinitionCode(
env,
"AdditionalPropsTrueTest",
definition,
false
);
expect(code).toContain("t.dictionary");
expect(code).toContain("t.any");
expect(code).toMatchSnapshot("additional-properties-true");
});
it("should support additionalProperties default value", async () => {
const definition = spec.definitions.AdditionalpropsDefault;
const code = await renderDefinitionCode(
env,
"AdditionalpropsDefault",
definition,
false
);
expect(code).toContain("t.dictionary");
expect(code).toContain("withDefault");
expect(code).toMatchSnapshot("additional-properties-default");
});
it("should generate a type intersection from allOf", async () => {
const definition = spec.definitions.AllOfTest;
const code = await renderDefinitionCode(
env,
"AllOfTest",
definition,
false
);
expect(code).toContain("t.intersection");
expect(code).toContain("PaginationResponse");
expect(code).toMatchSnapshot("all-of-test");
});
it("should generate a type union from oneOf", async () => {
const definition = spec.definitions.OneOfTest;
const code = await renderDefinitionCode(
env,
"OneOfTest",
definition,
false
);
expect(code).toContain("t.union");
expect(code).toMatchSnapshot("oneof-test");
});
it("should generate a type union from allOf when x-one-of is used", async () => {
const definition = spec.definitions.AllOfOneOfTest;
const code = await renderDefinitionCode(
env,
"AllOfOneOfTest",
definition,
false
);
expect(code).toContain("t.union");
expect(code).toContain("PaginationResponse");
expect(code).toMatchSnapshot("allofoneof-test");
});
it("should parse custom inline properties", async () => {
const definition = spec.definitions.InlinePropertyTest;
const code = await renderDefinitionCode(
env,
"InlinePropertyTest",
definition,
false
);
expect(code).toContain("PatternString");
expect(code).toMatchSnapshot("inline-property");
});
it("should parse nested objects", async () => {
const definition = spec.definitions.NestedObjectTest;
const code = await renderDefinitionCode(
env,
"NestedObjectTest",
definition,
false
);
expect(code).toContain("t.TypeOf<typeof NestedObjectTest>");
expect(code).toMatchSnapshot("nested-object");
});
it("should include aliases for types already defined elsewhere if they have the same name", async () => {
const definition = spec.definitions.OrganizationFiscalCode;
const code = await renderDefinitionCode(
env,
"OrganizationFiscalCode",
definition,
false
);
expect(code).toContain(
"import { OrganizationFiscalCode as OrganizationFiscalCodeT }"
);
});
it("should include aliases for types already defined elsewhere if they have a different name", async () => {
const definition = spec.definitions.OrganizationFiscalCodeTest;
const code = await renderDefinitionCode(
env,
"OrganizationFiscalCodeTest",
definition,
false
);
expect(code).toContain("OrganizationFiscalCodeTest");
expect(code).toMatchSnapshot("defined-type");
});
it("should generate the operator definition", async () => {
const operation = spec.paths["/test-auth-bearer"].get;
const code = await renderOperation(
"get",
operation.operationId,
operation,
spec.parameters,
spec.securityDefinitions,
[],
{},
"undefined",
"undefined",
true
);
expect(code.e1).toMatchSnapshot();
});
it("should support file uploads", async () => {
const operation = spec.paths["/test-file-upload"].post;
const code = await renderOperation(
"post",
operation.operationId,
operation,
spec.parameters,
spec.securityDefinitions,
[],
{},
"undefined",
"undefined",
true
);
expect(code.e1).toMatchSnapshot();
});
it("should support generate serializers", async () => {
const operation = spec.paths["/test-serializers"].post;
const code = await renderOperation(
"post",
operation.operationId,
operation,
spec.parameters,
spec.securityDefinitions,
[],
{},
"undefined",
"undefined",
true
);
expect(code.e1).toMatchSnapshot();
});
});