-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.axios.spec.ts
More file actions
496 lines (438 loc) · 14.7 KB
/
index.axios.spec.ts
File metadata and controls
496 lines (438 loc) · 14.7 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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
import type {Server} from "node:http"
import {afterAll, beforeAll, describe, expect, it} from "@jest/globals"
import type {AxiosError} from "axios"
import {
ApiClient,
E2ETestClientServers,
} from "./generated/client/axios/client.ts"
import type {t_ProductOrder} from "./generated/client/axios/models.ts"
import {startServerFunctions} from "./index.ts"
import {numberBetween} from "./test-utils.ts"
describe.each(
startServerFunctions,
)("e2e - typescript-axios client against $name server", ({startServer}) => {
let server: Server | undefined
let client: ApiClient
beforeAll(async () => {
const args = await startServer()
client = new ApiClient({
basePath: E2ETestClientServers.server("{protocol}://{host}:{port}").build(
undefined,
undefined,
args.address.port.toString(),
),
defaultHeaders: {
Authorization: "Bearer default-header",
},
})
server = args.server
})
afterAll(async () => {
server?.close()
})
describe("CORS", () => {
it("should send the correct CORS headers", async () => {
const {headers} = await client.getResponsesEmpty(undefined, {
headers: {
Origin: "http://e2e.example.com",
},
})
expect(headers).toMatchObject({
"access-control-allow-origin": "http://example.com",
"access-control-allow-credentials": "true",
})
})
it("should support pre-flight requests", async () => {
const {headers} = await client.getResponsesEmpty(undefined, {
method: "OPTIONS",
headers: {
Origin: "http://e2e.example.com",
"Access-Control-Request-Method": "POST",
},
})
expect(headers).toMatchObject({
"access-control-allow-origin": "http://example.com",
"access-control-allow-credentials": "true",
"access-control-allow-methods": "GET,OPTIONS",
"access-control-allow-headers": "Authorization,Content-Type",
})
})
})
describe("404 handling", () => {
it("should handle 404s", async () => {
const err = await client
.getResponsesEmpty(undefined, {url: "/not-found"})
.then(
() => {
throw new Error("expected request to fail")
},
(err: AxiosError) => err,
)
expect(err).toMatchObject({
message: "Request failed with status code 404",
name: "AxiosError",
status: 404,
})
expect(err.response?.data).toMatchObject({
code: 404,
message: "route not found",
})
})
})
describe("GET /headers/undeclared", () => {
it("provides the default headers", async () => {
const {data} = await client.getHeadersUndeclared()
expect(data).toEqual({
typedHeaders: undefined,
rawHeaders: expect.objectContaining({
authorization: "Bearer default-header",
}),
})
})
it("provides default headers, and arbitrary extra headers", async () => {
const {data} = await client.getHeadersUndeclared(undefined, {
headers: {"some-random-header": "arbitrary-header"},
})
expect(data).toEqual({
typedHeaders: undefined,
rawHeaders: expect.objectContaining({
authorization: "Bearer default-header",
"some-random-header": "arbitrary-header",
}),
})
})
})
describe("GET /headers/request", () => {
it("provides the default headers", async () => {
const {data} = await client.getHeadersRequest()
expect(data).toEqual({
typedHeaders: {
authorization: "Bearer default-header",
},
rawHeaders: expect.objectContaining({
authorization: "Bearer default-header",
}),
})
})
it("provides route level header with default headers", async () => {
const {data} = await client.getHeadersRequest({
routeLevelHeader: "route-header",
})
expect(data).toEqual({
typedHeaders: {
authorization: "Bearer default-header",
"route-level-header": "route-header",
},
rawHeaders: expect.objectContaining({
authorization: "Bearer default-header",
"route-level-header": "route-header",
}),
})
})
it("overrides the default headers when a route level header is provided", async () => {
const {data} = await client.getHeadersRequest({
authorization: "Bearer override",
})
expect(data).toEqual({
typedHeaders: {
authorization: "Bearer override",
},
rawHeaders: expect.objectContaining({
authorization: "Bearer override",
}),
})
})
it("overrides the default headers when a config level header is provided", async () => {
const {data} = await client.getHeadersRequest(undefined, undefined, {
headers: {authorization: "Bearer config"},
})
expect(data).toEqual({
typedHeaders: {
authorization: "Bearer config",
},
rawHeaders: expect.objectContaining({
authorization: "Bearer config",
}),
})
})
it("provides route level header with default headers, and arbitrary extra headers", async () => {
const {data} = await client.getHeadersRequest(
{routeLevelHeader: "route-header"},
undefined,
{headers: {"some-random-header": "arbitrary-header"}},
)
expect(data).toEqual({
typedHeaders: {
authorization: "Bearer default-header",
"route-level-header": "route-header",
},
rawHeaders: expect.objectContaining({
authorization: "Bearer default-header",
"route-level-header": "route-header",
"some-random-header": "arbitrary-header",
}),
})
})
it("parses headers correctly", async () => {
const {data} = await client.getHeadersRequest({
numberHeader: 12,
booleanHeader: true,
secondBooleanHeader: false,
authorization: "Bearer test",
})
expect(data).toEqual({
rawHeaders: expect.objectContaining({
authorization: "Bearer test",
"number-header": "12",
"boolean-header": "true",
"second-boolean-header": "false",
}),
typedHeaders: {
authorization: "Bearer test",
"number-header": 12,
"boolean-header": true,
"second-boolean-header": false,
},
})
})
it("rejects headers of the wrong type (number)", async () => {
const err = await client
.getHeadersRequest(
// @ts-expect-error testing validation
{numberHeader: "i'm not a number"},
)
.then(
() => {
throw new Error("expected request to fail")
},
(err: AxiosError) => err,
)
expect(err.message).toMatch("Request failed with status code 400")
expect(err.status).toBe(400)
expect(err.response?.data).toMatchObject({
message: "Request validation failed parsing request header",
phase: "request_validation",
cause: expect.stringMatching(
/Expected number, received nan|Invalid input: expected number, received NaN/,
),
})
})
it("rejects headers of the wrong type (boolean)", async () => {
const err = await client
.getHeadersRequest(
// @ts-expect-error testing validation
{booleanHeader: "i'm not a boolean"},
)
.then(
() => {
throw new Error("expected request to fail")
},
(err: AxiosError) => err,
)
expect(err.message).toMatch("Request failed with status code 400")
expect(err.status).toBe(400)
expect(err.response?.data).toMatchObject({
message: "Request validation failed parsing request header",
phase: "request_validation",
cause: expect.stringMatching(
/Expected boolean, received string|Invalid input: expected boolean, received string/,
),
})
})
})
describe("GET /validation/numbers/random-number", () => {
it("returns a random number", async () => {
const {data} = await client.getValidationNumbersRandomNumber()
expect(data).toEqual({
result: numberBetween(0, 10),
params: {
min: 0,
max: 10,
forbidden: [],
},
})
})
it("returns 400 when parameters fail validation", async () => {
const err = await client
.getValidationNumbersRandomNumber({
// @ts-expect-error: testing runtime validation
min: "one",
// @ts-expect-error: testing runtime validation
max: "ten",
})
.then(
() => {
throw new Error("expected request to fail")
},
(err: AxiosError) => err,
)
expect(err.message).toMatch("Request failed with status code 400")
expect(err.status).toBe(400)
expect(err.response?.data).toMatchObject({
message: "Request validation failed parsing querystring",
phase: "request_validation",
cause: expect.stringMatching(
/Expected number, received nan|Invalid input: expected number, received NaN/,
),
})
})
it("handles a query param array of 1 element", async () => {
const {data} = await client.getValidationNumbersRandomNumber({
forbidden: [1],
})
expect(data.params).toMatchObject({
forbidden: [1],
})
})
it("handles a query param array of multiple elements", async () => {
const {data} = await client.getValidationNumbersRandomNumber({
forbidden: [1, 2, 3],
})
expect(data.params).toMatchObject({
forbidden: [1, 2, 3],
})
})
})
describe("POST /validation/enumeration", () => {
it("should error if the server receives an unknown enum value", async () => {
const res = client.postValidationEnums({
requestBody: {
// @ts-expect-error: purple isn't a valid enum value
colors: "purple",
starRatings: 1,
},
})
await expect(res).rejects.toThrow("Request failed with status code 400")
})
// TODO: figure out how to make a skew between client/server to test client receiving extraneous values
})
describe("POST /validation/optional-body", () => {
it("should send and accept the body if passed", async () => {
const res = await client.postValidationOptionalBody({
requestBody: {id: "123"},
})
expect(res.status).toBe(200)
expect(res.data).toMatchObject({id: "123"})
})
// TODO: axios' default response parsing doesn't handle endpoints that return optional responses well
// probably need to implement our own transformResponse function that is aware of the expected
// status code / content-types and parses appropriately, or uses the content-type response header.
it.skip("should omit the body if not passed", async () => {
const res = await client.postValidationOptionalBody()
expect(res.data).toEqual(undefined)
expect(res.status).toBe(204)
})
})
describe("GET /responses/empty", () => {
it("returns undefined", async () => {
const {status, data} = await client.getResponsesEmpty()
expect(status).toBe(204)
// TODO: this should really be undefined
expect(data).toEqual("")
})
})
describe("GET /responses/500", () => {
it("returns response from error middleware", async () => {
const err = await client.getResponses500().then(
() => {
throw new Error("expected request to fail")
},
(err: AxiosError) => err,
)
expect(err.message).toMatch("Request failed with status code 500")
expect(err.status).toBe(500)
expect(err.response?.data).toMatchObject({
message: "Request handler threw unhandled exception",
phase: "request_handler",
cause: expect.stringContaining("something went wrong"),
})
})
})
describe("GET /escape-hatches", () => {
it("can do raw response handling", async () => {
const res = await client.getEscapeHatchesPlainText()
expect(res.status).toBe(200)
expect(res.data).toBe("Plain text response")
})
})
describe("POST /media-types/text", () => {
it("can send and parse text/plain request bodies", async () => {
const res = await client.postMediaTypesText({
requestBody: "Some plain text",
})
expect(res.status).toBe(200)
expect(res.data).toBe("Some plain text")
})
})
describe("POST /media-types/x-www-form-urlencoded", () => {
it("can send and parse application/x-www-form-urlencoded request bodies", async () => {
const productOrder = {
sku: "sku_123",
quantity: 2,
address: {
address1: "Green Park",
postcode: "SW1A 1AA",
},
} satisfies t_ProductOrder
const res = await client.postMediaTypesXWwwFormUrlencoded({
requestBody: productOrder,
})
expect(res.status).toBe(200)
expect(res.data).toStrictEqual(productOrder)
})
})
describe("POST /media-types/octet-stream", () => {
it("can send and parse application/octet-stream request bodies", async () => {
const blob = new Blob([new Uint8Array([0xde, 0xad, 0xbe, 0xef])], {
type: "application/octet-stream",
})
const res = await client.postMediaTypesOctetStream({
requestBody: blob,
})
expect(res.status).toBe(200)
await expect(res.data).toEqualBlob(blob)
})
})
describe("query parameters", () => {
it("GET /params/simple-query", async () => {
const {status, data} = await client.getParamsSimpleQuery({
orderBy: "asc",
limit: 10,
})
expect(status).toBe(200)
expect(data).toEqual({
orderBy: "asc",
limit: 10,
})
})
it("GET /params/default-object-query", async () => {
const {status, data} = await client.getParamsDefaultObjectQuery({
filter: {name: "John", age: 30},
})
expect(status).toBe(200)
expect(data).toEqual({
filter: {name: "John", age: 30},
})
})
it("GET /params/unexploded-object-query", async () => {
const {status, data} = await client.getParamsUnexplodedObjectQuery({
filter: {name: "John", age: 30},
})
expect(status).toBe(200)
expect(data).toEqual({
filter: {name: "John", age: 30},
})
})
it("GET /params/mixed-query", async () => {
const {status, data} = await client.getParamsMixedQuery({
limit: 10,
statuses: ["open", "closed"],
})
expect(status).toBe(200)
expect(data).toEqual({
limit: 10,
statuses: ["open", "closed"],
})
})
})
})