-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathReactQueryDevtoolsPanel.test.tsx
More file actions
240 lines (193 loc) · 7.29 KB
/
ReactQueryDevtoolsPanel.test.tsx
File metadata and controls
240 lines (193 loc) · 7.29 KB
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
import { beforeEach, describe, expect, it, vi } from 'vitest'
import { render } from '@testing-library/react'
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
import { TanstackQueryDevtoolsPanel } from '@tanstack/query-devtools'
const mountMock = vi.fn()
const unmountMock = vi.fn()
const setClientMock = vi.fn()
const setOnCloseMock = vi.fn()
const setErrorTypesMock = vi.fn()
const setThemeMock = vi.fn()
vi.mock('@tanstack/query-devtools', () => ({
TanstackQueryDevtoolsPanel: vi.fn(function (
this: TanstackQueryDevtoolsPanel,
) {
this.mount = mountMock
this.unmount = unmountMock
this.setClient = setClientMock
this.setOnClose = setOnCloseMock
this.setErrorTypes = setErrorTypesMock
this.setTheme = setThemeMock
}),
}))
describe('ReactQueryDevtoolsPanel', () => {
beforeEach(() => {
vi.clearAllMocks()
})
it('should throw an error if no query client has been set', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
expect(() => render(<ReactQueryDevtoolsPanel />)).toThrow(
'No QueryClient set, use QueryClientProvider to set one',
)
})
it('should not throw an error if query client is provided via context', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
const queryClient = new QueryClient()
expect(() =>
render(
<QueryClientProvider client={queryClient}>
<ReactQueryDevtoolsPanel />
</QueryClientProvider>,
),
).not.toThrow()
expect(mountMock).toHaveBeenCalled()
})
it('should not throw an error if query client is provided via props', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
const queryClient = new QueryClient()
expect(() =>
render(<ReactQueryDevtoolsPanel client={queryClient} />),
).not.toThrow()
expect(mountMock).toHaveBeenCalled()
})
it('should forward "onClose" to the devtools instance', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
const queryClient = new QueryClient()
const onClose = vi.fn()
render(<ReactQueryDevtoolsPanel client={queryClient} onClose={onClose} />)
expect(setOnCloseMock).toHaveBeenCalledWith(expect.any(Function))
})
it('should default "onClose" to a no-op function when the prop is omitted', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
const queryClient = new QueryClient()
render(<ReactQueryDevtoolsPanel client={queryClient} />)
expect(setOnCloseMock).toHaveBeenCalledWith(expect.any(Function))
})
it('should forward "errorTypes" to the devtools instance', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
const queryClient = new QueryClient()
const errorTypes = [
{ name: 'Network', initializer: () => new Error('Network') },
]
render(
<ReactQueryDevtoolsPanel client={queryClient} errorTypes={errorTypes} />,
)
expect(setErrorTypesMock).toHaveBeenCalledWith(errorTypes)
})
it('should default "errorTypes" to an empty array when the prop is omitted', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
const queryClient = new QueryClient()
render(<ReactQueryDevtoolsPanel client={queryClient} />)
expect(setErrorTypesMock).toHaveBeenCalledWith([])
})
it('should forward "theme" to the devtools instance', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
const queryClient = new QueryClient()
render(<ReactQueryDevtoolsPanel client={queryClient} theme="dark" />)
expect(setThemeMock).toHaveBeenCalledWith('dark')
})
it('should forward the resolved "QueryClient" via "setClient"', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
const queryClient = new QueryClient()
render(<ReactQueryDevtoolsPanel client={queryClient} />)
expect(setClientMock).toHaveBeenCalledWith(queryClient)
})
it('should forward "styleNonce" to the devtools constructor', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
const queryClient = new QueryClient()
render(<ReactQueryDevtoolsPanel client={queryClient} styleNonce="abc" />)
expect(TanstackQueryDevtoolsPanel).toHaveBeenCalledWith(
expect.objectContaining({ styleNonce: 'abc' }),
)
})
it('should forward "shadowDOMTarget" to the devtools constructor', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
const queryClient = new QueryClient()
const shadowDOMTarget = document
.createElement('div')
.attachShadow({ mode: 'open' })
render(
<ReactQueryDevtoolsPanel
client={queryClient}
shadowDOMTarget={shadowDOMTarget}
/>,
)
expect(TanstackQueryDevtoolsPanel).toHaveBeenCalledWith(
expect.objectContaining({ shadowDOMTarget }),
)
})
it('should forward "hideDisabledQueries" to the devtools constructor', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
const queryClient = new QueryClient()
render(
<ReactQueryDevtoolsPanel
client={queryClient}
hideDisabledQueries={true}
/>,
)
expect(TanstackQueryDevtoolsPanel).toHaveBeenCalledWith(
expect.objectContaining({ hideDisabledQueries: true }),
)
})
it('should preserve the default container height when "style" omits "height"', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
const queryClient = new QueryClient()
const { container } = render(
<ReactQueryDevtoolsPanel
client={queryClient}
style={{ width: '300px' }}
/>,
)
expect(container.querySelector('.tsqd-parent-container')).toHaveStyle({
height: '500px',
width: '300px',
})
})
it('should let "style" override the default container height on the rendered element', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
const queryClient = new QueryClient()
const { container } = render(
<ReactQueryDevtoolsPanel
client={queryClient}
style={{ width: '300px', height: '300px' }}
/>,
)
expect(container.querySelector('.tsqd-parent-container')).toHaveStyle({
height: '300px',
width: '300px',
})
})
it('should call "unmount" on the devtools instance when the component unmounts', async () => {
const { ReactQueryDevtoolsPanel } =
await import('../ReactQueryDevtoolsPanel')
const queryClient = new QueryClient()
const { unmount } = render(<ReactQueryDevtoolsPanel client={queryClient} />)
unmount()
expect(unmountMock).toHaveBeenCalled()
})
it('should return null in non-development environments', async () => {
vi.stubEnv('NODE_ENV', 'production')
vi.resetModules()
try {
const { ReactQueryDevtoolsPanel } = await import('..')
expect(ReactQueryDevtoolsPanel({})).toBeNull()
} finally {
vi.unstubAllEnvs()
vi.resetModules()
}
})
})