-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathPreactQueryDevtools.test.tsx
More file actions
207 lines (160 loc) · 6.78 KB
/
PreactQueryDevtools.test.tsx
File metadata and controls
207 lines (160 loc) · 6.78 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
import { beforeEach, describe, expect, it, vi } from 'vitest'
import { render } from '@testing-library/preact'
import { QueryClient, QueryClientProvider } from '@tanstack/preact-query'
import { TanstackQueryDevtools } from '@tanstack/query-devtools'
const mountMock = vi.fn()
const unmountMock = vi.fn()
const setClientMock = vi.fn()
const setButtonPositionMock = vi.fn()
const setPositionMock = vi.fn()
const setInitialIsOpenMock = vi.fn()
const setErrorTypesMock = vi.fn()
const setThemeMock = vi.fn()
vi.mock('@tanstack/query-devtools', () => ({
TanstackQueryDevtools: vi.fn(function (this: TanstackQueryDevtools) {
this.mount = mountMock
this.unmount = unmountMock
this.setClient = setClientMock
this.setButtonPosition = setButtonPositionMock
this.setPosition = setPositionMock
this.setInitialIsOpen = setInitialIsOpenMock
this.setErrorTypes = setErrorTypesMock
this.setTheme = setThemeMock
}),
}))
describe('PreactQueryDevtools', () => {
beforeEach(() => {
vi.clearAllMocks()
})
it('should throw an error if no query client has been set', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
expect(() => render(<PreactQueryDevtools />)).toThrow(
'No QueryClient set, use QueryClientProvider to set one',
)
})
it('should not throw an error if query client is provided via context', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
const queryClient = new QueryClient()
expect(() =>
render(
<QueryClientProvider client={queryClient}>
<PreactQueryDevtools />
</QueryClientProvider>,
),
).not.toThrow()
expect(mountMock).toHaveBeenCalled()
})
it('should not throw an error if query client is provided via props', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
const queryClient = new QueryClient()
expect(() =>
render(<PreactQueryDevtools client={queryClient} />),
).not.toThrow()
expect(mountMock).toHaveBeenCalled()
})
it('should forward "buttonPosition" to the devtools instance', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
const queryClient = new QueryClient()
render(
<PreactQueryDevtools client={queryClient} buttonPosition="top-left" />,
)
expect(setButtonPositionMock).toHaveBeenCalledWith('top-left')
})
it('should forward "position" to the devtools instance', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
const queryClient = new QueryClient()
render(<PreactQueryDevtools client={queryClient} position="left" />)
expect(setPositionMock).toHaveBeenCalledWith('left')
})
it('should forward "initialIsOpen" to the devtools instance', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
const queryClient = new QueryClient()
render(<PreactQueryDevtools client={queryClient} initialIsOpen={true} />)
expect(setInitialIsOpenMock).toHaveBeenCalledWith(true)
})
it('should default "initialIsOpen" to "false" when the prop is omitted', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
const queryClient = new QueryClient()
render(<PreactQueryDevtools client={queryClient} />)
expect(setInitialIsOpenMock).toHaveBeenCalledWith(false)
})
it('should forward "errorTypes" to the devtools instance', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
const queryClient = new QueryClient()
const errorTypes = [
{ name: 'Network', initializer: () => new Error('Network') },
]
render(<PreactQueryDevtools client={queryClient} errorTypes={errorTypes} />)
expect(setErrorTypesMock).toHaveBeenCalledWith(errorTypes)
})
it('should default "errorTypes" to an empty array when the prop is omitted', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
const queryClient = new QueryClient()
render(<PreactQueryDevtools client={queryClient} />)
expect(setErrorTypesMock).toHaveBeenCalledWith([])
})
it('should forward "theme" to the devtools instance', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
const queryClient = new QueryClient()
render(<PreactQueryDevtools client={queryClient} theme="dark" />)
expect(setThemeMock).toHaveBeenCalledWith('dark')
})
it('should forward the resolved "QueryClient" via "setClient"', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
const queryClient = new QueryClient()
render(<PreactQueryDevtools client={queryClient} />)
expect(setClientMock).toHaveBeenCalledWith(queryClient)
})
it('should forward "styleNonce" to the devtools constructor', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
const queryClient = new QueryClient()
render(<PreactQueryDevtools client={queryClient} styleNonce="abc" />)
expect(TanstackQueryDevtools).toHaveBeenCalledWith(
expect.objectContaining({ styleNonce: 'abc' }),
)
})
it('should forward "shadowDOMTarget" to the devtools constructor', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
const queryClient = new QueryClient()
const shadowDOMTarget = document
.createElement('div')
.attachShadow({ mode: 'open' })
render(
<PreactQueryDevtools
client={queryClient}
shadowDOMTarget={shadowDOMTarget}
/>,
)
expect(TanstackQueryDevtools).toHaveBeenCalledWith(
expect.objectContaining({ shadowDOMTarget }),
)
})
it('should forward "hideDisabledQueries" to the devtools constructor', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
const queryClient = new QueryClient()
render(
<PreactQueryDevtools client={queryClient} hideDisabledQueries={true} />,
)
expect(TanstackQueryDevtools).toHaveBeenCalledWith(
expect.objectContaining({ hideDisabledQueries: true }),
)
})
it('should call "unmount" on the devtools instance when the component unmounts', async () => {
const { PreactQueryDevtools } = await import('../PreactQueryDevtools')
const queryClient = new QueryClient()
const { unmount } = render(<PreactQueryDevtools client={queryClient} />)
unmount()
expect(unmountMock).toHaveBeenCalled()
})
it('should return null in non-development environments', async () => {
vi.stubEnv('NODE_ENV', 'production')
vi.resetModules()
try {
const { PreactQueryDevtools } = await import('..')
expect(PreactQueryDevtools({})).toBeNull()
} finally {
vi.unstubAllEnvs()
vi.resetModules()
}
})
})