-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathgenerateEndpoints.test.ts
633 lines (571 loc) · 20.3 KB
/
generateEndpoints.test.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
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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
import { generateEndpoints } from '@rtk-query/codegen-openapi';
import fs from 'node:fs/promises';
import path, { resolve } from 'node:path';
import { rimraf } from 'rimraf';
import { isDir, removeTempDir } from './cli.test';
const tmpDir = path.resolve(__dirname, 'tmp');
beforeAll(async () => {
if (!(await isDir(tmpDir))) {
await fs.mkdir(tmpDir, { recursive: true });
}
return removeTempDir;
});
afterEach(async () => {
await rimraf(`${tmpDir}/*.ts`, { glob: true });
});
test('calling without `outputFile` returns the generated api', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
});
expect(api).toMatchSnapshot();
});
test('should include default response type in request when includeDefault is set to true', async () => {
const api = await generateEndpoints({
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
includeDefault: true,
});
// eslint-disable-next-line no-template-curly-in-string
expect(api).toMatch(/export type CreateUserApiResponse =[\s\S/*]+status default successful operation[\s/*]+User;/);
});
test('endpoint filtering', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
filterEndpoints: ['loginUser', /Order/],
});
expect(api).toMatchSnapshot('should only have endpoints loginUser, placeOrder, getOrderById, deleteOrder');
});
test('endpoint filtering by function', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
filterEndpoints: (name, endpoint) => name.match(/order/i) !== null && endpoint.verb === 'get',
});
expect(api).toMatch(/getOrderById:/);
expect(api).not.toMatch(/placeOrder:/);
expect(api).not.toMatch(/loginUser:/);
});
test('negated endpoint filtering', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
filterEndpoints: (name) => !/user/i.test(name),
});
expect(api).not.toMatch(/loginUser:/);
});
describe('endpoint overrides', () => {
it('overrides endpoint type', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
filterEndpoints: 'loginUser',
endpointOverrides: [
{
pattern: 'loginUser',
type: 'mutation',
},
],
});
expect(api).not.toMatch(/loginUser: build.query/);
expect(api).toMatch(/loginUser: build.mutation/);
expect(api).toMatchSnapshot('loginUser should be a mutation');
});
it('should override parameters by string', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
endpointOverrides: [
{
pattern: /.*/,
parameterFilter: 'status',
},
],
});
expect(api).not.toMatch(/params: {\n.*queryArg\.\w+\b(?<!\bstatus)/);
expect(api).toMatchSnapshot('should only have the "status" parameter from the endpoints');
});
it('should override parameters by regex', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
endpointOverrides: [
{
pattern: /.*/,
parameterFilter: /e/,
},
],
});
expect(api).not.toMatch(/params: {\n.*queryArg\.[^\We]*\W/);
expect(api).toMatch(/params: {\n.*queryArg\.[\we]*\W/);
expect(api).toMatchSnapshot('should only have the parameters with an "e"');
});
it('should filter by array of parameter strings / regex', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
endpointOverrides: [
{
pattern: /.*/,
parameterFilter: [/e/, /f/],
},
],
});
expect(api).not.toMatch(/params: {\n.*queryArg\.[^\Wef]*\W/);
expect(api).toMatch(/params: {\n.*queryArg\.[\wef]*\W/);
expect(api).toMatchSnapshot('should only have the parameters with an "e" or "f"');
});
it('should filter by function', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
endpointOverrides: [
{
pattern: /.*/,
parameterFilter: (_, param) => !(param.in === 'header'),
},
],
});
expect(api).not.toMatch(/headers: {/);
expect(api).toMatchSnapshot('should remove any parameters from the header');
});
it('should apply first matching filter only', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
endpointOverrides: [
{ pattern: 'findPetsByStatus', parameterFilter: () => true },
{
pattern: /.*/,
parameterFilter: () => false,
},
],
});
const paramsMatches = (api?.match(/params:/) || []).length;
expect(paramsMatches).toBe(1);
expect(api).not.toMatch(/headers: {/);
expect(api).toMatchSnapshot('should remove all parameters except for findPetsByStatus');
});
});
describe('option encodePathParams', () => {
const config = {
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
encodePathParams: true,
};
it('should encode path parameters', async () => {
const api = await generateEndpoints({
...config,
filterEndpoints: ['getOrderById'],
});
// eslint-disable-next-line no-template-curly-in-string
expect(api).toContain('`/store/order/${encodeURIComponent(String(queryArg.orderId))}`');
});
it('should not encode query parameters', async () => {
const api = await generateEndpoints({
...config,
filterEndpoints: ['findPetsByStatus'],
});
expect(api).toContain('status: queryArg.status');
});
it('should not encode body parameters', async () => {
const api = await generateEndpoints({
...config,
filterEndpoints: ['addPet'],
});
expect(api).toContain('body: queryArg.pet');
expect(api).not.toContain('body: encodeURIComponent(String(queryArg.pet))');
});
it('should work correctly with flattenArg option', async () => {
const api = await generateEndpoints({
...config,
flattenArg: true,
filterEndpoints: ['getOrderById'],
});
// eslint-disable-next-line no-template-curly-in-string
expect(api).toContain('`/store/order/${encodeURIComponent(String(queryArg))}`');
});
it('should not encode path parameters when encodePathParams is false', async () => {
const api = await generateEndpoints({
...config,
encodePathParams: false,
filterEndpoints: ['findPetsByStatus', 'getOrderById'],
});
// eslint-disable-next-line no-template-curly-in-string
expect(api).toContain('`/store/order/${queryArg.orderId}`');
});
});
describe('option encodeQueryParams', () => {
const config = {
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
encodeQueryParams: true,
};
it('should conditionally encode query parameters', async () => {
const api = await generateEndpoints({
...config,
filterEndpoints: ['findPetsByStatus'],
});
expect(api).toMatch(
/params:\s*{\s*\n\s*status:\s*queryArg\.status\s*!=\s*null\s*\?\s*encodeURIComponent\(\s*String\(queryArg\.status\)\s*\)\s*:\s*undefined\s*,?\s*\n\s*}/s
);
});
it('should not encode path parameters', async () => {
const api = await generateEndpoints({
...config,
filterEndpoints: ['getOrderById'],
});
// eslint-disable-next-line no-template-curly-in-string
expect(api).toContain('`/store/order/${queryArg.orderId}`');
});
it('should not encode body parameters', async () => {
const api = await generateEndpoints({
...config,
filterEndpoints: ['addPet'],
});
expect(api).toContain('body: queryArg.pet');
expect(api).not.toContain('body: encodeURIComponent(String(queryArg.pet))');
});
it('should not encode query parameters when encodeQueryParams is false', async () => {
const api = await generateEndpoints({
...config,
encodeQueryParams: false,
filterEndpoints: ['findPetsByStatus', 'getOrderById'],
});
expect(api).toContain('status: queryArg.status');
});
});
describe('option flattenArg', () => {
const config = {
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
flattenArg: true,
};
it('should apply a queryArg directly in the path', async () => {
const api = await generateEndpoints({
...config,
filterEndpoints: ['getOrderById'],
});
// eslint-disable-next-line no-template-curly-in-string
expect(api).toContain('`/store/order/${queryArg}`');
expect(api).toMatch(/export type GetOrderByIdApiArg =[\s/*]+ID of order that needs to be fetched[\s/*]+number;/);
});
it('should apply a queryArg directly in the params', async () => {
const api = await generateEndpoints({
...config,
filterEndpoints: ['findPetsByStatus'],
});
expect(api).toContain('status: queryArg');
expect(api).not.toContain('export type FindPetsByStatusApiArg = {');
});
it('should use the queryArg as the entire body', async () => {
const api = await generateEndpoints({
...config,
filterEndpoints: ['addPet'],
});
expect(api).toMatch(/body: queryArg[^.]/);
});
it('should not change anything if there are 2+ arguments.', async () => {
const api = await generateEndpoints({
...config,
filterEndpoints: ['uploadFile'],
});
expect(api).toContain('queryArg.body');
});
it('should flatten an optional arg as an optional type', async () => {
const api = await generateEndpoints({
...config,
filterEndpoints: 'findPetsByTags',
});
expect(api).toMatch(/\| undefined/);
});
it('should not flatten a non-optional arg with a superfluous union', async () => {
const api = await generateEndpoints({
...config,
filterEndpoints: 'getPetById',
});
expect(api).not.toMatch(/^\s*\|/);
});
});
test('hooks generation', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
filterEndpoints: ['getPetById', 'addPet'],
hooks: true,
});
expect(api).toContain('useGetPetByIdQuery');
expect(api).toContain('useAddPetMutation');
expect(api).toMatchSnapshot(
'should generate an `useGetPetByIdQuery` query hook and an `useAddPetMutation` mutation hook'
);
});
it('supports granular hooks generation that includes all query types', async () => {
const api = await generateEndpoints({
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
filterEndpoints: ['getPetById', 'addPet'],
hooks: {
queries: true,
lazyQueries: true,
mutations: true,
},
});
expect(api).toContain('useGetPetByIdQuery');
expect(api).toContain('useLazyGetPetByIdQuery');
expect(api).toContain('useAddPetMutation');
expect(api).toMatchSnapshot();
});
it('supports granular hooks generation with only queries', async () => {
const api = await generateEndpoints({
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
filterEndpoints: ['getPetById', 'addPet'],
hooks: {
queries: true,
lazyQueries: false,
mutations: false,
},
});
expect(api).toContain('useGetPetByIdQuery');
expect(api).not.toContain('useLazyGetPetByIdQuery');
expect(api).not.toContain('useAddPetMutation');
expect(api).toMatchSnapshot();
});
it('supports granular hooks generation with only lazy queries', async () => {
const api = await generateEndpoints({
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
filterEndpoints: ['getPetById', 'addPet'],
hooks: {
queries: false,
lazyQueries: true,
mutations: false,
},
});
expect(api).not.toContain('useGetPetByIdQuery');
expect(api).toContain('useLazyGetPetByIdQuery');
expect(api).not.toContain('useAddPetMutation');
expect(api).toMatchSnapshot();
});
it('supports granular hooks generation with only mutations', async () => {
const api = await generateEndpoints({
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
filterEndpoints: ['getPetById', 'addPet'],
hooks: {
queries: false,
lazyQueries: false,
mutations: true,
},
});
expect(api).not.toContain('useGetPetByIdQuery');
expect(api).not.toContain('useLazyGetPetByIdQuery');
expect(api).toContain('useAddPetMutation');
expect(api).toMatchSnapshot();
});
it('falls back to the `title` parameter for the body parameter name when no other name is available', async () => {
const api = await generateEndpoints({
apiFile: 'fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/title-as-param-name.json'),
});
expect(api).not.toContain('queryArg.body');
expect(api).toContain('queryArg.exportedEntityIds');
expect(api).toContain('queryArg.rawData');
expect(api).toMatchSnapshot();
});
test('hooks generation uses overrides', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
filterEndpoints: 'loginUser',
endpointOverrides: [
{
pattern: 'loginUser',
type: 'mutation',
},
],
hooks: true,
});
expect(api).not.toContain('useLoginUserQuery');
expect(api).toContain('useLoginUserMutation');
expect(api).toMatchSnapshot('should generate an `useLoginMutation` mutation hook');
});
test('should use brackets in a querystring urls arg, when the arg contains full stops', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/params.json'),
});
// eslint-disable-next-line no-template-curly-in-string
expect(api).toContain('`/api/v1/list/${queryArg["item.id"]}`');
expect(api).toMatchSnapshot();
});
test('duplicate parameter names must be prefixed with a path or query prefix', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/params.json'),
});
// eslint-disable-next-line no-template-curly-in-string
expect(api).toContain('pathSomeName: string');
expect(api).toContain('querySomeName: string');
expect(api).toMatchSnapshot();
});
test('operation suffixes are applied', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
operationNameSuffix: 'V2',
});
expect(api).toContain('AddPetV2');
expect(api).toMatchSnapshot();
});
test('apiImport builds correct `import` statement', async () => {
const api = await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
schemaFile: resolve(__dirname, 'fixtures/params.json'),
filterEndpoints: [],
apiImport: 'myApi',
});
expect(api).toContain('myApi as api');
});
describe('import paths', () => {
beforeAll(async () => {
if (!(await isDir(tmpDir))) {
await fs.mkdir(tmpDir, { recursive: true });
}
});
afterEach(async () => {
await rimraf(`${tmpDir}/*.ts`, { glob: true });
});
test('should create paths relative to `outFile` when `apiFile` is relative (different folder)', async () => {
await generateEndpoints({
unionUndefined: true,
apiFile: './fixtures/emptyApi.ts',
outputFile: './test/tmp/out.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
filterEndpoints: [],
hooks: true,
tag: true,
});
expect(await fs.readFile('./test/tmp/out.ts', 'utf8')).toContain("import { api } from '../../fixtures/emptyApi'");
});
test('should create paths relative to `outFile` when `apiFile` is relative (same folder)', async () => {
await fs.writeFile('./test/tmp/emptyApi.ts', await fs.readFile('./test/fixtures/emptyApi.ts', 'utf8'));
await generateEndpoints({
unionUndefined: true,
apiFile: './test/tmp/emptyApi.ts',
outputFile: './test/tmp/out.ts',
schemaFile: resolve(__dirname, 'fixtures/petstore.json'),
filterEndpoints: [],
hooks: true,
tag: true,
});
expect(await fs.readFile('./test/tmp/out.ts', 'utf8')).toContain("import { api } from './emptyApi'");
});
});
describe('yaml parsing', () => {
it('should parse a yaml schema from a URL', async () => {
const result = await generateEndpoints({
unionUndefined: true,
apiFile: './tmp/emptyApi.ts',
schemaFile: 'https://petstore3.swagger.io/api/v3/openapi.yaml',
hooks: true,
tag: true,
});
expect(result).toMatchSnapshot();
});
it('should be able to use read a yaml file', async () => {
const result = await generateEndpoints({
unionUndefined: true,
apiFile: './tmp/emptyApi.ts',
schemaFile: `./test/fixtures/petstore.yaml`,
hooks: true,
tag: true,
});
expect(result).toMatchSnapshot();
});
it("should generate params with non quoted keys if they don't contain special characters", async () => {
const output = await generateEndpoints({
unionUndefined: true,
apiFile: './tmp/emptyApi.ts',
schemaFile: './test/fixtures/fhir.yaml',
hooks: true,
tag: true,
});
expect(output).toMatchSnapshot();
expect(output).toContain('foo: queryArg.foo,');
expect(output).toContain('_foo: queryArg._foo,');
expect(output).toContain('_bar_bar: queryArg._bar_bar,');
expect(output).toContain('foo_bar: queryArg.fooBar,');
expect(output).toContain('namingConflict: queryArg.namingConflict,');
expect(output).toContain('naming_conflict: queryArg.naming_conflict,');
});
it('should generate params with quoted keys if they contain special characters', async () => {
const output = await generateEndpoints({
unionUndefined: true,
apiFile: './tmp/emptyApi.ts',
schemaFile: './test/fixtures/fhir.yaml',
hooks: true,
tag: true,
});
expect(output).toContain('"-bar-bar": queryArg["-bar-bar"],');
expect(output).toContain('"foo:bar-foo.bar/foo": queryArg["foo:bar-foo.bar/foo"],');
});
});
describe('tests from issues', () => {
it('issue #2002: should be able to generate proper intersection types', async () => {
const result = await generateEndpoints({
apiFile: './tmp/emptyApi.ts',
schemaFile: './test/fixtures/issue-2002.json',
hooks: true,
});
expect(result).toMatchSnapshot();
});
});
describe('openapi spec', () => {
it('readOnly / writeOnly are respected', async () => {
const api = await generateEndpoints({
unionUndefined: true,
schemaFile: './test/fixtures/readOnlyWriteOnly.yaml',
apiFile: './fixtures/emptyApi.ts',
});
expect(api).toMatchSnapshot();
});
});
describe('openapi spec', () => {
it('readOnly / writeOnly are merged', async () => {
const api = await generateEndpoints({
unionUndefined: true,
schemaFile: './test/fixtures/readOnlyWriteOnly.yaml',
apiFile: './fixtures/emptyApi.ts',
mergeReadWriteOnly: true,
});
expect(api).toMatchSnapshot();
});
});
describe('query parameters', () => {
it('parameters overridden in swagger should also be overridden in the code', async () => {
const api = await generateEndpoints({
schemaFile: './test/fixtures/parameterOverride.yaml',
apiFile: './fixtures/emptyApi.ts',
});
expect(api).toMatchSnapshot();
});
});