-
Notifications
You must be signed in to change notification settings - Fork 232
/
Copy pathasyncUtils.js
123 lines (109 loc) · 3 KB
/
asyncUtils.js
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
import { act } from 'react-test-renderer'
function createTimeoutError(utilName, { timeout }) {
const timeoutError = new Error(`Timed out in ${utilName} after ${timeout}ms.`)
timeoutError.timeout = true
return timeoutError
}
function resolveAfter(ms) {
return new Promise((resolve) => {
setTimeout(resolve, ms)
})
}
let hasWarnedDeprecatedWait = false
function asyncUtils(addResolver) {
let nextUpdatePromise = null
const waitForNextUpdate = async (options = {}) => {
if (!nextUpdatePromise) {
nextUpdatePromise = new Promise((resolve, reject) => {
let timeoutId
if (options.timeout > 0) {
timeoutId = setTimeout(
() => reject(createTimeoutError('waitForNextUpdate', options)),
options.timeout
)
}
addResolver(() => {
clearTimeout(timeoutId)
nextUpdatePromise = null
resolve()
})
})
await act(() => nextUpdatePromise)
}
await nextUpdatePromise
}
const waitFor = async (callback, { interval, timeout, suppressErrors = true } = {}) => {
// eslint-disable-next-line consistent-return
const checkResult = () => {
try {
const callbackResult = callback()
return callbackResult || callbackResult === undefined
} catch (e) {
if (!suppressErrors) {
throw e
}
}
}
const waitForResult = async () => {
const initialTimeout = timeout
while (true) {
const startTime = Date.now()
try {
const nextCheck = interval
? Promise.race([waitForNextUpdate({ timeout }), resolveAfter(interval)])
: waitForNextUpdate({ timeout })
await nextCheck
if (checkResult()) {
return
}
} catch (e) {
if (e.timeout) {
throw createTimeoutError('waitFor', { timeout: initialTimeout })
}
throw e
}
timeout -= Date.now() - startTime
}
}
if (!checkResult()) {
await waitForResult()
}
}
const waitForValueToChange = async (selector, options = {}) => {
const initialValue = selector()
try {
await waitFor(() => selector() !== initialValue, {
suppressErrors: false,
...options
})
} catch (e) {
if (e.timeout) {
throw createTimeoutError('waitForValueToChange', options)
}
throw e
}
}
const wait = async (callback, { timeout, suppressErrors } = {}) => {
if (!hasWarnedDeprecatedWait) {
hasWarnedDeprecatedWait = true
console.warn(
'`wait` has been deprecated. Use `waitFor` instead: https://react-hooks-testing-library.com/reference/api#waitfor.'
)
}
try {
await waitFor(callback, { timeout, suppressErrors })
} catch (e) {
if (e.timeout) {
throw createTimeoutError('wait', { timeout })
}
throw e
}
}
return {
wait,
waitFor,
waitForNextUpdate,
waitForValueToChange
}
}
export default asyncUtils