|
1 | 1 | import { beforeEach, describe, expect, it, vi } from 'vitest' |
2 | 2 | import { render } from '@testing-library/react' |
3 | 3 | import { QueryClient, QueryClientProvider } from '@tanstack/react-query' |
4 | | -import type { TanstackQueryDevtoolsPanel } from '@tanstack/query-devtools' |
| 4 | +import { TanstackQueryDevtoolsPanel } from '@tanstack/query-devtools' |
5 | 5 |
|
6 | 6 | const mountMock = vi.fn() |
7 | 7 | const unmountMock = vi.fn() |
@@ -63,6 +63,168 @@ describe('ReactQueryDevtoolsPanel', () => { |
63 | 63 | expect(mountMock).toHaveBeenCalled() |
64 | 64 | }) |
65 | 65 |
|
| 66 | + it('should forward "onClose" to the devtools instance', async () => { |
| 67 | + const { ReactQueryDevtoolsPanel } = |
| 68 | + await import('../ReactQueryDevtoolsPanel') |
| 69 | + const queryClient = new QueryClient() |
| 70 | + const onClose = vi.fn() |
| 71 | + |
| 72 | + render(<ReactQueryDevtoolsPanel client={queryClient} onClose={onClose} />) |
| 73 | + |
| 74 | + expect(setOnCloseMock).toHaveBeenCalledWith(expect.any(Function)) |
| 75 | + }) |
| 76 | + |
| 77 | + it('should default "onClose" to a no-op function when the prop is omitted', async () => { |
| 78 | + const { ReactQueryDevtoolsPanel } = |
| 79 | + await import('../ReactQueryDevtoolsPanel') |
| 80 | + const queryClient = new QueryClient() |
| 81 | + |
| 82 | + render(<ReactQueryDevtoolsPanel client={queryClient} />) |
| 83 | + |
| 84 | + expect(setOnCloseMock).toHaveBeenCalledWith(expect.any(Function)) |
| 85 | + }) |
| 86 | + |
| 87 | + it('should forward "errorTypes" to the devtools instance', async () => { |
| 88 | + const { ReactQueryDevtoolsPanel } = |
| 89 | + await import('../ReactQueryDevtoolsPanel') |
| 90 | + const queryClient = new QueryClient() |
| 91 | + const errorTypes = [ |
| 92 | + { name: 'Network', initializer: () => new Error('Network') }, |
| 93 | + ] |
| 94 | + |
| 95 | + render( |
| 96 | + <ReactQueryDevtoolsPanel client={queryClient} errorTypes={errorTypes} />, |
| 97 | + ) |
| 98 | + |
| 99 | + expect(setErrorTypesMock).toHaveBeenCalledWith(errorTypes) |
| 100 | + }) |
| 101 | + |
| 102 | + it('should default "errorTypes" to an empty array when the prop is omitted', async () => { |
| 103 | + const { ReactQueryDevtoolsPanel } = |
| 104 | + await import('../ReactQueryDevtoolsPanel') |
| 105 | + const queryClient = new QueryClient() |
| 106 | + |
| 107 | + render(<ReactQueryDevtoolsPanel client={queryClient} />) |
| 108 | + |
| 109 | + expect(setErrorTypesMock).toHaveBeenCalledWith([]) |
| 110 | + }) |
| 111 | + |
| 112 | + it('should forward "theme" to the devtools instance', async () => { |
| 113 | + const { ReactQueryDevtoolsPanel } = |
| 114 | + await import('../ReactQueryDevtoolsPanel') |
| 115 | + const queryClient = new QueryClient() |
| 116 | + |
| 117 | + render(<ReactQueryDevtoolsPanel client={queryClient} theme="dark" />) |
| 118 | + |
| 119 | + expect(setThemeMock).toHaveBeenCalledWith('dark') |
| 120 | + }) |
| 121 | + |
| 122 | + it('should forward the resolved "QueryClient" via "setClient"', async () => { |
| 123 | + const { ReactQueryDevtoolsPanel } = |
| 124 | + await import('../ReactQueryDevtoolsPanel') |
| 125 | + const queryClient = new QueryClient() |
| 126 | + |
| 127 | + render(<ReactQueryDevtoolsPanel client={queryClient} />) |
| 128 | + |
| 129 | + expect(setClientMock).toHaveBeenCalledWith(queryClient) |
| 130 | + }) |
| 131 | + |
| 132 | + it('should forward "styleNonce" to the devtools constructor', async () => { |
| 133 | + const { ReactQueryDevtoolsPanel } = |
| 134 | + await import('../ReactQueryDevtoolsPanel') |
| 135 | + const queryClient = new QueryClient() |
| 136 | + |
| 137 | + render(<ReactQueryDevtoolsPanel client={queryClient} styleNonce="abc" />) |
| 138 | + |
| 139 | + expect(TanstackQueryDevtoolsPanel).toHaveBeenCalledWith( |
| 140 | + expect.objectContaining({ styleNonce: 'abc' }), |
| 141 | + ) |
| 142 | + }) |
| 143 | + |
| 144 | + it('should forward "shadowDOMTarget" to the devtools constructor', async () => { |
| 145 | + const { ReactQueryDevtoolsPanel } = |
| 146 | + await import('../ReactQueryDevtoolsPanel') |
| 147 | + const queryClient = new QueryClient() |
| 148 | + const shadowDOMTarget = document |
| 149 | + .createElement('div') |
| 150 | + .attachShadow({ mode: 'open' }) |
| 151 | + |
| 152 | + render( |
| 153 | + <ReactQueryDevtoolsPanel |
| 154 | + client={queryClient} |
| 155 | + shadowDOMTarget={shadowDOMTarget} |
| 156 | + />, |
| 157 | + ) |
| 158 | + |
| 159 | + expect(TanstackQueryDevtoolsPanel).toHaveBeenCalledWith( |
| 160 | + expect.objectContaining({ shadowDOMTarget }), |
| 161 | + ) |
| 162 | + }) |
| 163 | + |
| 164 | + it('should forward "hideDisabledQueries" to the devtools constructor', async () => { |
| 165 | + const { ReactQueryDevtoolsPanel } = |
| 166 | + await import('../ReactQueryDevtoolsPanel') |
| 167 | + const queryClient = new QueryClient() |
| 168 | + |
| 169 | + render( |
| 170 | + <ReactQueryDevtoolsPanel |
| 171 | + client={queryClient} |
| 172 | + hideDisabledQueries={true} |
| 173 | + />, |
| 174 | + ) |
| 175 | + |
| 176 | + expect(TanstackQueryDevtoolsPanel).toHaveBeenCalledWith( |
| 177 | + expect.objectContaining({ hideDisabledQueries: true }), |
| 178 | + ) |
| 179 | + }) |
| 180 | + |
| 181 | + it('should preserve the default container height when "style" omits "height"', async () => { |
| 182 | + const { ReactQueryDevtoolsPanel } = |
| 183 | + await import('../ReactQueryDevtoolsPanel') |
| 184 | + const queryClient = new QueryClient() |
| 185 | + |
| 186 | + const { container } = render( |
| 187 | + <ReactQueryDevtoolsPanel |
| 188 | + client={queryClient} |
| 189 | + style={{ width: '300px' }} |
| 190 | + />, |
| 191 | + ) |
| 192 | + |
| 193 | + expect(container.querySelector('.tsqd-parent-container')).toHaveStyle({ |
| 194 | + height: '500px', |
| 195 | + width: '300px', |
| 196 | + }) |
| 197 | + }) |
| 198 | + |
| 199 | + it('should let "style" override the default container height on the rendered element', async () => { |
| 200 | + const { ReactQueryDevtoolsPanel } = |
| 201 | + await import('../ReactQueryDevtoolsPanel') |
| 202 | + const queryClient = new QueryClient() |
| 203 | + |
| 204 | + const { container } = render( |
| 205 | + <ReactQueryDevtoolsPanel |
| 206 | + client={queryClient} |
| 207 | + style={{ width: '300px', height: '300px' }} |
| 208 | + />, |
| 209 | + ) |
| 210 | + |
| 211 | + expect(container.querySelector('.tsqd-parent-container')).toHaveStyle({ |
| 212 | + height: '300px', |
| 213 | + width: '300px', |
| 214 | + }) |
| 215 | + }) |
| 216 | + |
| 217 | + it('should call "unmount" on the devtools instance when the component unmounts', async () => { |
| 218 | + const { ReactQueryDevtoolsPanel } = |
| 219 | + await import('../ReactQueryDevtoolsPanel') |
| 220 | + const queryClient = new QueryClient() |
| 221 | + |
| 222 | + const { unmount } = render(<ReactQueryDevtoolsPanel client={queryClient} />) |
| 223 | + unmount() |
| 224 | + |
| 225 | + expect(unmountMock).toHaveBeenCalled() |
| 226 | + }) |
| 227 | + |
66 | 228 | it('should return null in non-development environments', async () => { |
67 | 229 | vi.stubEnv('NODE_ENV', 'production') |
68 | 230 | vi.resetModules() |
|
0 commit comments