1
1
import { describe , expect , test } from 'vitest'
2
2
import { fireEvent , render , waitFor } from '@testing-library/svelte'
3
- import { derived , writable } from 'svelte/store'
3
+ import { derived , get , writable } from 'svelte/store'
4
4
import { QueryClient } from '@tanstack/query-core'
5
5
import { sleep } from '../utils'
6
6
import BaseExample from './BaseExample.svelte'
7
7
import DisabledExample from './DisabledExample.svelte'
8
+ import PlaceholderData from './PlaceholderData.svelte'
9
+ import type { Writable } from 'svelte/store'
10
+ import type { QueryObserverResult } from '@tanstack/query-core'
8
11
9
12
describe ( 'createQuery' , ( ) => {
10
- test ( 'Render and wait for success' , async ( ) => {
13
+ test ( 'Return the correct states for a successful query' , async ( ) => {
14
+ const statesStore : Writable < Array < QueryObserverResult > > = writable ( [ ] )
15
+
16
+ const options = {
17
+ queryKey : [ 'test' ] ,
18
+ queryFn : async ( ) => {
19
+ await sleep ( 10 )
20
+ return 'Success'
21
+ } ,
22
+ }
23
+
11
24
const rendered = render ( BaseExample , {
12
25
props : {
13
- options : {
14
- queryKey : [ 'test' ] ,
15
- queryFn : async ( ) => {
16
- await sleep ( 10 )
17
- return 'Success'
18
- } ,
19
- } ,
26
+ options,
20
27
queryClient : new QueryClient ( ) ,
28
+ states : statesStore ,
21
29
} ,
22
30
} )
23
31
24
32
await waitFor ( ( ) => {
25
- expect ( rendered . queryByText ( 'Loading ' ) ) . toBeInTheDocument ( )
33
+ expect ( rendered . queryByText ( 'Success ' ) ) . toBeInTheDocument ( )
26
34
} )
27
35
28
- await waitFor ( ( ) => {
29
- expect ( rendered . queryByText ( 'Success' ) ) . toBeInTheDocument ( )
36
+ const states = get ( statesStore )
37
+
38
+ expect ( states ) . toHaveLength ( 2 )
39
+
40
+ expect ( states [ 0 ] ) . toMatchObject ( {
41
+ data : undefined ,
42
+ dataUpdatedAt : 0 ,
43
+ error : null ,
44
+ errorUpdatedAt : 0 ,
45
+ failureCount : 0 ,
46
+ failureReason : null ,
47
+ errorUpdateCount : 0 ,
48
+ isError : false ,
49
+ isFetched : false ,
50
+ isFetchedAfterMount : false ,
51
+ isFetching : true ,
52
+ isPaused : false ,
53
+ isPending : true ,
54
+ isInitialLoading : true ,
55
+ isLoading : true ,
56
+ isLoadingError : false ,
57
+ isPlaceholderData : false ,
58
+ isRefetchError : false ,
59
+ isRefetching : false ,
60
+ isStale : true ,
61
+ isSuccess : false ,
62
+ refetch : expect . any ( Function ) ,
63
+ status : 'pending' ,
64
+ fetchStatus : 'fetching' ,
65
+ } )
66
+
67
+ expect ( states [ 1 ] ) . toMatchObject ( {
68
+ data : 'Success' ,
69
+ dataUpdatedAt : expect . any ( Number ) ,
70
+ error : null ,
71
+ errorUpdatedAt : 0 ,
72
+ failureCount : 0 ,
73
+ failureReason : null ,
74
+ errorUpdateCount : 0 ,
75
+ isError : false ,
76
+ isFetched : true ,
77
+ isFetchedAfterMount : true ,
78
+ isFetching : false ,
79
+ isPaused : false ,
80
+ isPending : false ,
81
+ isInitialLoading : false ,
82
+ isLoading : false ,
83
+ isLoadingError : false ,
84
+ isPlaceholderData : false ,
85
+ isRefetchError : false ,
86
+ isRefetching : false ,
87
+ isStale : true ,
88
+ isSuccess : true ,
89
+ refetch : expect . any ( Function ) ,
90
+ status : 'success' ,
91
+ fetchStatus : 'idle' ,
92
+ } )
93
+ } )
94
+
95
+ test ( 'Return the correct states for an unsuccessful query' , async ( ) => {
96
+ const statesStore : Writable < Array < QueryObserverResult > > = writable ( [ ] )
97
+
98
+ const options = {
99
+ queryKey : [ 'test' ] ,
100
+ queryFn : async ( ) => Promise . reject ( new Error ( 'Rejected' ) ) ,
101
+ retry : 1 ,
102
+ retryDelay : 1 ,
103
+ }
104
+
105
+ const rendered = render ( BaseExample , {
106
+ props : {
107
+ options,
108
+ queryClient : new QueryClient ( ) ,
109
+ states : statesStore ,
110
+ } ,
111
+ } )
112
+
113
+ await waitFor ( ( ) => rendered . getByText ( 'Status: error' ) )
114
+
115
+ const states = get ( statesStore )
116
+
117
+ expect ( states ) . toHaveLength ( 3 )
118
+
119
+ expect ( states [ 0 ] ) . toMatchObject ( {
120
+ data : undefined ,
121
+ dataUpdatedAt : 0 ,
122
+ error : null ,
123
+ errorUpdatedAt : 0 ,
124
+ failureCount : 0 ,
125
+ failureReason : null ,
126
+ errorUpdateCount : 0 ,
127
+ isError : false ,
128
+ isFetched : false ,
129
+ isFetchedAfterMount : false ,
130
+ isFetching : true ,
131
+ isPaused : false ,
132
+ isPending : true ,
133
+ isInitialLoading : true ,
134
+ isLoading : true ,
135
+ isLoadingError : false ,
136
+ isPlaceholderData : false ,
137
+ isRefetchError : false ,
138
+ isRefetching : false ,
139
+ isStale : true ,
140
+ isSuccess : false ,
141
+ refetch : expect . any ( Function ) ,
142
+ status : 'pending' ,
143
+ fetchStatus : 'fetching' ,
144
+ } )
145
+
146
+ expect ( states [ 1 ] ) . toMatchObject ( {
147
+ data : undefined ,
148
+ dataUpdatedAt : 0 ,
149
+ error : null ,
150
+ errorUpdatedAt : 0 ,
151
+ failureCount : 1 ,
152
+ failureReason : new Error ( 'Rejected' ) ,
153
+ errorUpdateCount : 0 ,
154
+ isError : false ,
155
+ isFetched : false ,
156
+ isFetchedAfterMount : false ,
157
+ isFetching : true ,
158
+ isPaused : false ,
159
+ isPending : true ,
160
+ isInitialLoading : true ,
161
+ isLoading : true ,
162
+ isLoadingError : false ,
163
+ isPlaceholderData : false ,
164
+ isRefetchError : false ,
165
+ isRefetching : false ,
166
+ isStale : true ,
167
+ isSuccess : false ,
168
+ refetch : expect . any ( Function ) ,
169
+ status : 'pending' ,
170
+ fetchStatus : 'fetching' ,
171
+ } )
172
+
173
+ expect ( states [ 2 ] ) . toMatchObject ( {
174
+ data : undefined ,
175
+ dataUpdatedAt : 0 ,
176
+ error : new Error ( 'Rejected' ) ,
177
+ errorUpdatedAt : expect . any ( Number ) ,
178
+ failureCount : 2 ,
179
+ failureReason : new Error ( 'Rejected' ) ,
180
+ errorUpdateCount : 1 ,
181
+ isError : true ,
182
+ isFetched : true ,
183
+ isFetchedAfterMount : true ,
184
+ isFetching : false ,
185
+ isPaused : false ,
186
+ isPending : false ,
187
+ isInitialLoading : false ,
188
+ isLoading : false ,
189
+ isLoadingError : true ,
190
+ isPlaceholderData : false ,
191
+ isRefetchError : false ,
192
+ isRefetching : false ,
193
+ isStale : true ,
194
+ isSuccess : false ,
195
+ refetch : expect . any ( Function ) ,
196
+ status : 'error' ,
197
+ fetchStatus : 'idle' ,
30
198
} )
31
199
} )
32
200
33
201
test ( 'Accept a writable store for options' , async ( ) => {
202
+ const statesStore : Writable < Array < QueryObserverResult > > = writable ( [ ] )
203
+
34
204
const optionsStore = writable ( {
35
205
queryKey : [ 'test' ] ,
36
206
queryFn : async ( ) => {
@@ -43,6 +213,7 @@ describe('createQuery', () => {
43
213
props : {
44
214
options : optionsStore ,
45
215
queryClient : new QueryClient ( ) ,
216
+ states : statesStore ,
46
217
} ,
47
218
} )
48
219
@@ -52,6 +223,8 @@ describe('createQuery', () => {
52
223
} )
53
224
54
225
test ( 'Accept a derived store for options' , async ( ) => {
226
+ const statesStore : Writable < Array < QueryObserverResult > > = writable ( [ ] )
227
+
55
228
const writableStore = writable ( 'test' )
56
229
57
230
const derivedStore = derived ( writableStore , ( $store ) => ( {
@@ -66,6 +239,7 @@ describe('createQuery', () => {
66
239
props : {
67
240
options : derivedStore ,
68
241
queryClient : new QueryClient ( ) ,
242
+ states : statesStore ,
69
243
} ,
70
244
} )
71
245
@@ -75,6 +249,8 @@ describe('createQuery', () => {
75
249
} )
76
250
77
251
test ( 'Ensure reactivity when queryClient defaults are set' , async ( ) => {
252
+ const statesStore : Writable < Array < QueryObserverResult > > = writable ( [ ] )
253
+
78
254
const writableStore = writable ( 1 )
79
255
80
256
const derivedStore = derived ( writableStore , ( $store ) => ( {
@@ -91,6 +267,7 @@ describe('createQuery', () => {
91
267
queryClient : new QueryClient ( {
92
268
defaultOptions : { queries : { staleTime : 60 * 1000 } } ,
93
269
} ) ,
270
+ states : statesStore ,
94
271
} ,
95
272
} )
96
273
@@ -114,45 +291,53 @@ describe('createQuery', () => {
114
291
} )
115
292
} )
116
293
117
- test ( 'Keep previous data when returned as placeholder data' , async ( ) => {
118
- const writableStore = writable < Array < number > > ( [ 1 ] )
119
-
120
- const derivedStore = derived ( writableStore , ( $store ) => ( {
121
- queryKey : [ 'test' , $store ] ,
122
- queryFn : async ( ) => {
123
- await sleep ( 10 )
124
- return $store . map ( ( id ) => `Success ${ id } ` )
125
- } ,
126
- placeholderData : ( previousData : string ) => previousData ,
127
- } ) )
294
+ test ( 'Keep previous data when placeholderData is set' , async ( ) => {
295
+ const statesStore : Writable < Array < QueryObserverResult > > = writable ( [ ] )
128
296
129
- const rendered = render ( BaseExample , {
297
+ const rendered = render ( PlaceholderData , {
130
298
props : {
131
- options : derivedStore ,
132
299
queryClient : new QueryClient ( ) ,
300
+ states : statesStore ,
133
301
} ,
134
302
} )
135
303
136
- await waitFor ( ( ) => {
137
- expect ( rendered . queryByText ( 'Success 1' ) ) . not . toBeInTheDocument ( )
138
- expect ( rendered . queryByText ( 'Success 2' ) ) . not . toBeInTheDocument ( )
139
- } )
304
+ await waitFor ( ( ) => rendered . getByText ( 'Data: 0' ) )
140
305
141
- await waitFor ( ( ) => {
142
- expect ( rendered . queryByText ( 'Success 1' ) ) . toBeInTheDocument ( )
143
- expect ( rendered . queryByText ( 'Success 2' ) ) . not . toBeInTheDocument ( )
144
- } )
306
+ fireEvent . click ( rendered . getByRole ( 'button' , { name : 'setCount' } ) )
145
307
146
- writableStore . set ( [ 1 , 2 ] )
308
+ await waitFor ( ( ) => rendered . getByText ( 'Data: 1' ) )
147
309
148
- await waitFor ( ( ) => {
149
- expect ( rendered . queryByText ( 'Success 1' ) ) . toBeInTheDocument ( )
150
- expect ( rendered . queryByText ( 'Success 2' ) ) . not . toBeInTheDocument ( )
151
- } )
310
+ const states = get ( statesStore )
152
311
153
- await waitFor ( ( ) => {
154
- expect ( rendered . queryByText ( 'Success 1' ) ) . toBeInTheDocument ( )
155
- expect ( rendered . queryByText ( 'Success 2' ) ) . toBeInTheDocument ( )
312
+ expect ( states ) . toHaveLength ( 4 )
313
+
314
+ // Initial
315
+ expect ( states [ 0 ] ) . toMatchObject ( {
316
+ data : undefined ,
317
+ isFetching : true ,
318
+ isSuccess : false ,
319
+ isPlaceholderData : false ,
320
+ } )
321
+ // Fetched
322
+ expect ( states [ 1 ] ) . toMatchObject ( {
323
+ data : 0 ,
324
+ isFetching : false ,
325
+ isSuccess : true ,
326
+ isPlaceholderData : false ,
327
+ } )
328
+ // Set state
329
+ expect ( states [ 2 ] ) . toMatchObject ( {
330
+ data : 0 ,
331
+ isFetching : true ,
332
+ isSuccess : true ,
333
+ isPlaceholderData : true ,
334
+ } )
335
+ // New data
336
+ expect ( states [ 3 ] ) . toMatchObject ( {
337
+ data : 1 ,
338
+ isFetching : false ,
339
+ isSuccess : true ,
340
+ isPlaceholderData : false ,
156
341
} )
157
342
} )
158
343
0 commit comments