-
-
Notifications
You must be signed in to change notification settings - Fork 246
Expand file tree
/
Copy pathopenapi-patterns.spec.ts
More file actions
436 lines (410 loc) · 13.4 KB
/
Copy pathopenapi-patterns.spec.ts
File metadata and controls
436 lines (410 loc) · 13.4 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
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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
import { describe, it, expect } from "vitest";
import $RefParser from "../../../lib/index.js";
describe("OpenAPI 3.0 schema patterns", () => {
describe("components/schemas with $ref composition", () => {
const schema = {
openapi: "3.0.0",
info: { title: "Pet Store", version: "1.0.0" },
paths: {
"/pets": {
get: {
responses: {
"200": {
description: "A list of pets",
content: {
"application/json": {
schema: {
type: "array",
items: { $ref: "#/components/schemas/Pet" },
},
},
},
},
},
},
post: {
requestBody: {
content: {
"application/json": {
schema: { $ref: "#/components/schemas/NewPet" },
},
},
},
responses: {
"201": {
description: "Pet created",
content: {
"application/json": {
schema: { $ref: "#/components/schemas/Pet" },
},
},
},
},
},
},
},
components: {
schemas: {
Pet: {
allOf: [
{ $ref: "#/components/schemas/NewPet" },
{
type: "object",
required: ["id"],
properties: {
id: { type: "integer", format: "int64" },
},
},
],
},
NewPet: {
type: "object",
required: ["name"],
properties: {
name: { type: "string" },
tag: { type: "string" },
},
},
},
},
};
it("should dereference allOf composition in components/schemas", async () => {
const parser = new $RefParser();
const result = await parser.dereference(structuredClone(schema));
expect(result).to.equal(parser.schema);
// Pet's allOf[0] should be dereferenced to the NewPet schema
const pet = (result as any).components.schemas.Pet;
expect(pet.allOf[0]).to.deep.equal({
type: "object",
required: ["name"],
properties: {
name: { type: "string" },
tag: { type: "string" },
},
});
// References from paths should resolve to same objects
const itemsSchema = (result as any).paths["/pets"].get.responses["200"].content["application/json"].schema.items;
expect(itemsSchema).to.equal((result as any).components.schemas.Pet);
expect(parser.$refs.circular).to.equal(false);
});
it("should bundle successfully", async () => {
const parser = new $RefParser();
const result = await parser.bundle(structuredClone(schema));
expect(result).to.equal(parser.schema);
// After bundling, all $refs should still be internal
const itemsRef = (result as any).paths["/pets"].get.responses["200"].content["application/json"].schema.items;
expect(itemsRef.$ref).to.equal("#/components/schemas/Pet");
});
});
describe("OpenAPI 3.1 response refs with apiKey security", () => {
const schema = {
openapi: "3.1.0",
info: { title: "Xquik API", version: "1.0" },
paths: {
"/api/v1/x/tweets/search": {
get: {
operationId: "searchTweets",
parameters: [
{
name: "q",
in: "query",
required: true,
schema: { type: "string" },
},
],
responses: {
"200": {
description: "Search results",
content: {
"application/json": {
schema: { $ref: "#/components/schemas/TweetSearchResponse" },
},
},
},
},
security: [{ apiKey: [] }],
},
},
},
components: {
securitySchemes: {
apiKey: {
type: "apiKey",
in: "header",
name: "x-api-key",
},
},
schemas: {
TweetSearchResponse: {
type: "object",
properties: {
data: {
type: "array",
items: { $ref: "#/components/schemas/Tweet" },
},
},
},
Tweet: {
type: "object",
properties: {
id: { type: "string" },
text: { type: "string" },
},
},
},
},
};
it("should dereference nested response schemas and preserve apiKey metadata", async () => {
const parser = new $RefParser();
const result = await parser.dereference(structuredClone(schema));
const responseSchema = (result as any).paths["/api/v1/x/tweets/search"].get.responses["200"].content[
"application/json"
].schema;
expect(responseSchema).to.equal((result as any).components.schemas.TweetSearchResponse);
expect(responseSchema.properties.data.items).to.equal((result as any).components.schemas.Tweet);
expect((result as any).components.securitySchemes.apiKey.name).to.equal("x-api-key");
expect(parser.$refs.circular).to.equal(false);
});
});
describe("oneOf discriminator pattern", () => {
const schema = {
type: "object",
properties: {
shape: {
oneOf: [
{ $ref: "#/definitions/Circle" },
{ $ref: "#/definitions/Rectangle" },
{ $ref: "#/definitions/Triangle" },
],
discriminator: {
propertyName: "shapeType",
},
},
},
definitions: {
Shape: {
type: "object",
required: ["shapeType"],
properties: {
shapeType: { type: "string" },
color: { type: "string" },
},
},
Circle: {
allOf: [
{ $ref: "#/definitions/Shape" },
{
type: "object",
properties: {
radius: { type: "number" },
},
},
],
},
Rectangle: {
allOf: [
{ $ref: "#/definitions/Shape" },
{
type: "object",
properties: {
width: { type: "number" },
height: { type: "number" },
},
},
],
},
Triangle: {
allOf: [
{ $ref: "#/definitions/Shape" },
{
type: "object",
properties: {
base: { type: "number" },
height: { type: "number" },
},
},
],
},
},
};
it("should dereference oneOf with shared base type via allOf", async () => {
const parser = new $RefParser();
const result = await parser.dereference(structuredClone(schema));
const circle = (result as any).definitions.Circle;
const rectangle = (result as any).definitions.Rectangle;
const triangle = (result as any).definitions.Triangle;
// All three shapes should share the same dereferenced Shape base
expect(circle.allOf[0]).to.equal(rectangle.allOf[0]);
expect(circle.allOf[0]).to.equal(triangle.allOf[0]);
// The base should be the Shape schema
expect(circle.allOf[0]).to.deep.equal({
type: "object",
required: ["shapeType"],
properties: {
shapeType: { type: "string" },
color: { type: "string" },
},
});
// oneOf items should be dereferenced
const shapeOneOf = (result as any).properties.shape.oneOf;
expect(shapeOneOf[0]).to.equal((result as any).definitions.Circle);
expect(shapeOneOf[1]).to.equal((result as any).definitions.Rectangle);
expect(shapeOneOf[2]).to.equal((result as any).definitions.Triangle);
});
});
describe("anyOf with nullable pattern", () => {
const schema = {
type: "object",
properties: {
owner: {
anyOf: [{ $ref: "#/definitions/Person" }, { type: "null" }],
},
address: {
anyOf: [{ $ref: "#/definitions/Address" }, { type: "null" }],
},
},
definitions: {
Person: {
type: "object",
properties: {
name: { type: "string" },
address: {
anyOf: [{ $ref: "#/definitions/Address" }, { type: "null" }],
},
},
},
Address: {
type: "object",
properties: {
street: { type: "string" },
city: { type: "string" },
state: { type: "string" },
},
},
},
};
it("should dereference anyOf with nullable pattern", async () => {
const parser = new $RefParser();
const result = await parser.dereference(structuredClone(schema));
// Address should be shared across all references
const ownerAddress = (result as any).properties.owner.anyOf[0];
expect(ownerAddress).to.equal((result as any).definitions.Person);
const personAddress = (result as any).definitions.Person.properties.address.anyOf[0];
const topAddress = (result as any).properties.address.anyOf[0];
expect(personAddress).to.equal(topAddress);
expect(personAddress).to.equal((result as any).definitions.Address);
});
});
describe("deeply nested component references (OpenAPI response/error pattern)", () => {
const schema = {
components: {
schemas: {
Error: {
type: "object",
properties: {
code: { type: "integer" },
message: { type: "string" },
details: {
type: "array",
items: { $ref: "#/components/schemas/ErrorDetail" },
},
},
},
ErrorDetail: {
type: "object",
properties: {
field: { type: "string" },
reason: { type: "string" },
},
},
PaginatedResponse: {
type: "object",
properties: {
data: {
type: "array",
items: { $ref: "#/components/schemas/User" },
},
pagination: { $ref: "#/components/schemas/Pagination" },
error: { $ref: "#/components/schemas/Error" },
},
},
User: {
type: "object",
properties: {
id: { type: "string" },
email: { type: "string" },
profile: { $ref: "#/components/schemas/UserProfile" },
},
},
UserProfile: {
type: "object",
properties: {
displayName: { type: "string" },
avatar: { type: "string", format: "uri" },
},
},
Pagination: {
type: "object",
properties: {
page: { type: "integer" },
perPage: { type: "integer" },
total: { type: "integer" },
},
},
},
},
};
it("should dereference multi-level nested refs", async () => {
const parser = new $RefParser();
const result = await parser.dereference(structuredClone(schema));
const paginated = (result as any).components.schemas.PaginatedResponse;
// data.items should resolve to User
expect(paginated.properties.data.items).to.equal((result as any).components.schemas.User);
// pagination should resolve to Pagination
expect(paginated.properties.pagination).to.equal((result as any).components.schemas.Pagination);
// error should resolve to Error
expect(paginated.properties.error).to.equal((result as any).components.schemas.Error);
// User.profile should resolve to UserProfile
expect((result as any).components.schemas.User.properties.profile).to.equal(
(result as any).components.schemas.UserProfile,
);
// Error.details.items should resolve to ErrorDetail
expect((result as any).components.schemas.Error.properties.details.items).to.equal(
(result as any).components.schemas.ErrorDetail,
);
expect(parser.$refs.circular).to.equal(false);
});
});
describe("$ref with sibling properties (OpenAPI extended $ref)", () => {
const schema = {
type: "object",
properties: {
pet: {
$ref: "#/definitions/Pet",
description: "The user's pet",
"x-custom": "custom-value",
},
},
definitions: {
Pet: {
type: "object",
properties: {
name: { type: "string" },
species: { type: "string" },
},
},
},
};
it("should merge sibling properties with dereferenced value", async () => {
const parser = new $RefParser();
const result = await parser.dereference(structuredClone(schema));
const pet = (result as any).properties.pet;
// Should have the original properties from the $ref target
expect(pet.type).to.equal("object");
expect(pet.properties.name).to.deep.equal({ type: "string" });
// Should also have the sibling properties
expect(pet.description).to.equal("The user's pet");
expect(pet["x-custom"]).to.equal("custom-value");
});
});
});