-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathExplorer.test.tsx
More file actions
591 lines (478 loc) · 18.7 KB
/
Explorer.test.tsx
File metadata and controls
591 lines (478 loc) · 18.7 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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'
import { fireEvent, render, within } from '@solidjs/testing-library'
import { QueryClient, onlineManager } from '@tanstack/query-core'
import Explorer from '../Explorer'
import { QueryDevtoolsContext, ThemeContext } from '../contexts'
import type { Query } from '@tanstack/query-core'
// `goober` compiles every `css\`...\`` template literal at mount time;
// replace it with a no-op factory so label/role-based assertions stay fast.
vi.mock('goober', () => {
let counter = 0
const css = Object.assign(() => `tsqd-${++counter}`, {
bind: () => css,
})
return { css, glob: () => {}, setup: () => {} }
})
describe('Explorer', () => {
let queryClient: QueryClient
beforeEach(() => {
vi.useFakeTimers()
queryClient = new QueryClient()
})
afterEach(() => {
vi.useRealTimers()
queryClient.clear()
})
function renderExplorer(
props: Parameters<typeof Explorer>[0],
options: { theme?: 'dark' | 'light' } = {},
) {
const theme = options.theme ?? 'dark'
return render(() => (
<QueryDevtoolsContext.Provider
value={{
client: queryClient,
queryFlavor: 'TanStack Query',
version: '5',
onlineManager,
}}
>
<ThemeContext.Provider value={() => theme}>
<Explorer {...props} />
</ThemeContext.Provider>
</QueryDevtoolsContext.Provider>
))
}
describe('primitive values', () => {
it('should render a "label: value" row for a string value', () => {
const rendered = renderExplorer({ label: 'name', value: 'Anna' })
expect(rendered.getByText('name:')).toBeInTheDocument()
expect(rendered.getByText('"Anna"')).toBeInTheDocument()
})
it('should render a "label: value" row for a number value', () => {
const rendered = renderExplorer({ label: 'count', value: 42 })
expect(rendered.getByText('count:')).toBeInTheDocument()
expect(rendered.getByText('42')).toBeInTheDocument()
})
it('should render a "label: value" row for a boolean value', () => {
const rendered = renderExplorer({ label: 'active', value: true })
expect(rendered.getByText('active:')).toBeInTheDocument()
expect(rendered.getByText('true')).toBeInTheDocument()
})
it('should render a "label: value" row for a "null" value', () => {
const rendered = renderExplorer({ label: 'missing', value: null })
expect(rendered.getByText('missing:')).toBeInTheDocument()
expect(rendered.getByText('null')).toBeInTheDocument()
})
})
describe('arrays and objects', () => {
it('should render an empty object as a primitive row (no expander)', () => {
const rendered = renderExplorer({ label: 'data', value: {} })
expect(rendered.getByText('data:')).toBeInTheDocument()
expect(rendered.queryByRole('button', { expanded: false })).toBeNull()
})
it('should render an array with an expander showing the item count', () => {
const rendered = renderExplorer({
label: 'list',
value: ['a', 'b', 'c'],
})
const expander = rendered.getByRole('button', { expanded: false })
expect(expander).toBeInTheDocument()
expect(expander.textContent).toContain('list')
expect(expander.textContent).toContain('3 items')
})
it('should render children under their index labels when the array expander is clicked', () => {
const rendered = renderExplorer({
label: 'list',
value: ['a', 'b'],
})
fireEvent.click(rendered.getByRole('button', { expanded: false }))
expect(rendered.getByText('0:')).toBeInTheDocument()
expect(rendered.getByText('1:')).toBeInTheDocument()
expect(rendered.getByText('"a"')).toBeInTheDocument()
expect(rendered.getByText('"b"')).toBeInTheDocument()
})
it('should render object entries under their keys when expanded', () => {
const rendered = renderExplorer({
label: 'user',
value: { name: 'Anna', age: 30 },
})
fireEvent.click(rendered.getByRole('button', { expanded: false }))
expect(rendered.getByText('name:')).toBeInTheDocument()
expect(rendered.getByText('"Anna"')).toBeInTheDocument()
expect(rendered.getByText('age:')).toBeInTheDocument()
expect(rendered.getByText('30')).toBeInTheDocument()
})
})
describe('Map and iterable values', () => {
it('should preserve "Map" keys as labels when expanded', () => {
const rendered = renderExplorer({
label: 'm',
value: new Map([
['first', 1],
['second', 2],
]),
})
fireEvent.click(rendered.getByRole('button', { expanded: false }))
expect(rendered.getByText('first:')).toBeInTheDocument()
expect(rendered.getByText('second:')).toBeInTheDocument()
})
it('should mark an iterable value with an "(Iterable)" prefix on the expander', () => {
const rendered = renderExplorer({
label: 's',
value: new Set(['x', 'y']),
})
expect(
rendered.getByRole('button', { expanded: false }).textContent,
).toContain('(Iterable)')
})
it('should render iterable children under their numeric index when expanded', () => {
const rendered = renderExplorer({
label: 's',
value: new Set(['x', 'y']),
})
fireEvent.click(rendered.getByRole('button', { expanded: false }))
expect(rendered.getByText('0:')).toBeInTheDocument()
expect(rendered.getByText('1:')).toBeInTheDocument()
})
})
describe('"defaultExpanded"', () => {
it('should render children eagerly when the label is in "defaultExpanded"', () => {
const rendered = renderExplorer({
label: 'list',
value: ['a'],
defaultExpanded: ['list'],
})
expect(
rendered.getByRole('button', { expanded: true }),
).toBeInTheDocument()
expect(rendered.getByText('0:')).toBeInTheDocument()
})
})
describe('action menu', () => {
it('should copy the serialized value to the clipboard when the copy button is clicked', () => {
const writeText = vi.fn().mockResolvedValue(undefined)
vi.stubGlobal('navigator', { clipboard: { writeText } })
queryClient.setQueryData(['data'], { name: 'Anna' })
const rendered = renderExplorer({
label: 'data',
value: { name: 'Anna' },
editable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
})
fireEvent.click(rendered.getByLabelText('Copy object to clipboard'))
expect(writeText).toHaveBeenCalledTimes(1)
const [arg] = writeText.mock.calls[0]!
expect(JSON.parse(arg as string)).toMatchObject({
json: { name: 'Anna' },
})
})
it('should switch the copy button to an error state when clipboard write fails', async () => {
const writeText = vi.fn().mockRejectedValue(new Error('denied'))
vi.stubGlobal('navigator', { clipboard: { writeText } })
const consoleError = vi
.spyOn(console, 'error')
.mockImplementation(() => {})
queryClient.setQueryData(['data'], { name: 'Anna' })
const rendered = renderExplorer({
label: 'data',
value: { name: 'Anna' },
editable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
})
fireEvent.click(rendered.getByLabelText('Copy object to clipboard'))
await vi.advanceTimersByTimeAsync(0)
expect(
rendered.getByLabelText('Error copying object to clipboard'),
).toBeInTheDocument()
expect(consoleError).toHaveBeenCalledWith(
'Failed to copy: ',
expect.any(Error),
)
})
it('should reset the copy button to the idle state 1500ms after a successful copy', async () => {
const writeText = vi.fn().mockResolvedValue(undefined)
vi.stubGlobal('navigator', { clipboard: { writeText } })
queryClient.setQueryData(['data'], { name: 'Anna' })
const rendered = renderExplorer({
label: 'data',
value: { name: 'Anna' },
editable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
})
fireEvent.click(rendered.getByLabelText('Copy object to clipboard'))
await vi.advanceTimersByTimeAsync(0)
expect(
rendered.getByLabelText('Object copied to clipboard'),
).toBeInTheDocument()
await vi.advanceTimersByTimeAsync(1500)
expect(
rendered.getByLabelText('Copy object to clipboard'),
).toBeInTheDocument()
})
it('should reset the copy button to the idle state 1500ms after a failed copy', async () => {
const writeText = vi.fn().mockRejectedValue(new Error('denied'))
vi.stubGlobal('navigator', { clipboard: { writeText } })
vi.spyOn(console, 'error').mockImplementation(() => {})
queryClient.setQueryData(['data'], { name: 'Anna' })
const rendered = renderExplorer({
label: 'data',
value: { name: 'Anna' },
editable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
})
fireEvent.click(rendered.getByLabelText('Copy object to clipboard'))
await vi.advanceTimersByTimeAsync(0)
expect(
rendered.getByLabelText('Error copying object to clipboard'),
).toBeInTheDocument()
await vi.advanceTimersByTimeAsync(1500)
expect(
rendered.getByLabelText('Copy object to clipboard'),
).toBeInTheDocument()
})
it('should clear array items via "setQueryData" when the clear-array button is clicked', () => {
queryClient.setQueryData(['data'], ['a', 'b', 'c'])
const rendered = renderExplorer({
label: 'list',
value: ['a', 'b', 'c'],
editable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
})
fireEvent.click(rendered.getByLabelText('Remove all items'))
expect(queryClient.getQueryData(['data'])).toEqual([])
})
it('should delete the entry at the current "dataPath" when the delete button is clicked', () => {
queryClient.setQueryData(['data'], ['a', 'b', 'c'])
const rendered = renderExplorer({
label: 'list',
value: ['a', 'b', 'c'],
editable: true,
itemsDeletable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
dataPath: ['1'],
})
fireEvent.click(rendered.getByLabelText('Delete item'))
expect(queryClient.getQueryData(['data'])).toEqual(['a', 'c'])
})
it('should toggle a boolean value via "setQueryData" when the toggle button is clicked', () => {
queryClient.setQueryData(['data'], { flag: true })
const rendered = renderExplorer({
label: 'flag',
value: true,
editable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
dataPath: ['flag'],
})
fireEvent.click(rendered.getByLabelText('Toggle value'))
expect(queryClient.getQueryData(['data'])).toEqual({ flag: false })
})
it('should not render action buttons when "editable" is false', () => {
queryClient.setQueryData(['data'], ['a'])
const rendered = renderExplorer({
label: 'list',
value: ['a'],
editable: false,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
})
expect(rendered.queryByLabelText('Copy object to clipboard')).toBeNull()
expect(rendered.queryByLabelText('Remove all items')).toBeNull()
})
it('should not render "ClearArrayButton" when value is not an array', () => {
queryClient.setQueryData(['data'], { name: 'Anna' })
const rendered = renderExplorer({
label: 'user',
value: { name: 'Anna' },
editable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
})
expect(rendered.queryByLabelText('Remove all items')).toBeNull()
expect(
rendered.getByLabelText('Copy object to clipboard'),
).toBeInTheDocument()
})
})
describe('pagination', () => {
it('should group entries into 100-item pages when the array has more than 100 entries', () => {
const rendered = renderExplorer({
label: 'big',
value: Array.from({ length: 101 }, (_, i) => i),
})
fireEvent.click(rendered.getByRole('button', { expanded: false }))
expect(rendered.getByText('[0...99]')).toBeInTheDocument()
expect(rendered.getByText('[100...199]')).toBeInTheDocument()
})
it('should keep the items of a page hidden until the page header is clicked', () => {
const rendered = renderExplorer({
label: 'big',
value: Array.from({ length: 101 }, (_, i) => `item-${i}`),
})
fireEvent.click(rendered.getByRole('button', { expanded: false }))
expect(rendered.queryByText('0:')).toBeNull()
})
it('should reveal the items of a page when the page header is clicked', () => {
const rendered = renderExplorer({
label: 'big',
value: Array.from({ length: 101 }, (_, i) => `item-${i}`),
})
fireEvent.click(rendered.getByRole('button', { expanded: false }))
fireEvent.click(rendered.getByText('[0...99]'))
expect(rendered.getByText('0:')).toBeInTheDocument()
expect(rendered.getByText('"item-0"')).toBeInTheDocument()
})
it('should independently toggle two pages when their headers are clicked', () => {
const rendered = renderExplorer({
label: 'big',
value: Array.from({ length: 200 }, (_, i) => `item-${i}`),
})
fireEvent.click(rendered.getByRole('button', { expanded: false }))
fireEvent.click(rendered.getByText('[0...99]'))
fireEvent.click(rendered.getByText('[100...199]'))
expect(rendered.getByText('"item-0"')).toBeInTheDocument()
expect(rendered.getByText('"item-100"')).toBeInTheDocument()
fireEvent.click(rendered.getByText('[0...99]'))
expect(rendered.queryByText('"item-0"')).toBeNull()
expect(rendered.getByText('"item-100"')).toBeInTheDocument()
})
it('should render action buttons for items inside a paginated page', () => {
const value: Array<Array<number>> = Array.from(
{ length: 200 },
(_, i) => [i],
)
queryClient.setQueryData(['data'], value)
const rendered = renderExplorer({
label: 'Data',
value,
defaultExpanded: ['Data'],
editable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
})
fireEvent.click(rendered.getByText('[0...99]'))
expect(
rendered.getAllByLabelText('Remove all items').length,
).toBeGreaterThan(1)
})
})
describe('inline edit', () => {
it('should write the new string value via "setQueryData" when a text input is changed', () => {
queryClient.setQueryData(['data'], { name: 'Anna' })
const rendered = renderExplorer({
label: 'name',
value: 'Anna',
editable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
dataPath: ['name'],
})
const input = rendered.getByLabelText('name:')
expect(input).toHaveAttribute('type', 'text')
fireEvent.change(input, { target: { value: 'Bob' } })
expect(queryClient.getQueryData(['data'])).toEqual({ name: 'Bob' })
})
it('should write the new number value via "setQueryData" when a number input is changed', () => {
queryClient.setQueryData(['data'], { count: 1 })
const rendered = renderExplorer({
label: 'count',
value: 1,
editable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
dataPath: ['count'],
})
const input = rendered.getByLabelText('count:')
expect(input).toHaveAttribute('type', 'number')
fireEvent.change(input, {
target: { value: '42', valueAsNumber: 42 },
})
expect(queryClient.getQueryData(['data'])).toEqual({ count: 42 })
})
it('should render "ToggleValueButton" inline for a boolean primitive row', () => {
queryClient.setQueryData(['data'], { flag: false })
const rendered = renderExplorer({
label: 'flag',
value: false,
editable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
dataPath: ['flag'],
})
expect(rendered.getByLabelText('Toggle value')).toBeInTheDocument()
})
it('should render "DeleteItemButton" inline when a primitive row has "itemsDeletable"', () => {
queryClient.setQueryData(['data'], { name: 'Anna' })
const rendered = renderExplorer({
label: 'name',
value: 'Anna',
editable: true,
itemsDeletable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
dataPath: ['name'],
})
expect(rendered.getByLabelText('Delete item')).toBeInTheDocument()
})
it('should delete fields from the active query when their inline delete buttons are clicked', () => {
const value = { name: 'Anna', age: 30 }
queryClient.setQueryData(['data'], value)
const rendered = renderExplorer({
label: 'Data',
value,
defaultExpanded: ['Data'],
editable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
})
const ageRow = rendered.getByText('age:').parentElement!
fireEvent.click(within(ageRow).getByLabelText('Delete item'))
expect(queryClient.getQueryData(['data'])).toEqual({ name: 'Anna' })
const nameRow = rendered.getByText('name:').parentElement!
fireEvent.click(within(nameRow).getByLabelText('Delete item'))
expect(queryClient.getQueryData(['data'])).toEqual({})
})
})
describe('theme', () => {
it('should render without throwing under the "light" theme', () => {
const value = { items: ['a'], flag: true }
queryClient.setQueryData(['data'], value)
expect(() =>
renderExplorer(
{
label: 'Data',
value,
defaultExpanded: ['Data'],
editable: true,
activeQuery: queryClient
.getQueryCache()
.find({ queryKey: ['data'] }) as Query,
},
{ theme: 'light' },
),
).not.toThrow()
})
})
})