-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Expand file tree
/
Copy pathtabs.spec.ts
More file actions
386 lines (344 loc) · 14.6 KB
/
tabs.spec.ts
File metadata and controls
386 lines (344 loc) · 14.6 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
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import {
TabInputs,
TabPattern,
TabListInputs,
TabListPattern,
TabPanelInputs,
TabPanelPattern,
} from './tabs';
import {signal, SignalLike, WritableSignalLike} from '../behaviors/signal-like/signal-like';
import {createKeyboardEvent} from '@angular/cdk/testing/private';
import {ModifierKeys} from '@angular/cdk/testing';
// Converts the SignalLike type to WritableSignalLike type for controlling test inputs.
type WritableSignalOverrides<O> = {
[K in keyof O as O[K] extends SignalLike<any> ? K : never]: O[K] extends SignalLike<infer T>
? WritableSignalLike<T>
: never;
};
type TestTabListInputs = TabListInputs & WritableSignalOverrides<TabListInputs>;
type TestTabInputs = TabInputs & WritableSignalOverrides<TabInputs>;
type TestTabPanelInputs = TabPanelInputs & WritableSignalOverrides<TabPanelInputs>;
const up = (mods?: ModifierKeys) => createKeyboardEvent('keydown', 38, 'ArrowUp', mods);
const down = (mods?: ModifierKeys) => createKeyboardEvent('keydown', 40, 'ArrowDown', mods);
const left = (mods?: ModifierKeys) => createKeyboardEvent('keydown', 37, 'ArrowLeft', mods);
const right = (mods?: ModifierKeys) => createKeyboardEvent('keydown', 39, 'ArrowRight', mods);
const home = (mods?: ModifierKeys) => createKeyboardEvent('keydown', 36, 'Home', mods);
const end = (mods?: ModifierKeys) => createKeyboardEvent('keydown', 35, 'End', mods);
const space = (mods?: ModifierKeys) => createKeyboardEvent('keydown', 32, ' ', mods);
const enter = (mods?: ModifierKeys) => createKeyboardEvent('keydown', 13, 'Enter', mods);
function createTabElement(): HTMLElement {
const element = document.createElement('div');
element.role = 'tab';
return element;
}
describe('Tabs Pattern', () => {
let tabListInputs: TestTabListInputs;
let tabListPattern: TabListPattern;
let tabInputs: TestTabInputs[];
let tabPatterns: TabPattern[];
let tabPanelInputs: TestTabPanelInputs[];
let tabPanelPatterns: TabPanelPattern[];
beforeEach(() => {
// Initiate TabListPattern.
tabListInputs = {
orientation: signal('horizontal'),
wrap: signal(true),
textDirection: signal('ltr'),
selectionMode: signal('follow'),
focusMode: signal('roving'),
disabled: signal(false),
activeItem: signal(undefined),
softDisabled: signal(true),
items: signal([]),
element: signal(document.createElement('div')),
selectedTab: signal(undefined),
};
tabListPattern = new TabListPattern(tabListInputs);
// Initiate a list of TabPatterns.
tabInputs = [
{
tabList: signal(tabListPattern),
tabPanel: signal(undefined),
id: signal('tab-1-id'),
element: signal(createTabElement()),
disabled: signal(false),
},
{
tabList: signal(tabListPattern),
tabPanel: signal(undefined),
id: signal('tab-2-id'),
element: signal(createTabElement()),
disabled: signal(false),
},
{
tabList: signal(tabListPattern),
tabPanel: signal(undefined),
id: signal('tab-3-id'),
element: signal(createTabElement()),
disabled: signal(false),
},
];
tabPatterns = [
new TabPattern(tabInputs[0]),
new TabPattern(tabInputs[1]),
new TabPattern(tabInputs[2]),
];
// Initiate a list of TabPanelPatterns.
tabPanelInputs = [
{
id: signal('tabpanel-1-id'),
tab: signal(undefined),
},
{
id: signal('tabpanel-2-id'),
tab: signal(undefined),
},
{
id: signal('tabpanel-3-id'),
tab: signal(undefined),
},
];
tabPanelPatterns = [
new TabPanelPattern(tabPanelInputs[0]),
new TabPanelPattern(tabPanelInputs[1]),
new TabPanelPattern(tabPanelInputs[2]),
];
// Binding between tabs and tabpanels.
tabInputs[0].tabPanel.set(tabPanelPatterns[0]);
tabInputs[1].tabPanel.set(tabPanelPatterns[1]);
tabInputs[2].tabPanel.set(tabPanelPatterns[2]);
tabPanelInputs[0].tab.set(tabPatterns[0]);
tabPanelInputs[1].tab.set(tabPatterns[1]);
tabPanelInputs[2].tab.set(tabPatterns[2]);
tabListInputs.items.set(tabPatterns);
tabListInputs.activeItem.set(tabPatterns[0]);
});
describe('TabListPattern', () => {
describe('#open', () => {
it('should open a tab with value', () => {
expect(tabListPattern.selectedTab()).toBeUndefined();
tabListPattern.open(tabPatterns[0]);
expect(tabListPattern.selectedTab()!).toBe(tabPatterns[0]);
});
it('should open a tab with tab pattern instance', () => {
expect(tabListPattern.selectedTab()).toBeUndefined();
tabListPattern.open(tabPatterns[0]);
expect(tabListPattern.selectedTab()).toBe(tabPatterns[0]);
});
it('should open the active tab', () => {
expect(tabListPattern.selectedTab()).toBeUndefined();
expect(tabListPattern.activeTab()).toBe(tabPatterns[0]);
tabListPattern.open();
expect(tabListPattern.selectedTab()).toBe(tabPatterns[0]);
});
});
describe('#setDefaultState', () => {
it('should not set activeIndex if there are no tabs', () => {
tabListInputs.items.set([]);
tabListInputs.activeItem.set(tabPatterns[10]);
tabListPattern.setDefaultState();
expect(tabListInputs.activeItem()).toBe(tabPatterns[10]);
});
it('should not set activeIndex if no tabs are focusable', () => {
tabListInputs.softDisabled.set(false);
tabInputs.forEach(input => input.disabled.set(true));
tabListInputs.activeItem.set(tabPatterns[10]);
tabListPattern.setDefaultState();
expect(tabListInputs.activeItem()).toBe(tabPatterns[10]);
});
it('should set activeIndex to the first focusable tab if no tabs are selected', () => {
tabListInputs.softDisabled.set(false);
tabListInputs.activeItem.set(tabPatterns[2]);
tabListPattern.selectedTab.set(undefined);
tabInputs[0].disabled.set(true);
tabListPattern.setDefaultState();
expect(tabListInputs.activeItem()).toBe(tabPatterns[1]);
});
it('should set activeIndex to the first focusable and selected tab', () => {
tabListInputs.activeItem.set(tabPatterns[0]);
tabListPattern.selectedTab.set(tabPatterns[2]);
tabListPattern.setDefaultState();
expect(tabListInputs.activeItem()).toBe(tabPatterns[2]);
});
it('should set activeIndex to the first focusable tab when the selected tab is not focusable', () => {
tabListInputs.softDisabled.set(false);
tabListPattern.selectedTab.set(tabPatterns[1]);
tabInputs[1].disabled.set(true);
tabListPattern.setDefaultState();
expect(tabListInputs.activeItem()).toBe(tabPatterns[0]);
});
});
describe('Keyboard Navigation', () => {
it('does not handle keyboard event if a tablist is disabled.', () => {
expect(tabPatterns[1].active()).toBeFalse();
tabListInputs.disabled.set(true);
tabListPattern.onKeydown(right());
expect(tabPatterns[1].active()).toBeFalse();
});
it('skips the disabled tab when `softDisabled` is set to false.', () => {
tabListInputs.softDisabled.set(false);
tabInputs[1].disabled.set(true);
tabListPattern.onKeydown(right());
expect(tabPatterns[0].active()).toBeFalse();
expect(tabPatterns[1].active()).toBeFalse();
expect(tabPatterns[2].active()).toBeTrue();
});
it('does not skip the disabled tab when `softDisabled` is set to true.', () => {
tabInputs[1].disabled.set(true);
tabListPattern.onKeydown(right());
expect(tabPatterns[0].active()).toBeFalse();
expect(tabPatterns[1].active()).toBeTrue();
expect(tabPatterns[2].active()).toBeFalse();
});
it('selects a tab by focus if `selectionMode` is "follow".', () => {
tabListPattern.onKeydown(space());
expect(tabPatterns[0].selected()).toBeTrue();
expect(tabPatterns[1].selected()).toBeFalse();
tabListPattern.onKeydown(right());
expect(tabPatterns[0].selected()).toBeFalse();
expect(tabPatterns[1].selected()).toBeTrue();
});
it('selects a tab by enter key if `selectionMode` is "explicit".', () => {
tabListInputs.selectionMode.set('explicit');
tabListPattern.onKeydown(space());
expect(tabPatterns[0].selected()).toBeTrue();
expect(tabPatterns[1].selected()).toBeFalse();
tabListPattern.onKeydown(right());
expect(tabPatterns[0].selected()).toBeTrue();
expect(tabPatterns[1].selected()).toBeFalse();
tabListPattern.onKeydown(enter());
expect(tabPatterns[0].selected()).toBeFalse();
expect(tabPatterns[1].selected()).toBeTrue();
});
it('selects a tab by space key if `selectionMode` is "explicit".', () => {
tabListInputs.selectionMode.set('explicit');
tabListPattern.onKeydown(space());
expect(tabPatterns[0].selected()).toBeTrue();
expect(tabPatterns[1].selected()).toBeFalse();
tabListPattern.onKeydown(right());
expect(tabPatterns[0].selected()).toBeTrue();
expect(tabPatterns[1].selected()).toBeFalse();
tabListPattern.onKeydown(space());
expect(tabPatterns[0].selected()).toBeFalse();
expect(tabPatterns[1].selected()).toBeTrue();
});
it('uses left key to navigate to the previous tab when `orientation` is set to "horizontal".', () => {
tabListInputs.activeItem.set(tabPatterns[1]);
expect(tabPatterns[1].active()).toBeTrue();
tabListPattern.onKeydown(left());
expect(tabPatterns[0].active()).toBeTrue();
});
it('uses right key to navigate to the next tab when `orientation` is set to "horizontal".', () => {
tabListInputs.activeItem.set(tabPatterns[1]);
expect(tabPatterns[1].active()).toBeTrue();
tabListPattern.onKeydown(right());
expect(tabPatterns[2].active()).toBeTrue();
});
it('uses up key to navigate to the previous tab when `orientation` is set to "vertical".', () => {
tabListInputs.orientation.set('vertical');
tabListInputs.activeItem.set(tabPatterns[1]);
expect(tabPatterns[1].active()).toBeTrue();
tabListPattern.onKeydown(up());
expect(tabPatterns[0].active()).toBeTrue();
});
it('uses down key to navigate to the next tab when `orientation` is set to "vertical".', () => {
tabListInputs.orientation.set('vertical');
tabListInputs.activeItem.set(tabPatterns[1]);
expect(tabPatterns[1].active()).toBeTrue();
tabListPattern.onKeydown(down());
expect(tabPatterns[2].active()).toBeTrue();
});
it('uses home key to navigate to the first tab.', () => {
tabListInputs.activeItem.set(tabPatterns[1]);
expect(tabPatterns[1].active()).toBeTrue();
tabListPattern.onKeydown(home());
expect(tabPatterns[0].active()).toBeTrue();
});
it('uses end key to navigate to the last tab.', () => {
tabListInputs.activeItem.set(tabPatterns[1]);
expect(tabPatterns[1].active()).toBeTrue();
tabListPattern.onKeydown(end());
expect(tabPatterns[2].active()).toBeTrue();
});
it('moves to the last tab from first tab when navigating to the previous tab if `wrap` is set to true', () => {
expect(tabPatterns[0].active()).toBeTrue();
tabListPattern.onKeydown(left());
expect(tabPatterns[2].active()).toBeTrue();
});
it('moves to the first tab from last tab when navigating to the next tab if `wrap` is set to true', () => {
tabListPattern.onKeydown(end());
expect(tabPatterns[2].active()).toBeTrue();
tabListPattern.onKeydown(right());
expect(tabPatterns[0].active()).toBeTrue();
});
it('stays on the first tab when navigating to the previous tab if `wrap` is set to false', () => {
tabListInputs.wrap.set(false);
expect(tabPatterns[0].active()).toBeTrue();
tabListPattern.onKeydown(left());
expect(tabPatterns[0].active()).toBeTrue();
});
it('stays on the last tab when navigating to the next tab if `wrap` is set to false', () => {
tabListInputs.wrap.set(false);
tabListPattern.onKeydown(end());
expect(tabPatterns[2].active()).toBeTrue();
tabListPattern.onKeydown(right());
expect(tabPatterns[2].active()).toBeTrue();
});
it('changes the navigation direction with `rtl` mode.', () => {
tabListInputs.textDirection.set('rtl');
tabListInputs.activeItem.set(tabPatterns[1]);
tabListPattern.onKeydown(left());
expect(tabPatterns[2].active()).toBeTrue();
});
});
});
describe('TabPattern', () => {
it('gets a controlled tabpanel id from a tab', () => {
expect(tabPanelPatterns[0].id()).toBe('tabpanel-1-id');
expect(tabPatterns[0].controls()).toBe('tabpanel-1-id');
expect(tabPanelPatterns[1].id()).toBe('tabpanel-2-id');
expect(tabPatterns[1].controls()).toBe('tabpanel-2-id');
expect(tabPanelPatterns[2].id()).toBe('tabpanel-3-id');
expect(tabPatterns[2].controls()).toBe('tabpanel-3-id');
});
describe('#open', () => {
it('should open the current tab', () => {
expect(tabListPattern.selectedTab()).toBeUndefined();
tabPatterns[0].open();
expect(tabListPattern.selectedTab()).toBe(tabPatterns[0]);
});
});
});
describe('TabPanelPattern', () => {
it('should set a tabpanel to be not hidden if a tab is opened', () => {
tabPatterns[0].open();
expect(tabPatterns[0].selected()).toBeTrue();
expect(tabPanelPatterns[0].hidden()).toBeFalse();
});
it('sets a tabpanel to be hidden if a tab is not opened', () => {
expect(tabPatterns[1].selected()).toBeFalse();
expect(tabPanelPatterns[1].hidden()).toBeTrue();
});
it('should set a tabpanel tab index to 0 if the tab is opened', () => {
tabPatterns[0].open();
expect(tabPatterns[0].tabIndex()).toBe(0);
});
it('should set a tabpanel tab index to -1 if the tab is not opened', () => {
tabPatterns[0].open();
expect(tabPatterns[1].tabIndex()).toBe(-1);
expect(tabPatterns[2].tabIndex()).toBe(-1);
});
it('should set a tabpanel aria-labelledby pointing to its tab id', () => {
expect(tabPanelPatterns[0].labelledBy()).toBe('tab-1-id');
expect(tabPanelPatterns[1].labelledBy()).toBe('tab-2-id');
expect(tabPanelPatterns[2].labelledBy()).toBe('tab-3-id');
});
});
});