-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathawait-async-queries.test.ts
659 lines (575 loc) · 17 KB
/
await-async-queries.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
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
import { TSESLint } from '@typescript-eslint/utils';
import rule, { RULE_NAME } from '../../../lib/rules/await-async-queries';
import {
ASYNC_QUERIES_COMBINATIONS,
ASYNC_QUERIES_VARIANTS,
combineQueries,
SYNC_QUERIES_COMBINATIONS,
} from '../../../lib/utils';
import { createRuleTester } from '../test-utils';
const ruleTester = createRuleTester();
const SUPPORTED_TESTING_FRAMEWORKS = [
'@testing-library/dom',
'@testing-library/angular',
'@testing-library/react',
'@testing-library/vue',
'@marko/testing-library',
];
interface TestCode {
code: string;
isAsync?: boolean;
testingFramework: string;
}
function createTestCode({
code,
isAsync = true,
testingFramework = '@testing-library/react',
}: TestCode) {
return `
import { render } from '${testingFramework}'
test("An example test",${isAsync ? ' async ' : ' '}() => {
${code}
})
`;
}
interface TestCaseParams {
isAsync?: boolean;
combinations?: string[];
errors?: TSESLint.TestCaseError<'asyncQueryWrapper' | 'awaitAsyncQuery'>[];
testingFramework?: string;
}
function createTestCase(
getTest: (
query: string
) =>
| string
| { code: string; errors?: TSESLint.TestCaseError<'awaitAsyncQuery'>[] },
{
combinations = ALL_ASYNC_COMBINATIONS_TO_TEST,
isAsync,
testingFramework = '',
}: TestCaseParams = {}
) {
return combinations.map((query) => {
const test = getTest(query);
return typeof test === 'string'
? {
code: createTestCode({ code: test, isAsync, testingFramework }),
errors: [],
}
: {
code: createTestCode({ code: test.code, isAsync, testingFramework }),
errors: test.errors,
};
});
}
const CUSTOM_ASYNC_QUERIES_COMBINATIONS = combineQueries(
ASYNC_QUERIES_VARIANTS,
['ByIcon', 'ByButton']
);
// built-in queries + custom queries
const ALL_ASYNC_COMBINATIONS_TO_TEST = [
...ASYNC_QUERIES_COMBINATIONS,
...CUSTOM_ASYNC_QUERIES_COMBINATIONS,
];
ruleTester.run(RULE_NAME, rule, {
valid: [
// async queries declaration from render functions are valid
...createTestCase((query) => `const { ${query} } = render()`, {
isAsync: false,
}),
// async screen queries declaration are valid
...createTestCase((query) => `await screen.${query}('foo')`),
// async @marko/testing-library screen queries declaration are valid
...createTestCase((query) => `await screen.${query}('foo')`, {
testingFramework: '@marko/testing-library',
}),
// async queries are valid with await operator
...createTestCase(
(query) => `
doSomething()
await ${query}('foo')
`
),
// async queries are valid when saved in a variable with await operator
...createTestCase(
(query) => `
doSomething()
const foo = await ${query}('foo')
expect(foo).toBeInTheDocument();
`
),
// async queries are valid when saved in a promise variable immediately resolved
...createTestCase(
(query) => `
const promise = ${query}('foo')
await promise
`
),
// async queries are valid when used with then method
...createTestCase(
(query) => `
${query}('foo').then(() => {
done()
})
`
),
// async queries are valid with promise in variable resolved by then method
...createTestCase(
(query) => `
const promise = ${query}('foo')
promise.then((done) => done())
`
),
// async queries are valid when wrapped within Promise.all + await expression
...createTestCase(
(query) => `
doSomething()
await Promise.all([
${query}('foo'),
${query}('bar'),
]);
`
),
// async queries are valid when wrapped within Promise.all + then chained
...createTestCase(
(query) => `
doSomething()
Promise.all([
${query}('foo'),
${query}('bar'),
]).then()
`
),
// async queries are valid when wrapped within Promise.allSettled + await expression
...createTestCase(
(query) => `
doSomething()
await Promise.allSettled([
${query}('foo'),
${query}('bar'),
]);
`
),
// async queries are valid when wrapped within Promise.allSettled + then chained
...createTestCase(
(query) => `
doSomething()
Promise.allSettled([
${query}('foo'),
${query}('bar'),
]).then()
`
),
// async queries are valid with promise returned in arrow function
...createTestCase(
(query) => `const anArrowFunction = () => ${query}('foo')`
),
// async queries are valid with promise returned in regular function
...createTestCase((query) => `function foo() { return ${query}('foo') }`),
// async queries are valid with promise in variable and returned in regular function
...createTestCase(
(query) => `
async function queryWrapper() {
const promise = ${query}('foo')
return promise
}
`
),
// sync queries are valid
...createTestCase(
(query) => `
doSomething()
${query}('foo')
`,
{ combinations: SYNC_QUERIES_COMBINATIONS }
),
// async queries with resolves matchers are valid
...createTestCase(
(query) => `
expect(${query}("foo")).resolves.toBe("bar")
expect(wrappedQuery(${query}("foo"))).resolves.toBe("bar")
`
),
// async queries with toResolve matchers are valid
...createTestCase(
(query) => `
expect(${query}("foo")).toResolve()
expect(wrappedQuery(${query}("foo"))).toResolve()
`
),
// async queries with rejects matchers are valid
...createTestCase(
(query) => `
expect(${query}("foo")).rejects.toBe("bar")
expect(wrappedQuery(${query}("foo"))).rejects.toBe("bar")
`
),
// async queries with toReject matchers are valid
...createTestCase(
(query) => `
expect(${query}("foo")).toReject()
expect(wrappedQuery(${query}("foo"))).toReject()
`
),
// unresolved async queries with aggressive reporting opted-out are valid
...ALL_ASYNC_COMBINATIONS_TO_TEST.map((query) => ({
settings: { 'testing-library/utils-module': 'test-utils' },
code: `
import { render } from "another-library"
test('An example test', async () => {
const example = ${query}("my example")
})
`,
})),
// non-matching query is valid
`
test('A valid example test', async () => {
const example = findText("my example")
})
`,
// unhandled promise from non-matching query is valid
`
async function findButton() {
const element = findByText('outer element')
return somethingElse(element)
}
test('A valid example test', async () => {
// findButton doesn't match async query pattern
const button = findButton()
})
`,
// unhandled promise from custom query not matching custom-queries setting is valid
{
settings: {
'testing-library/custom-queries': ['queryByIcon', 'ByComplexText'],
},
code: `
test('A valid example test', () => {
const element = findByIcon('search')
})
`,
},
// unhandled promise from custom query with aggressive query switched off is valid
{
settings: {
'testing-library/custom-queries': 'off',
},
code: `
test('A valid example test', () => {
const element = findByIcon('search')
})
`,
},
// edge case for coverage
// return non-matching query and other than Identifier or CallExpression
`
async function someSetup() {
const element = await findByText('outer element')
return element ? findSomethingElse(element) : null
}
test('A valid example test', async () => {
someSetup()
})
`,
// https://github.com/testing-library/eslint-plugin-testing-library/issues/359
`// issue #359
import { render, screen } from 'mocks/test-utils'
import userEvent from '@testing-library/user-event'
const testData = {
name: 'John Doe',
email: '[email protected]',
password: 'extremeSecret',
}
const selectors = {
username: () => screen.findByRole('textbox', { name: /username/i }),
email: () => screen.findByRole('textbox', { name: /e-mail/i }),
password: () => screen.findByLabelText(/password/i),
}
test('this is a valid case', async () => {
render(<SomeComponent />)
userEvent.type(await selectors.username(), testData.name)
userEvent.type(await selectors.email(), testData.email)
userEvent.type(await selectors.password(), testData.password)
// ...
})
`,
// edge case for coverage
// valid async query usage without any function defined
// so there is no innermost function scope found
`const element = await findByRole('button')`,
],
invalid: [
...SUPPORTED_TESTING_FRAMEWORKS.flatMap((testingFramework) =>
ALL_ASYNC_COMBINATIONS_TO_TEST.map(
(query) =>
({
code: `// async queries without await operator or then method are not valid
import { render } from '${testingFramework}'
test("An example test", async () => {
doSomething()
const foo = ${query}('foo')
});
`,
errors: [{ messageId: 'awaitAsyncQuery', line: 6, column: 21 }],
output: `// async queries without await operator or then method are not valid
import { render } from '${testingFramework}'
test("An example test", async () => {
doSomething()
const foo = await ${query}('foo')
});
`,
}) as const
)
),
...ALL_ASYNC_COMBINATIONS_TO_TEST.map(
(query) =>
({
code: `// async screen queries without await operator or then method are not valid
import { render } from '@testing-library/react'
test("An example test", async () => {
screen.${query}('foo')
});
`,
errors: [
{
messageId: 'awaitAsyncQuery',
line: 5,
column: 16,
data: { name: query },
},
],
output: `// async screen queries without await operator or then method are not valid
import { render } from '@testing-library/react'
test("An example test", async () => {
await screen.${query}('foo')
});
`,
}) as const
),
...ALL_ASYNC_COMBINATIONS_TO_TEST.map(
(query) =>
({
code: `
import { render } from '@testing-library/react'
test("An example test", async () => {
doSomething()
const foo = ${query}('foo')
});
`,
errors: [
{
messageId: 'awaitAsyncQuery',
line: 6,
column: 21,
data: { name: query },
},
],
output: `
import { render } from '@testing-library/react'
test("An example test", async () => {
doSomething()
const foo = await ${query}('foo')
});
`,
}) as const
),
...ALL_ASYNC_COMBINATIONS_TO_TEST.map(
(query) =>
({
code: `
import { render } from '@testing-library/react'
test("An example test", async () => {
const foo = ${query}('foo')
expect(foo).toBeInTheDocument()
expect(foo).toHaveAttribute('src', 'bar');
});
`,
errors: [
{
messageId: 'awaitAsyncQuery',
line: 5,
column: 21,
data: { name: query },
},
],
output: `
import { render } from '@testing-library/react'
test("An example test", async () => {
const foo = ${query}('foo')
expect(await foo).toBeInTheDocument()
expect(await foo).toHaveAttribute('src', 'bar');
});
`,
}) as const
),
// unresolved async queries are not valid (aggressive reporting)
...ALL_ASYNC_COMBINATIONS_TO_TEST.map(
(query) =>
({
code: `
import { render } from "another-library"
test('An example test', async () => {
const example = ${query}("my example")
})
`,
errors: [{ messageId: 'awaitAsyncQuery', line: 5, column: 27 }],
output: `
import { render } from "another-library"
test('An example test', async () => {
const example = await ${query}("my example")
})
`,
}) as const
),
// unhandled promise from async query function wrapper is invalid
...ALL_ASYNC_COMBINATIONS_TO_TEST.map(
(query) =>
({
code: `
function queryWrapper() {
doSomethingElse();
return screen.${query}('foo')
}
test("An invalid example test", () => {
const element = queryWrapper()
})
test("A valid example test", async () => {
const element = await queryWrapper()
})
`,
errors: [{ messageId: 'asyncQueryWrapper', line: 9, column: 27 }],
output: `
function queryWrapper() {
doSomethingElse();
return screen.${query}('foo')
}
test("An invalid example test", async () => {
const element = await queryWrapper()
})
test("A valid example test", async () => {
const element = await queryWrapper()
})
`,
}) as const
),
// unhandled promise from async query arrow function wrapper is invalid
...ALL_ASYNC_COMBINATIONS_TO_TEST.map(
(query) =>
({
code: `
const queryWrapper = () => {
doSomethingElse();
return ${query}('foo')
}
test("An invalid example test", () => {
const element = queryWrapper()
})
test("A valid example test", async () => {
const element = await queryWrapper()
})
`,
errors: [{ messageId: 'asyncQueryWrapper', line: 9, column: 27 }],
output: `
const queryWrapper = () => {
doSomethingElse();
return ${query}('foo')
}
test("An invalid example test", async () => {
const element = await queryWrapper()
})
test("A valid example test", async () => {
const element = await queryWrapper()
})
`,
}) as const
),
// unhandled promise implicitly returned from async query arrow function wrapper is invalid
...ALL_ASYNC_COMBINATIONS_TO_TEST.map(
(query) =>
({
code: `
const queryWrapper = () => screen.${query}('foo')
test("An invalid example test", () => {
const element = queryWrapper()
})
test("A valid example test", async () => {
const element = await queryWrapper()
})
`,
errors: [{ messageId: 'asyncQueryWrapper', line: 5, column: 27 }],
output: `
const queryWrapper = () => screen.${query}('foo')
test("An invalid example test", async () => {
const element = await queryWrapper()
})
test("A valid example test", async () => {
const element = await queryWrapper()
})
`,
}) as const
),
// unhandled promise from custom query matching custom-queries setting is invalid
{
settings: {
'testing-library/custom-queries': ['ByIcon', 'getByComplexText'],
},
code: `
test('An invalid example test', () => {
const element = findByIcon('search')
})
`,
errors: [{ messageId: 'awaitAsyncQuery', line: 3, column: 25 }],
output: `
test('An invalid example test', () => {
const element = await findByIcon('search')
})
`,
},
{
code: `// similar to issue #359 but forcing an error in no-awaited wrapper
import { render, screen } from 'mocks/test-utils'
import userEvent from '@testing-library/user-event'
const testData = {
name: 'John Doe',
email: '[email protected]',
password: 'extremeSecret',
}
const selectors = {
username: () => screen.findByRole('textbox', { name: /username/i }),
email: () => screen.findByRole('textbox', { name: /e-mail/i }),
password: () => screen.findByLabelText(/password/i),
}
test('this is a valid case', async () => {
render(<SomeComponent />)
userEvent.type(selectors.username(), testData.name) // <-- unhandled here
userEvent.type(await selectors.email(), testData.email)
userEvent.type(await selectors.password(), testData.password)
// ...
})
`,
errors: [{ messageId: 'asyncQueryWrapper', line: 19, column: 34 }],
output: `// similar to issue #359 but forcing an error in no-awaited wrapper
import { render, screen } from 'mocks/test-utils'
import userEvent from '@testing-library/user-event'
const testData = {
name: 'John Doe',
email: '[email protected]',
password: 'extremeSecret',
}
const selectors = {
username: () => screen.findByRole('textbox', { name: /username/i }),
email: () => screen.findByRole('textbox', { name: /e-mail/i }),
password: () => screen.findByLabelText(/password/i),
}
test('this is a valid case', async () => {
render(<SomeComponent />)
userEvent.type(await selectors.username(), testData.name) // <-- unhandled here
userEvent.type(await selectors.email(), testData.email)
userEvent.type(await selectors.password(), testData.password)
// ...
})
`,
},
],
});