forked from TanStack/query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueryCache.test.tsx
236 lines (210 loc) · 8.54 KB
/
queryCache.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
import { sleep, queryKey, createQueryClient } from '../../../../tests/utils'
import { QueryCache, QueryClient } from '..'
import { Query } from '.././query'
describe('queryCache', () => {
let queryClient: QueryClient
let queryCache: QueryCache
beforeEach(() => {
queryClient = createQueryClient()
queryCache = queryClient.getQueryCache()
})
afterEach(() => {
queryClient.clear()
})
describe('subscribe', () => {
test('should pass the correct query', async () => {
const key = queryKey()
const subscriber = jest.fn()
const unsubscribe = queryCache.subscribe(subscriber)
queryClient.setQueryData(key, 'foo')
const query = queryCache.find(key)
await sleep(1)
expect(subscriber).toHaveBeenCalledWith({ query, type: 'added' })
unsubscribe()
})
test('should notify listeners when new query is added', async () => {
const key = queryKey()
const callback = jest.fn()
queryCache.subscribe(callback)
queryClient.prefetchQuery(key, () => 'data')
await sleep(100)
expect(callback).toHaveBeenCalled()
})
test('should include the queryCache and query when notifying listeners', async () => {
const key = queryKey()
const callback = jest.fn()
queryCache.subscribe(callback)
queryClient.prefetchQuery(key, () => 'data')
const query = queryCache.find(key)
await sleep(100)
expect(callback).toHaveBeenCalledWith({ query, type: 'added' })
})
test('should notify subscribers when new query with initialData is added', async () => {
const key = queryKey()
const callback = jest.fn()
queryCache.subscribe(callback)
queryClient.prefetchQuery(key, () => 'data', {
initialData: 'initial',
})
await sleep(100)
expect(callback).toHaveBeenCalled()
})
})
describe('find', () => {
test('find should filter correctly', async () => {
const key = queryKey()
await queryClient.prefetchQuery(key, () => 'data1')
const query = queryCache.find(key)!
expect(query).toBeDefined()
})
test('find should filter correctly with exact set to false', async () => {
const key = queryKey()
await queryClient.prefetchQuery(key, () => 'data1')
const query = queryCache.find(key, { exact: false })!
expect(query).toBeDefined()
})
})
describe('findAll', () => {
test('should filter correctly', async () => {
const key1 = queryKey()
const key2 = queryKey()
const keyFetching = queryKey()
await queryClient.prefetchQuery(key1, () => 'data1')
await queryClient.prefetchQuery(key2, () => 'data2')
await queryClient.prefetchQuery([{ a: 'a', b: 'b' }], () => 'data3')
await queryClient.prefetchQuery(['posts', 1], () => 'data4')
queryClient.invalidateQueries(key2)
const query1 = queryCache.find(key1)!
const query2 = queryCache.find(key2)!
const query3 = queryCache.find([{ a: 'a', b: 'b' }])!
const query4 = queryCache.find(['posts', 1])!
expect(queryCache.findAll(key1)).toEqual([query1])
// wrapping in an extra array doesn't yield the same results anymore since v4 because keys need to be an array
expect(queryCache.findAll([key1])).toEqual([])
expect(queryCache.findAll()).toEqual([query1, query2, query3, query4])
expect(queryCache.findAll({})).toEqual([query1, query2, query3, query4])
expect(queryCache.findAll(key1, { type: 'inactive' })).toEqual([query1])
expect(queryCache.findAll(key1, { type: 'active' })).toEqual([])
expect(queryCache.findAll(key1, { stale: true })).toEqual([])
expect(queryCache.findAll(key1, { stale: false })).toEqual([query1])
expect(
queryCache.findAll(key1, { stale: false, type: 'active' }),
).toEqual([])
expect(
queryCache.findAll(key1, { stale: false, type: 'inactive' }),
).toEqual([query1])
expect(
queryCache.findAll(key1, {
stale: false,
type: 'inactive',
exact: true,
}),
).toEqual([query1])
expect(queryCache.findAll(key2)).toEqual([query2])
expect(queryCache.findAll(key2, { stale: undefined })).toEqual([query2])
expect(queryCache.findAll(key2, { stale: true })).toEqual([query2])
expect(queryCache.findAll(key2, { stale: false })).toEqual([])
expect(queryCache.findAll([{ b: 'b' }])).toEqual([query3])
expect(queryCache.findAll([{ a: 'a' }], { exact: false })).toEqual([
query3,
])
expect(queryCache.findAll([{ a: 'a' }], { exact: true })).toEqual([])
expect(queryCache.findAll([{ a: 'a', b: 'b' }], { exact: true })).toEqual(
[query3],
)
expect(queryCache.findAll([{ a: 'a', b: 'b' }])).toEqual([query3])
expect(queryCache.findAll([{ a: 'a', b: 'b', c: 'c' }])).toEqual([])
expect(queryCache.findAll([{ a: 'a' }], { stale: false })).toEqual([
query3,
])
expect(queryCache.findAll([{ a: 'a' }], { stale: true })).toEqual([])
expect(queryCache.findAll([{ a: 'a' }], { type: 'active' })).toEqual([])
expect(queryCache.findAll([{ a: 'a' }], { type: 'inactive' })).toEqual([
query3,
])
expect(
queryCache.findAll({ predicate: (query) => query === query3 }),
).toEqual([query3])
expect(queryCache.findAll(['posts'])).toEqual([query4])
expect(queryCache.findAll({ fetchStatus: 'idle' })).toEqual([
query1,
query2,
query3,
query4,
])
expect(queryCache.findAll(key2, { fetchStatus: undefined })).toEqual([
query2,
])
const promise = queryClient.prefetchQuery(keyFetching, async () => {
await sleep(20)
return 'dataFetching'
})
expect(queryCache.findAll({ fetchStatus: 'fetching' })).toEqual([
queryCache.find(keyFetching),
])
await promise
expect(queryCache.findAll({ fetchStatus: 'fetching' })).toEqual([])
})
test('should return all the queries when no filters are defined', async () => {
const key1 = queryKey()
const key2 = queryKey()
await queryClient.prefetchQuery(key1, () => 'data1')
await queryClient.prefetchQuery(key2, () => 'data2')
expect(queryCache.findAll().length).toBe(2)
})
})
describe('QueryCacheConfig.onError', () => {
test('should be called when a query errors', async () => {
const key = queryKey()
const onError = jest.fn()
const testCache = new QueryCache({ onError })
const testClient = createQueryClient({ queryCache: testCache })
await testClient.prefetchQuery(key, () =>
Promise.reject<unknown>('error'),
)
const query = testCache.find(key)
expect(onError).toHaveBeenCalledWith('error', query)
})
})
describe('QueryCacheConfig.onSuccess', () => {
test('should be called when a query is successful', async () => {
const key = queryKey()
const onSuccess = jest.fn()
const testCache = new QueryCache({ onSuccess })
const testClient = createQueryClient({ queryCache: testCache })
await testClient.prefetchQuery(key, () => Promise.resolve({ data: 5 }))
const query = testCache.find(key)
expect(onSuccess).toHaveBeenCalledWith({ data: 5 }, query)
})
})
describe('QueryCache.add', () => {
test('should not try to add a query already added to the cache', async () => {
const key = queryKey()
const hash = `["${key}"]`
await queryClient.prefetchQuery(key, () => 'data1')
// Directly add the query from the cache
// to simulate a race condition
const query = queryCache['queriesMap'][hash] as Query
const queryClone = Object.assign({}, query)
// No error should be thrown when trying to add the query
queryCache.add(queryClone)
expect(queryCache['queries'].length).toEqual(1)
// Clean-up to avoid an error when queryClient.clear()
delete queryCache['queriesMap'][hash]
})
describe('QueryCache.remove', () => {
test('should not try to remove a query already removed from the cache', async () => {
const key = queryKey()
const hash = `["${key}"]`
await queryClient.prefetchQuery(key, () => 'data1')
// Directly remove the query from the cache
// to simulate a race condition
const query = queryCache['queriesMap'][hash] as Query
const queryClone = Object.assign({}, query)
delete queryCache['queriesMap'][hash]
// No error should be thrown when trying to remove the query
expect(() => queryCache.remove(queryClone)).not.toThrow()
})
})
})
})