-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathuse-swr-immutable.test.tsx
244 lines (200 loc) · 5.87 KB
/
use-swr-immutable.test.tsx
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
import { screen, act, fireEvent } from '@testing-library/react'
import { useState } from 'react'
import useSWR from 'swr'
import useSWRImmutable, { immutable } from 'swr/immutable'
import {
sleep,
createKey,
nextTick as waitForNextTick,
focusOn,
renderWithConfig
} from './utils'
const focusWindow = () => focusOn(window)
describe('useSWR - immutable', () => {
it('should revalidate on mount', async () => {
let value = 0
const key = createKey()
const useData = () =>
useSWR(key, () => value++, {
dedupingInterval: 0
})
function Component() {
useData()
return null
}
function Page() {
const [showComponent, setShowComponent] = useState(false)
const { data } = useData()
return (
<div>
<button onClick={() => setShowComponent(true)}>
mount component
</button>
<p>data: {data}</p>
{showComponent ? <Component /> : null}
</div>
)
}
renderWithConfig(<Page />)
// hydration
screen.getByText('mount component')
screen.getByText('data:')
// ready
await screen.findByText('data: 0')
// mount <Component/> by clicking the button
fireEvent.click(screen.getByText('mount component'))
// wait for rerender
await screen.findByText('data: 1')
})
it('should not revalidate on mount when `revalidateIfStale` is enabled', async () => {
let value = 0
const key = createKey()
const useData = () =>
useSWR(key, () => value++, {
dedupingInterval: 0,
revalidateIfStale: false
})
function Component() {
useData()
return null
}
function Page() {
const [showComponent, setShowComponent] = useState(false)
const { data } = useData()
return (
<div>
<button onClick={() => setShowComponent(true)}>
mount component
</button>
<p>data: {data}</p>
{showComponent ? <Component /> : null}
</div>
)
}
renderWithConfig(<Page />)
// hydration
screen.getByText('mount component')
screen.getByText('data:')
// ready
await screen.findByText('data: 0')
// mount <Component/> by clicking the button
fireEvent.click(screen.getByText('mount component'))
// wait for rerender
await act(() => sleep(50))
await screen.findByText('data: 0')
})
it('should not revalidate with the immutable hook', async () => {
let value = 0
const key = createKey()
const useData = () =>
useSWRImmutable(key, () => value++, { dedupingInterval: 0 })
function Component() {
useData()
return null
}
function Page() {
const [showComponent, setShowComponent] = useState(false)
const { data } = useData()
return (
<div>
<button onClick={() => setShowComponent(true)}>
mount component
</button>
<p>data: {data}</p>
{showComponent ? <Component /> : null}
</div>
)
}
renderWithConfig(<Page />)
// hydration
screen.getByText('mount component')
screen.getByText('data:')
// ready
await screen.findByText('data: 0')
// mount <Component/> by clicking the button
fireEvent.click(screen.getByText('mount component'))
// trigger window focus
await waitForNextTick()
await focusWindow()
// wait for rerender
await act(() => sleep(50))
await screen.findByText('data: 0')
})
it('should not revalidate with the immutable middleware', async () => {
let value = 0
const key = createKey()
const useData = () =>
useSWR(key, () => value++, {
dedupingInterval: 0,
use: [immutable]
})
function Component() {
useData()
return null
}
function Page() {
const [showComponent, setShowComponent] = useState(false)
const { data } = useData()
return (
<div>
<button onClick={() => setShowComponent(true)}>
mount component
</button>
<p>data: {data}</p>
{showComponent ? <Component /> : null}
</div>
)
}
renderWithConfig(<Page />)
// hydration
screen.getByText('mount component')
screen.getByText('data:')
// ready
await screen.findByText('data: 0')
// mount <Component/> by clicking the button
fireEvent.click(screen.getByText('mount component'))
// trigger window focus
await waitForNextTick()
await focusWindow()
// wait for rerender
await act(() => sleep(50))
await screen.findByText('data: 0')
})
it('should not revalidate with revalidateIfStale disabled when key changes', async () => {
const fetcher = jest.fn(v => v)
const key = createKey()
const useData = (id: string) =>
useSWR(key + id, fetcher, {
dedupingInterval: 0,
revalidateIfStale: false
})
function Page() {
const [id, setId] = useState('0')
const { data } = useData(id)
return (
<button onClick={() => setId(id === '0' ? '1' : '0')}>
data: {data}
</button>
)
}
renderWithConfig(<Page />)
// Ready
await screen.findByText(`data: ${key}0`)
// Toggle the key by clicking the button
fireEvent.click(screen.getByText(`data: ${key}0`))
await screen.findByText(`data: ${key}1`)
await waitForNextTick()
// Toggle the key again by clicking the button
fireEvent.click(screen.getByText(`data: ${key}1`))
await screen.findByText(`data: ${key}0`)
await waitForNextTick()
// Toggle the key by clicking the button
fireEvent.click(screen.getByText(`data: ${key}0`))
await screen.findByText(`data: ${key}1`)
await sleep(20)
// `fetcher` should only be called twice, with each key.
expect(fetcher).toBeCalledTimes(2)
expect(fetcher).nthCalledWith(1, key + '0')
expect(fetcher).nthCalledWith(2, key + '1')
})
})