-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathTable.test.js
3643 lines (2945 loc) · 131 KB
/
Table.test.js
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
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright 2020 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
import {act, fireEvent, render as renderComponent, within} from '@testing-library/react';
import {ActionButton} from '@react-spectrum/button';
import Add from '@spectrum-icons/workflow/Add';
import {Cell, Column, Row, Table, TableBody, TableHeader} from '../';
import {CRUDExample} from '../stories/CRUDExample';
import {getFocusableTreeWalker} from '@react-aria/focus';
import {HidingColumns} from '../stories/HidingColumns';
import {Link} from '@react-spectrum/link';
import {Provider} from '@react-spectrum/provider';
import React from 'react';
import {Switch} from '@react-spectrum/switch';
import {theme} from '@react-spectrum/theme-default';
import {triggerPress} from '@react-spectrum/test-utils';
import {typeText} from '@react-spectrum/test-utils';
import userEvent from '@testing-library/user-event';
let columns = [
{name: 'Foo', key: 'foo'},
{name: 'Bar', key: 'bar'},
{name: 'Baz', key: 'baz'}
];
let nestedColumns = [
{name: 'Test', key: 'test'},
{name: 'Tiered One Header', key: 'tier1', children: [
{name: 'Tier Two Header A', key: 'tier2a', children: [
{name: 'Foo', key: 'foo'},
{name: 'Bar', key: 'bar'}
]},
{name: 'Yay', key: 'yay'},
{name: 'Tier Two Header B', key: 'tier2b', children: [
{name: 'Baz', key: 'baz'}
]}
]}
];
let items = [
{test: 'Test 1', foo: 'Foo 1', bar: 'Bar 1', yay: 'Yay 1', baz: 'Baz 1'},
{test: 'Test 2', foo: 'Foo 2', bar: 'Bar 2', yay: 'Yay 2', baz: 'Baz 2'}
];
let manyItems = [];
for (let i = 1; i <= 100; i++) {
manyItems.push({id: i, foo: 'Foo ' + i, bar: 'Bar ' + i, baz: 'Baz ' + i});
}
describe('Table', function () {
let offsetWidth, offsetHeight;
beforeAll(function () {
offsetWidth = jest.spyOn(window.HTMLElement.prototype, 'clientWidth', 'get').mockImplementation(() => 1000);
offsetHeight = jest.spyOn(window.HTMLElement.prototype, 'clientHeight', 'get').mockImplementation(() => 1000);
jest.spyOn(window, 'requestAnimationFrame').mockImplementation(cb => cb());
jest.useFakeTimers();
});
afterAll(function () {
offsetWidth.mockReset();
offsetHeight.mockReset();
});
afterEach(() => {
act(() => {jest.runAllTimers();});
});
let render = (children, scale = 'medium') => renderComponent(
<Provider theme={theme} scale={scale}>
{children}
</Provider>
);
let rerender = (tree, children, scale = 'medium') => tree.rerender(
<Provider theme={theme} scale={scale}>
{children}
</Provider>
);
// I'd use tree.getByRole(role, {name: text}) here, but it's unbearably slow.
let getCell = (tree, text) => {
// Find by text, then go up to the element with the cell role.
let el = tree.getByText(text);
while (el && !/gridcell|rowheader|columnheader/.test(el.getAttribute('role'))) {
el = el.parentElement;
}
return el;
};
it('renders a static table', function () {
let {getByRole} = render(
<Table aria-label="Table" data-testid="test">
<TableHeader>
<Column>Foo</Column>
<Column>Bar</Column>
<Column>Baz</Column>
</TableHeader>
<TableBody>
<Row>
<Cell>Foo 1</Cell>
<Cell>Bar 1</Cell>
<Cell>Baz 1</Cell>
</Row>
<Row>
<Cell>Foo 2</Cell>
<Cell>Bar 2</Cell>
<Cell>Baz 2</Cell>
</Row>
</TableBody>
</Table>
);
let grid = getByRole('grid');
expect(grid).toBeVisible();
expect(grid).toHaveAttribute('aria-label', 'Table');
expect(grid).toHaveAttribute('data-testid', 'test');
expect(grid).toHaveAttribute('aria-rowcount', '3');
expect(grid).toHaveAttribute('aria-colcount', '3');
let rowgroups = within(grid).getAllByRole('rowgroup');
expect(rowgroups).toHaveLength(2);
let headerRows = within(rowgroups[0]).getAllByRole('row');
expect(headerRows).toHaveLength(1);
expect(headerRows[0]).toHaveAttribute('aria-rowindex', '1');
let headers = within(grid).getAllByRole('columnheader');
expect(headers).toHaveLength(3);
expect(headers[0]).toHaveAttribute('aria-colindex', '1');
expect(headers[1]).toHaveAttribute('aria-colindex', '2');
expect(headers[2]).toHaveAttribute('aria-colindex', '3');
for (let header of headers) {
expect(header).not.toHaveAttribute('aria-sort');
}
expect(headers[0]).toHaveTextContent('Foo');
expect(headers[1]).toHaveTextContent('Bar');
expect(headers[2]).toHaveTextContent('Baz');
let rows = within(rowgroups[1]).getAllByRole('row');
expect(rows).toHaveLength(2);
expect(rows[0]).toHaveAttribute('aria-rowindex', '2');
expect(rows[1]).toHaveAttribute('aria-rowindex', '3');
let rowheader = within(rows[0]).getByRole('rowheader');
expect(rowheader).toHaveTextContent('Foo 1');
expect(rowheader).toHaveAttribute('aria-colindex', '1');
expect(rows[0]).toHaveAttribute('aria-labelledby', rowheader.id);
rowheader = within(rows[1]).getByRole('rowheader');
expect(rowheader).toHaveTextContent('Foo 2');
expect(rowheader).toHaveAttribute('aria-colindex', '1');
expect(rows[1]).toHaveAttribute('aria-selected', 'false');
expect(rows[1]).toHaveAttribute('aria-labelledby', rowheader.id);
let cells = within(rowgroups[1]).getAllByRole('gridcell');
expect(cells).toHaveLength(4);
expect(cells[0]).toHaveAttribute('aria-colindex', '2');
expect(cells[1]).toHaveAttribute('aria-colindex', '3');
expect(cells[2]).toHaveAttribute('aria-colindex', '2');
expect(cells[3]).toHaveAttribute('aria-colindex', '3');
});
it('renders a static table with selection', function () {
let {getByRole} = render(
<Table aria-label="Table" data-testid="test" selectionMode="multiple">
<TableHeader>
<Column>Foo</Column>
<Column>Bar</Column>
<Column>Baz</Column>
</TableHeader>
<TableBody>
<Row>
<Cell>Foo 1</Cell>
<Cell>Bar 1</Cell>
<Cell>Baz 1</Cell>
</Row>
<Row>
<Cell>Foo 2</Cell>
<Cell>Bar 2</Cell>
<Cell>Baz 2</Cell>
</Row>
</TableBody>
</Table>
);
let grid = getByRole('grid');
expect(grid).toBeVisible();
expect(grid).toHaveAttribute('aria-label', 'Table');
expect(grid).toHaveAttribute('data-testid', 'test');
expect(grid).toHaveAttribute('aria-multiselectable', 'true');
expect(grid).toHaveAttribute('aria-rowcount', '3');
expect(grid).toHaveAttribute('aria-colcount', '4');
let rowgroups = within(grid).getAllByRole('rowgroup');
expect(rowgroups).toHaveLength(2);
let headerRows = within(rowgroups[0]).getAllByRole('row');
expect(headerRows).toHaveLength(1);
expect(headerRows[0]).toHaveAttribute('aria-rowindex', '1');
let headers = within(grid).getAllByRole('columnheader');
expect(headers).toHaveLength(4);
expect(headers[0]).toHaveAttribute('aria-colindex', '1');
expect(headers[1]).toHaveAttribute('aria-colindex', '2');
expect(headers[2]).toHaveAttribute('aria-colindex', '3');
expect(headers[3]).toHaveAttribute('aria-colindex', '4');
for (let header of headers) {
expect(header).not.toHaveAttribute('aria-sort');
}
let checkbox = within(headers[0]).getByRole('checkbox');
expect(checkbox).toHaveAttribute('aria-label', 'Select All');
expect(headers[1]).toHaveTextContent('Foo');
expect(headers[2]).toHaveTextContent('Bar');
expect(headers[3]).toHaveTextContent('Baz');
let rows = within(rowgroups[1]).getAllByRole('row');
expect(rows).toHaveLength(2);
expect(rows[0]).toHaveAttribute('aria-rowindex', '2');
expect(rows[1]).toHaveAttribute('aria-rowindex', '3');
let rowheader = within(rows[0]).getByRole('rowheader');
expect(rowheader).toHaveTextContent('Foo 1');
expect(rowheader).toHaveAttribute('aria-colindex', '2');
expect(rows[0]).toHaveAttribute('aria-selected', 'false');
expect(rows[0]).toHaveAttribute('aria-labelledby', rowheader.id);
checkbox = within(rows[0]).getByRole('checkbox');
expect(checkbox).toHaveAttribute('aria-label', 'Select');
expect(checkbox).toHaveAttribute('aria-labelledby', `${checkbox.id} ${rowheader.id}`);
rowheader = within(rows[1]).getByRole('rowheader');
expect(rowheader).toHaveTextContent('Foo 2');
expect(rowheader).toHaveAttribute('aria-colindex', '2');
expect(rows[1]).toHaveAttribute('aria-selected', 'false');
expect(rows[1]).toHaveAttribute('aria-labelledby', rowheader.id);
checkbox = within(rows[1]).getByRole('checkbox');
expect(checkbox).toHaveAttribute('aria-label', 'Select');
expect(checkbox).toHaveAttribute('aria-labelledby', `${checkbox.id} ${rowheader.id}`);
let cells = within(rowgroups[1]).getAllByRole('gridcell');
expect(cells).toHaveLength(6);
expect(cells[0]).toHaveAttribute('aria-colindex', '1');
expect(cells[1]).toHaveAttribute('aria-colindex', '3');
expect(cells[2]).toHaveAttribute('aria-colindex', '4');
expect(cells[3]).toHaveAttribute('aria-colindex', '1');
expect(cells[4]).toHaveAttribute('aria-colindex', '3');
expect(cells[5]).toHaveAttribute('aria-colindex', '4');
});
it('renders a dynamic table', function () {
let {getByRole} = render(
<Table aria-label="Table">
<TableHeader columns={columns}>
{column => <Column>{column.name}</Column>}
</TableHeader>
<TableBody items={items}>
{item =>
(<Row key={item.foo}>
{key => <Cell>{item[key]}</Cell>}
</Row>)
}
</TableBody>
</Table>
);
let grid = getByRole('grid');
expect(grid).toBeVisible();
expect(grid).toHaveAttribute('aria-rowcount', '3');
expect(grid).toHaveAttribute('aria-colcount', '3');
let rowgroups = within(grid).getAllByRole('rowgroup');
expect(rowgroups).toHaveLength(2);
let headerRows = within(rowgroups[0]).getAllByRole('row');
expect(headerRows).toHaveLength(1);
expect(headerRows[0]).toHaveAttribute('aria-rowindex', '1');
let headers = within(grid).getAllByRole('columnheader');
expect(headers).toHaveLength(3);
expect(headers[0]).toHaveAttribute('aria-colindex', '1');
expect(headers[1]).toHaveAttribute('aria-colindex', '2');
expect(headers[2]).toHaveAttribute('aria-colindex', '3');
expect(headers[0]).toHaveTextContent('Foo');
expect(headers[1]).toHaveTextContent('Bar');
expect(headers[2]).toHaveTextContent('Baz');
let rows = within(rowgroups[1]).getAllByRole('row');
expect(rows).toHaveLength(2);
let rowheader = within(rows[0]).getByRole('rowheader');
expect(rowheader).toHaveTextContent('Foo 1');
expect(rowheader).toHaveAttribute('aria-colindex', '1');
expect(rows[0]).toHaveAttribute('aria-labelledby', rowheader.id);
rowheader = within(rows[1]).getByRole('rowheader');
expect(rowheader).toHaveTextContent('Foo 2');
expect(rowheader).toHaveAttribute('aria-colindex', '1');
expect(rows[1]).toHaveAttribute('aria-selected', 'false');
expect(rows[1]).toHaveAttribute('aria-labelledby', rowheader.id);
let cells = within(rowgroups[1]).getAllByRole('gridcell');
expect(cells).toHaveLength(4);
expect(cells[0]).toHaveAttribute('aria-colindex', '2');
expect(cells[1]).toHaveAttribute('aria-colindex', '3');
expect(cells[2]).toHaveAttribute('aria-colindex', '2');
expect(cells[3]).toHaveAttribute('aria-colindex', '3');
});
it('renders a dynamic table with selection', function () {
let {getByRole} = render(
<Table aria-label="Table" selectionMode="multiple">
<TableHeader columns={columns}>
{column => <Column>{column.name}</Column>}
</TableHeader>
<TableBody items={items}>
{item =>
(<Row key={item.foo}>
{key => <Cell>{item[key]}</Cell>}
</Row>)
}
</TableBody>
</Table>
);
let grid = getByRole('grid');
expect(grid).toBeVisible();
expect(grid).toHaveAttribute('aria-multiselectable', 'true');
expect(grid).toHaveAttribute('aria-rowcount', '3');
expect(grid).toHaveAttribute('aria-colcount', '4');
let rowgroups = within(grid).getAllByRole('rowgroup');
expect(rowgroups).toHaveLength(2);
let headerRows = within(rowgroups[0]).getAllByRole('row');
expect(headerRows).toHaveLength(1);
expect(headerRows[0]).toHaveAttribute('aria-rowindex', '1');
let headers = within(grid).getAllByRole('columnheader');
expect(headers).toHaveLength(4);
expect(headers[0]).toHaveAttribute('aria-colindex', '1');
expect(headers[1]).toHaveAttribute('aria-colindex', '2');
expect(headers[2]).toHaveAttribute('aria-colindex', '3');
expect(headers[3]).toHaveAttribute('aria-colindex', '4');
let checkbox = within(headers[0]).getByRole('checkbox');
expect(checkbox).toHaveAttribute('aria-label', 'Select All');
expect(headers[1]).toHaveTextContent('Foo');
expect(headers[2]).toHaveTextContent('Bar');
expect(headers[3]).toHaveTextContent('Baz');
let rows = within(rowgroups[1]).getAllByRole('row');
expect(rows).toHaveLength(2);
let rowheader = within(rows[0]).getByRole('rowheader');
expect(rowheader).toHaveTextContent('Foo 1');
expect(rowheader).toHaveAttribute('aria-colindex', '2');
expect(rows[0]).toHaveAttribute('aria-selected', 'false');
expect(rows[0]).toHaveAttribute('aria-labelledby', rowheader.id);
checkbox = within(rows[0]).getByRole('checkbox');
expect(checkbox).toHaveAttribute('aria-label', 'Select');
expect(checkbox).toHaveAttribute('aria-labelledby', `${checkbox.id} ${rowheader.id}`);
rowheader = within(rows[1]).getByRole('rowheader');
expect(rowheader).toHaveTextContent('Foo 2');
expect(rowheader).toHaveAttribute('aria-colindex', '2');
expect(rows[1]).toHaveAttribute('aria-selected', 'false');
expect(rows[1]).toHaveAttribute('aria-labelledby', rowheader.id);
checkbox = within(rows[1]).getByRole('checkbox');
expect(checkbox).toHaveAttribute('aria-label', 'Select');
expect(checkbox).toHaveAttribute('aria-labelledby', `${checkbox.id} ${rowheader.id}`);
let cells = within(rowgroups[1]).getAllByRole('gridcell');
expect(cells).toHaveLength(6);
expect(cells[0]).toHaveAttribute('aria-colindex', '1');
expect(cells[1]).toHaveAttribute('aria-colindex', '3');
expect(cells[2]).toHaveAttribute('aria-colindex', '4');
expect(cells[3]).toHaveAttribute('aria-colindex', '1');
expect(cells[4]).toHaveAttribute('aria-colindex', '3');
expect(cells[5]).toHaveAttribute('aria-colindex', '4');
});
it('renders a static table with nested columns', function () {
let {getByRole} = render(
<Table aria-label="Table" selectionMode="multiple">
<TableHeader>
<Column key="test">Test</Column>
<Column title="Group 1">
<Column key="foo">Foo</Column>
<Column key="bar">Bar</Column>
</Column>
<Column title="Group 2">
<Column key="baz">Baz</Column>
</Column>
</TableHeader>
<TableBody>
<Row>
<Cell>Test 1</Cell>
<Cell>Foo 1</Cell>
<Cell>Bar 1</Cell>
<Cell>Baz 1</Cell>
</Row>
<Row>
<Cell>Test 2</Cell>
<Cell>Foo 2</Cell>
<Cell>Bar 2</Cell>
<Cell>Baz 2</Cell>
</Row>
</TableBody>
</Table>
);
let grid = getByRole('grid');
expect(grid).toBeVisible();
expect(grid).toHaveAttribute('aria-multiselectable', 'true');
expect(grid).toHaveAttribute('aria-rowcount', '4');
expect(grid).toHaveAttribute('aria-colcount', '5');
let rowgroups = within(grid).getAllByRole('rowgroup');
expect(rowgroups).toHaveLength(2);
let headerRows = within(rowgroups[0]).getAllByRole('row');
expect(headerRows).toHaveLength(2);
expect(headerRows[0]).toHaveAttribute('aria-rowindex', '1');
expect(headerRows[1]).toHaveAttribute('aria-rowindex', '2');
let headers = within(headerRows[0]).getAllByRole('columnheader');
let placeholderCells = within(headerRows[0]).getAllByRole('gridcell');
expect(headers).toHaveLength(2);
expect(placeholderCells).toHaveLength(1);
expect(placeholderCells[0]).toHaveTextContent('');
expect(placeholderCells[0]).toHaveAttribute('aria-colspan', '2');
expect(placeholderCells[0]).toHaveAttribute('aria-colindex', '1');
expect(headers[0]).toHaveTextContent('Group 1');
expect(headers[0]).toHaveAttribute('aria-colspan', '2');
expect(headers[0]).toHaveAttribute('aria-colindex', '3');
expect(headers[1]).toHaveTextContent('Group 2');
expect(headers[1]).toHaveAttribute('aria-colindex', '5');
headers = within(headerRows[1]).getAllByRole('columnheader');
expect(headers).toHaveLength(5);
expect(headers[0]).toHaveAttribute('aria-colindex', '1');
expect(headers[1]).toHaveAttribute('aria-colindex', '2');
expect(headers[2]).toHaveAttribute('aria-colindex', '3');
expect(headers[3]).toHaveAttribute('aria-colindex', '4');
expect(headers[4]).toHaveAttribute('aria-colindex', '5');
let checkbox = within(headers[0]).getByRole('checkbox');
expect(checkbox).toHaveAttribute('aria-label', 'Select All');
expect(headers[1]).toHaveTextContent('Test');
expect(headers[2]).toHaveTextContent('Foo');
expect(headers[3]).toHaveTextContent('Bar');
expect(headers[4]).toHaveTextContent('Baz');
let rows = within(rowgroups[1]).getAllByRole('row');
expect(rows).toHaveLength(2);
let rowheader = within(rows[0]).getByRole('rowheader');
expect(rowheader).toHaveTextContent('Test 1');
expect(rows[0]).toHaveAttribute('aria-selected', 'false');
expect(rows[0]).toHaveAttribute('aria-labelledby', rowheader.id);
expect(rows[0]).toHaveAttribute('aria-rowindex', '3');
checkbox = within(rows[0]).getByRole('checkbox');
expect(checkbox).toHaveAttribute('aria-label', 'Select');
expect(checkbox).toHaveAttribute('aria-labelledby', `${checkbox.id} ${rowheader.id}`);
rowheader = within(rows[1]).getByRole('rowheader');
expect(rowheader).toHaveTextContent('Test 2');
expect(rows[1]).toHaveAttribute('aria-selected', 'false');
expect(rows[1]).toHaveAttribute('aria-labelledby', rowheader.id);
expect(rows[1]).toHaveAttribute('aria-rowindex', '4');
checkbox = within(rows[1]).getByRole('checkbox');
expect(checkbox).toHaveAttribute('aria-label', 'Select');
expect(checkbox).toHaveAttribute('aria-labelledby', `${checkbox.id} ${rowheader.id}`);
let cells = within(rowgroups[1]).getAllByRole('gridcell');
expect(cells).toHaveLength(8);
});
it('renders a dynamic table with nested columns', function () {
let {getByRole} = render(
<Table aria-label="Table" selectionMode="multiple">
<TableHeader columns={nestedColumns}>
{column =>
<Column childColumns={column.children}>{column.name}</Column>
}
</TableHeader>
<TableBody items={items}>
{item =>
(<Row key={item.foo}>
{key => <Cell>{item[key]}</Cell>}
</Row>)
}
</TableBody>
</Table>
);
let grid = getByRole('grid');
expect(grid).toBeVisible();
expect(grid).toHaveAttribute('aria-multiselectable', 'true');
expect(grid).toHaveAttribute('aria-rowcount', '5');
expect(grid).toHaveAttribute('aria-colcount', '6');
let rowgroups = within(grid).getAllByRole('rowgroup');
expect(rowgroups).toHaveLength(2);
let headerRows = within(rowgroups[0]).getAllByRole('row');
expect(headerRows).toHaveLength(3);
expect(headerRows[0]).toHaveAttribute('aria-rowindex', '1');
expect(headerRows[1]).toHaveAttribute('aria-rowindex', '2');
expect(headerRows[2]).toHaveAttribute('aria-rowindex', '3');
let headers = within(headerRows[0]).getAllByRole('columnheader');
let placeholderCells = within(headerRows[0]).getAllByRole('gridcell');
expect(headers).toHaveLength(1);
expect(placeholderCells).toHaveLength(1);
expect(placeholderCells[0]).toHaveTextContent('');
expect(placeholderCells[0]).toHaveAttribute('aria-colspan', '2');
expect(placeholderCells[0]).toHaveAttribute('aria-colindex', '1');
expect(headers[0]).toHaveTextContent('Tiered One Header');
expect(headers[0]).toHaveAttribute('aria-colspan', '4');
expect(headers[0]).toHaveAttribute('aria-colindex', '3');
headers = within(headerRows[1]).getAllByRole('columnheader');
placeholderCells = within(headerRows[1]).getAllByRole('gridcell');
expect(headers).toHaveLength(2);
expect(placeholderCells).toHaveLength(2);
expect(placeholderCells[0]).toHaveTextContent('');
expect(placeholderCells[0]).toHaveAttribute('aria-colspan', '2');
expect(placeholderCells[0]).toHaveAttribute('aria-colindex', '1');
expect(headers[0]).toHaveTextContent('Tier Two Header A');
expect(headers[0]).toHaveAttribute('aria-colspan', '2');
expect(headers[0]).toHaveAttribute('aria-colindex', '3');
expect(placeholderCells[1]).toHaveTextContent('');
expect(placeholderCells[1]).toHaveAttribute('aria-colindex', '5');
expect(headers[1]).toHaveTextContent('Tier Two Header B');
expect(headers[1]).toHaveAttribute('aria-colindex', '6');
headers = within(headerRows[2]).getAllByRole('columnheader');
expect(headers).toHaveLength(6);
let checkbox = within(headers[0]).getByRole('checkbox');
expect(checkbox).toHaveAttribute('aria-label', 'Select All');
expect(headers[1]).toHaveTextContent('Test');
expect(headers[2]).toHaveTextContent('Foo');
expect(headers[3]).toHaveTextContent('Bar');
expect(headers[4]).toHaveTextContent('Yay');
expect(headers[5]).toHaveTextContent('Baz');
let rows = within(rowgroups[1]).getAllByRole('row');
expect(rows).toHaveLength(2);
let rowheader = within(rows[0]).getByRole('rowheader');
expect(rowheader).toHaveTextContent('Test 1');
expect(rows[0]).toHaveAttribute('aria-selected', 'false');
expect(rows[0]).toHaveAttribute('aria-labelledby', rowheader.id);
expect(rows[0]).toHaveAttribute('aria-rowindex', '4');
checkbox = within(rows[0]).getByRole('checkbox');
expect(checkbox).toHaveAttribute('aria-label', 'Select');
expect(checkbox).toHaveAttribute('aria-labelledby', `${checkbox.id} ${rowheader.id}`);
rowheader = within(rows[1]).getByRole('rowheader');
expect(rowheader).toHaveTextContent('Test 2');
expect(rows[1]).toHaveAttribute('aria-selected', 'false');
expect(rows[1]).toHaveAttribute('aria-labelledby', rowheader.id);
expect(rows[1]).toHaveAttribute('aria-rowindex', '5');
checkbox = within(rows[1]).getByRole('checkbox');
expect(checkbox).toHaveAttribute('aria-label', 'Select');
expect(checkbox).toHaveAttribute('aria-labelledby', `${checkbox.id} ${rowheader.id}`);
let cells = within(rowgroups[1]).getAllByRole('gridcell');
expect(cells).toHaveLength(10);
});
it('renders a table with multiple row headers', function () {
let {getByRole} = render(
<Table aria-label="Table" selectionMode="multiple">
<TableHeader>
<Column isRowHeader>First Name</Column>
<Column isRowHeader>Last Name</Column>
<Column>Birthday</Column>
</TableHeader>
<TableBody>
<Row>
<Cell>Sam</Cell>
<Cell>Smith</Cell>
<Cell>May 3</Cell>
</Row>
<Row>
<Cell>Julia</Cell>
<Cell>Jones</Cell>
<Cell>February 10</Cell>
</Row>
</TableBody>
</Table>
);
let grid = getByRole('grid');
let rowgroups = within(grid).getAllByRole('rowgroup');
let rows = within(rowgroups[1]).getAllByRole('row');
let rowheaders = within(rows[0]).getAllByRole('rowheader');
expect(rowheaders).toHaveLength(2);
expect(rowheaders[0]).toHaveTextContent('Sam');
expect(rowheaders[1]).toHaveTextContent('Smith');
expect(rows[0]).toHaveAttribute('aria-labelledby', `${rowheaders[0].id} ${rowheaders[1].id}`);
let checkbox = within(rows[0]).getByRole('checkbox');
expect(checkbox).toHaveAttribute('aria-label', 'Select');
expect(checkbox).toHaveAttribute('aria-labelledby', `${checkbox.id} ${rowheaders[0].id} ${rowheaders[1].id}`);
rowheaders = within(rows[1]).getAllByRole('rowheader');
expect(rowheaders).toHaveLength(2);
expect(rowheaders[0]).toHaveTextContent('Julia');
expect(rowheaders[1]).toHaveTextContent('Jones');
expect(rows[1]).toHaveAttribute('aria-labelledby', `${rowheaders[0].id} ${rowheaders[1].id}`);
checkbox = within(rows[1]).getByRole('checkbox');
expect(checkbox).toHaveAttribute('aria-label', 'Select');
expect(checkbox).toHaveAttribute('aria-labelledby', `${checkbox.id} ${rowheaders[0].id} ${rowheaders[1].id}`);
});
describe('keyboard focus', function () {
// locale is being set here, since we can't nest them, use original render function
let renderTable = (locale = 'en-US', props = {}) => renderComponent(
<Provider locale={locale} theme={theme}>
<Table aria-label="Table" {...props}>
<TableHeader columns={columns}>
{column => <Column>{column.name}</Column>}
</TableHeader>
<TableBody items={items}>
{item =>
(<Row key={item.foo}>
{key => <Cell>{item[key]}</Cell>}
</Row>)
}
</TableBody>
</Table>
</Provider>
);
// locale is being set here, since we can't nest them, use original render function
let renderNested = (locale = 'en-US') => renderComponent(
<Provider locale={locale} theme={theme}>
<Table aria-label="Table">
<TableHeader columns={nestedColumns}>
{column =>
<Column childColumns={column.children}>{column.name}</Column>
}
</TableHeader>
<TableBody items={items}>
{item =>
(<Row key={item.foo}>
{key => <Cell>{item[key]}</Cell>}
</Row>)
}
</TableBody>
</Table>
</Provider>
);
let renderMany = () => render(
<Table aria-label="Table">
<TableHeader columns={columns}>
{column =>
<Column>{column.name}</Column>
}
</TableHeader>
<TableBody items={manyItems}>
{item =>
(<Row key={item.foo}>
{key => <Cell>{item[key]}</Cell>}
</Row>)
}
</TableBody>
</Table>
);
let focusCell = (tree, text) => act(() => getCell(tree, text).focus());
let moveFocus = (key, opts = {}) => {fireEvent.keyDown(document.activeElement, {key, ...opts});};
describe('ArrowRight', function () {
it('should move focus to the next cell in a row with ArrowRight', function () {
let tree = renderTable();
focusCell(tree, 'Bar 1');
moveFocus('ArrowRight');
expect(document.activeElement).toBe(getCell(tree, 'Baz 1'));
});
it('should move focus to the previous cell in a row with ArrowRight in RTL', function () {
let tree = renderTable('ar-AE');
focusCell(tree, 'Bar 1');
moveFocus('ArrowRight');
expect(document.activeElement).toBe(getCell(tree, 'Foo 1'));
});
it('should move focus to the row when on the last cell with ArrowRight', function () {
let tree = renderTable();
focusCell(tree, 'Baz 1');
moveFocus('ArrowRight');
expect(document.activeElement).toBe(tree.getAllByRole('row')[1]);
});
it('should move focus to the row when on the first cell with ArrowRight in RTL', function () {
let tree = renderTable('ar-AE');
focusCell(tree, 'Foo 1');
moveFocus('ArrowRight');
expect(document.activeElement).toBe(tree.getAllByRole('row')[1]);
});
it('should move focus from the row to the first cell with ArrowRight', function () {
let tree = renderTable();
act(() => {tree.getAllByRole('row')[1].focus();});
moveFocus('ArrowRight');
expect(document.activeElement).toBe(getCell(tree, 'Foo 1'));
});
it('should move focus from the row to the last cell with ArrowRight in RTL', function () {
let tree = renderTable('ar-AE');
act(() => {tree.getAllByRole('row')[1].focus();});
moveFocus('ArrowRight');
expect(document.activeElement).toBe(getCell(tree, 'Baz 1'));
});
it('should move to the next column header in a row with ArrowRight', function () {
let tree = renderTable();
focusCell(tree, 'Bar');
moveFocus('ArrowRight');
expect(document.activeElement).toBe(getCell(tree, 'Baz'));
});
it('should move to the previous column header in a row with ArrowRight in RTL', function () {
let tree = renderTable('ar-AE');
focusCell(tree, 'Bar');
moveFocus('ArrowRight');
expect(document.activeElement).toBe(getCell(tree, 'Foo'));
});
it('should move to the next nested column header in a row with ArrowRight', function () {
let tree = renderNested();
focusCell(tree, 'Tier Two Header A');
moveFocus('ArrowRight');
expect(document.activeElement).toBe(getCell(tree, 'Tier Two Header B'));
});
it('should move to the previous nested column header in a row with ArrowRight in RTL', function () {
let tree = renderNested('ar-AE');
focusCell(tree, 'Tier Two Header B');
moveFocus('ArrowRight');
expect(document.activeElement).toBe(getCell(tree, 'Tier Two Header A'));
});
it('should move to the first column header when focus is on the last column with ArrowRight', function () {
let tree = renderTable();
focusCell(tree, 'Baz');
moveFocus('ArrowRight');
expect(document.activeElement).toBe(getCell(tree, 'Foo'));
});
it('should move to the last column header when focus is on the first column with ArrowRight in RTL', function () {
let tree = renderTable('ar-AE');
focusCell(tree, 'Foo');
moveFocus('ArrowRight');
expect(document.activeElement).toBe(getCell(tree, 'Baz'));
});
it('should allow the user to focus disabled cells', function () {
let tree = renderTable('en-US', {disabledKeys: ['Foo 1']});
focusCell(tree, 'Bar 1');
moveFocus('ArrowRight');
expect(document.activeElement).toBe(getCell(tree, 'Baz 1'));
});
});
describe('ArrowLeft', function () {
it('should move focus to the previous cell in a row with ArrowLeft', function () {
let tree = renderTable();
focusCell(tree, 'Bar 1');
moveFocus('ArrowLeft');
expect(document.activeElement).toBe(getCell(tree, 'Foo 1'));
});
it('should move focus to the next cell in a row with ArrowRight in RTL', function () {
let tree = renderTable('ar-AE');
focusCell(tree, 'Bar 1');
moveFocus('ArrowLeft');
expect(document.activeElement).toBe(getCell(tree, 'Baz 1'));
});
it('should move focus to the row when on the first cell with ArrowLeft', function () {
let tree = renderTable();
focusCell(tree, 'Foo 1');
moveFocus('ArrowLeft');
expect(document.activeElement).toBe(tree.getAllByRole('row')[1]);
});
it('should move focus to the row when on the last cell with ArrowLeft in RTL', function () {
let tree = renderTable('ar-AE');
focusCell(tree, 'Baz 1');
moveFocus('ArrowLeft');
expect(document.activeElement).toBe(tree.getAllByRole('row')[1]);
});
it('should move focus from the row to the last cell with ArrowLeft', function () {
let tree = renderTable();
act(() => {tree.getAllByRole('row')[1].focus();});
moveFocus('ArrowLeft');
expect(document.activeElement).toBe(getCell(tree, 'Baz 1'));
});
it('should move focus from the row to the first cell with ArrowLeft in RTL', function () {
let tree = renderTable('ar-AE');
act(() => {tree.getAllByRole('row')[1].focus();});
moveFocus('ArrowLeft');
expect(document.activeElement).toBe(getCell(tree, 'Foo 1'));
});
it('should move to the previous column header in a row with ArrowLeft', function () {
let tree = renderTable();
focusCell(tree, 'Bar');
moveFocus('ArrowLeft');
expect(document.activeElement).toBe(getCell(tree, 'Foo'));
});
it('should move to the next column header in a row with ArrowLeft in RTL', function () {
let tree = renderTable('ar-AE');
focusCell(tree, 'Bar');
moveFocus('ArrowLeft');
expect(document.activeElement).toBe(getCell(tree, 'Baz'));
});
it('should move to the previous nested column header in a row with ArrowLeft', function () {
let tree = renderNested();
focusCell(tree, 'Tier Two Header B');
moveFocus('ArrowLeft');
expect(document.activeElement).toBe(getCell(tree, 'Tier Two Header A'));
});
it('should move to the next nested column header in a row with ArrowLeft in RTL', function () {
let tree = renderNested('ar-AE');
focusCell(tree, 'Tier Two Header A');
moveFocus('ArrowLeft');
expect(document.activeElement).toBe(getCell(tree, 'Tier Two Header B'));
});
it('should move to the last column header when focus is on the first column with ArrowLeft', function () {
let tree = renderTable();
focusCell(tree, 'Foo');
moveFocus('ArrowLeft');
expect(document.activeElement).toBe(getCell(tree, 'Baz'));
});
it('should move to the first column header when focus is on the last column with ArrowLeft in RTL', function () {
let tree = renderTable('ar-AE');
focusCell(tree, 'Baz');
moveFocus('ArrowLeft');
expect(document.activeElement).toBe(getCell(tree, 'Foo'));
});
it('should allow the user to focus disabled cells', function () {
let tree = renderTable('en-US', {disabledKeys: ['Foo 1']});
focusCell(tree, 'Bar 1');
moveFocus('ArrowLeft');
expect(document.activeElement).toBe(getCell(tree, 'Foo 1'));
});
});
describe('ArrowUp', function () {
it('should move focus to the cell above with ArrowUp', function () {
let tree = renderTable();
focusCell(tree, 'Bar 2');
moveFocus('ArrowUp');
expect(document.activeElement).toBe(getCell(tree, 'Bar 1'));
});
it('should move focus to the row above with ArrowUp', function () {
let tree = renderTable();
act(() => {tree.getAllByRole('row')[2].focus();});
moveFocus('ArrowUp');
expect(document.activeElement).toBe(tree.getAllByRole('row')[1]);
});
it('should move focus to the column header above a cell in the first row with ArrowUp', function () {
let tree = renderTable();
focusCell(tree, 'Bar 1');
moveFocus('ArrowUp');
expect(document.activeElement).toBe(getCell(tree, 'Bar'));
});
it('should move focus to the column header above the first row with ArrowUp', function () {
let tree = renderTable();
act(() => {tree.getAllByRole('row')[1].focus();});
moveFocus('ArrowUp');
expect(document.activeElement).toBe(getCell(tree, 'Foo'));
});
it('should move focus to the parent column header with ArrowUp', function () {
let tree = renderNested();
focusCell(tree, 'Bar');
moveFocus('ArrowUp');
expect(document.activeElement).toBe(getCell(tree, 'Tier Two Header A'));
moveFocus('ArrowUp');
expect(document.activeElement).toBe(getCell(tree, 'Tiered One Header'));
// do nothing when at the top
moveFocus('ArrowUp');
expect(document.activeElement).toBe(getCell(tree, 'Tiered One Header'));
});
it('should allow the user to focus disabled rows', function () {
let tree = renderTable('en-US', {disabledKeys: ['Foo 1']});
focusCell(tree, 'Bar 2');
moveFocus('ArrowUp');
expect(document.activeElement).toBe(getCell(tree, 'Bar 1'));
});
});
describe('ArrowDown', function () {
it('should move focus to the cell below with ArrowDown', function () {
let tree = renderTable();
focusCell(tree, 'Bar 1');
moveFocus('ArrowDown');
expect(document.activeElement).toBe(getCell(tree, 'Bar 2'));
});
it('should move focus to the row below with ArrowDown', function () {
let tree = renderTable();
act(() => {tree.getAllByRole('row')[1].focus();});
moveFocus('ArrowDown');
expect(document.activeElement).toBe(tree.getAllByRole('row')[2]);
});
it('should move focus to the child column header with ArrowDown', function () {
let tree = renderNested();
focusCell(tree, 'Tiered One Header');
moveFocus('ArrowDown');
expect(document.activeElement).toBe(getCell(tree, 'Tier Two Header A'));
moveFocus('ArrowDown');
expect(document.activeElement).toBe(getCell(tree, 'Foo'));
});
it('should move focus to the cell below a column header with ArrowDown', function () {
let tree = renderTable();
focusCell(tree, 'Bar');
moveFocus('ArrowDown');
expect(document.activeElement).toBe(getCell(tree, 'Bar 1'));
});