-
-
Notifications
You must be signed in to change notification settings - Fork 458
/
OptionList.test.tsx
462 lines (405 loc) · 12.6 KB
/
OptionList.test.tsx
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
import KeyCode from 'rc-util/lib/KeyCode';
import React, { act } from 'react';
import { BaseSelectContext } from '../src/hooks/useBaseProps';
import type { RefOptionListProps } from '../src/OptionList';
import OptionList from '../src/OptionList';
import SelectContext from '../src/SelectContext';
import { fillFieldNames, flattenOptions } from '../src/utils/valueUtil';
import { injectRunAllTimers } from './utils/common';
import { createEvent, fireEvent, render } from '@testing-library/react';
jest.mock('../src/utils/platformUtil');
// Mock VirtualList
jest.mock('rc-virtual-list', () => {
const OriReact = jest.requireActual('react');
const OriList = jest.requireActual('rc-virtual-list').default;
return OriReact.forwardRef((props, ref) => {
const oriRef = OriReact.useRef();
OriReact.useImperativeHandle(ref, () => ({
...oriRef.current,
scrollTo: (arg) => {
global.scrollToArgs = arg;
oriRef.current.scrollTo(arg);
},
}));
return <OriList {...props} ref={oriRef} />;
});
});
describe('OptionList', () => {
injectRunAllTimers(jest);
beforeEach(() => {
jest.useFakeTimers();
});
afterEach(() => {
jest.useRealTimers();
});
function generateList({ options, values, ref, ...props }: any) {
const fieldNames = fillFieldNames(props.fieldNames || {}, false);
const flattenedOptions = flattenOptions(options, {
fieldNames,
childrenAsData: false,
});
return (
<BaseSelectContext.Provider
value={{
prefixCls: 'rc-select',
...props,
}}
>
<SelectContext.Provider
value={{
fieldNames,
flattenOptions: flattenedOptions,
options,
onActiveValue: () => {},
onSelect: () => {},
rawValues: values || new Set(),
virtual: true,
...props,
}}
>
<div>
<OptionList ref={ref} />
</div>
</SelectContext.Provider>
</BaseSelectContext.Provider>
);
}
describe('renders correctly', () => {
const sharedConfig = {
options: [
{
key: 'group1',
options: [{ value: '1', 'aria-label': 'value-1' }],
},
{
key: 'group2',
options: [{ value: '2' }],
},
],
values: new Set(['1']),
};
it('virtual', () => {
const { container } = render(generateList(sharedConfig));
expect(container.firstChild).toMatchSnapshot();
});
it('without virtual', () => {
const { container } = render(
generateList({
...sharedConfig,
virtual: false,
}),
);
expect(container.firstChild).toMatchSnapshot();
});
});
it('save first active item', () => {
const onActiveValue = jest.fn();
render(
generateList({
options: [{ value: '1' }, { value: '2' }],
values: new Set('1'),
onActiveValue,
}),
);
expect(onActiveValue).toHaveBeenCalledWith('1', expect.anything(), expect.anything());
});
it('key operation', () => {
const onActiveValue = jest.fn();
const listRef = React.createRef<RefOptionListProps>();
render(
generateList({
options: [{ value: '1' }, { value: '2' }],
onActiveValue,
ref: listRef,
}),
);
onActiveValue.mockReset();
act(() => {
listRef.current.onKeyDown({ which: KeyCode.DOWN } as any);
});
expect(onActiveValue).toHaveBeenCalledWith(
'2',
expect.anything(),
expect.objectContaining({ source: 'keyboard' }),
);
onActiveValue.mockReset();
act(() => {
listRef.current.onKeyDown({ which: KeyCode.UP } as any);
});
expect(onActiveValue).toHaveBeenCalledWith(
'1',
expect.anything(),
expect.objectContaining({ source: 'keyboard' }),
);
});
it('key operation with fieldNames', () => {
const onActiveValue = jest.fn();
const toggleOpen = jest.fn();
const onSelect = jest.fn();
const listRef = React.createRef<RefOptionListProps>();
render(
generateList({
fieldNames: { value: 'foo', label: 'bar' },
options: [{ foo: '1' }, { foo: '2' }],
onActiveValue,
onSelect,
toggleOpen,
ref: listRef,
}),
);
onActiveValue.mockReset();
act(() => {
listRef.current.onKeyDown({ which: KeyCode.DOWN } as any);
});
expect(onActiveValue).toHaveBeenCalledWith(
'2',
expect.anything(),
expect.objectContaining({ source: 'keyboard' }),
);
act(() => {
listRef.current.onKeyDown({ which: KeyCode.ENTER } as any);
});
expect(onSelect).toHaveBeenCalledTimes(1);
expect(onSelect).toHaveBeenCalledWith('2', expect.objectContaining({ selected: true }));
onSelect.mockReset();
onActiveValue.mockReset();
act(() => {
listRef.current.onKeyDown({ which: KeyCode.UP } as any);
});
expect(onActiveValue).toHaveBeenCalledWith(
'1',
expect.anything(),
expect.objectContaining({ source: 'keyboard' }),
);
act(() => {
listRef.current.onKeyDown({ which: KeyCode.ENTER } as any);
});
expect(onSelect).toHaveBeenCalledTimes(1);
expect(onSelect).toHaveBeenCalledWith('1', expect.objectContaining({ selected: true }));
});
it('should tab key select an active option', () => {
const onActiveValue = jest.fn();
const onSelect = jest.fn();
const toggleOpen = jest.fn();
const listRef = React.createRef<RefOptionListProps>();
render(
generateList({
options: [{ value: '1' }, { value: '2' }],
onActiveValue,
onSelect,
toggleOpen,
ref: listRef,
}),
);
act(() => {
toggleOpen(true);
});
act(() => {
listRef.current.onKeyDown({ which: KeyCode.DOWN } as any);
});
expect(onActiveValue).toHaveBeenCalledWith(
'2',
expect.anything(),
expect.objectContaining({ source: 'keyboard' }),
);
act(() => {
listRef.current.onKeyDown({ which: KeyCode.TAB } as any);
});
expect(onSelect).toHaveBeenCalledTimes(1);
expect(onSelect).toHaveBeenCalledWith('2', expect.objectContaining({ selected: true }));
expect(toggleOpen).toHaveBeenCalledWith(false);
});
// mocked how we detect running platform in test environment
it('special key operation on Mac', () => {
const onActiveValue = jest.fn();
const listRef = React.createRef<RefOptionListProps>();
render(
generateList({
options: [{ value: '1' }, { value: '2' }],
onActiveValue,
ref: listRef,
}),
);
onActiveValue.mockReset();
act(() => {
listRef.current.onKeyDown({ which: KeyCode.N, ctrlKey: true } as any);
});
expect(onActiveValue).toHaveBeenCalledWith(
'2',
expect.anything(),
expect.objectContaining({ source: 'keyboard' }),
);
onActiveValue.mockReset();
act(() => {
listRef.current.onKeyDown({ which: KeyCode.P, ctrlKey: true } as any);
});
expect(onActiveValue).toHaveBeenCalledWith(
'1',
expect.anything(),
expect.objectContaining({ source: 'keyboard' }),
);
});
it('hover to active', () => {
const onActiveValue = jest.fn();
const { container } = render(
generateList({
options: [{ value: '1' }, { value: '2' }],
onActiveValue,
}),
);
onActiveValue.mockReset();
fireEvent.mouseMove(container.querySelector('.rc-select-item-option:last-child'));
expect(onActiveValue).toHaveBeenCalledWith(
'2',
expect.anything(),
expect.objectContaining({ source: 'mouse' }),
);
// Same item not repeat trigger
onActiveValue.mockReset();
fireEvent.mouseMove(container.querySelector('.rc-select-item-option:last-child'));
expect(onActiveValue).not.toHaveBeenCalled();
});
it('Should prevent default with list mouseDown to avoid losing focus', () => {
const { container } = render(
generateList({
options: [{ value: '1' }, { value: '2' }],
}),
);
const preventDefault = jest.fn();
const ele = container.querySelector('.rc-select-item-option:last-child');
const mouseDownEvent = createEvent.mouseDown(ele);
mouseDownEvent.preventDefault = preventDefault;
fireEvent(ele, mouseDownEvent);
expect(preventDefault).toHaveBeenCalled();
});
it('Data attributes should be set correct', () => {
const { container } = render(
generateList({
options: [
{ value: '1', label: 'my-label' },
{ value: '2', 'data-num': '123' },
],
}),
);
expect(
container.querySelector('.rc-select-item-option:last-child').getAttribute('data-num'),
).toBe('123');
});
it('should render title defaultly', () => {
const { container } = render(
generateList({
options: [{ value: '1', label: 'my-label' }],
}),
);
expect(container.querySelector('.rc-select-item-option').getAttribute('title')).toBe(
'my-label',
);
});
it('should render title', () => {
const { container } = render(
generateList({
options: [{ value: '1', label: 'my-label', title: 'title' }],
}),
);
expect(container.querySelector('.rc-select-item-option').getAttribute('title')).toBe('title');
});
it('should not render title when title is empty string', () => {
const { container } = render(
generateList({
options: [{ value: '1', label: 'my-label', title: '' }],
}),
);
expect(container.querySelector('.rc-select-item-option').getAttribute('title')).toBe('');
});
it('should render title from label when title is undefined', () => {
const { container } = render(
generateList({
options: [{ value: '1', label: 'my-label', title: undefined }],
}),
);
expect(container.querySelector('.rc-select-item-option').getAttribute('title')).toBe(
'my-label',
);
});
it('should not render title defaultly when label is ReactNode', () => {
const { container } = render(
generateList({
options: [{ value: '1', label: <div>label</div> }],
}),
);
expect(container.querySelector('.rc-select-item-option').getAttribute('title')).toBe(null);
});
it('params to scrollIntoView should be object when key is pressed', () => {
const listRef = React.createRef<RefOptionListProps>();
const options = Array.from({ length: 20 }).map((v, i) => ({ value: i, label: i }));
render(
generateList({
options,
ref: listRef,
}),
);
act(() => {
listRef.current.onKeyDown({ which: KeyCode.DOWN } as any);
});
expect(global.scrollToArgs).toEqual({ index: 1 });
});
// Test keyboard navigation behavior when maxCount limit is reached
// Verifies that:
// 1. Can navigate between already selected options
// 2. Cannot navigate to unselected options when maxCount is reached
// 3. Navigation wraps around between selected options
it('should allow keyboard navigation on selected options when reach maxCount', () => {
const onActiveValue = jest.fn();
const listRef = React.createRef<RefOptionListProps>();
render(
generateList({
multiple: true,
maxCount: 2,
options: [
{ value: '1', label: '1' },
{ value: '2', label: '2' },
{ value: '3', label: '3' },
],
values: new Set(['1', '2']), // Pre-select first two options
onActiveValue,
ref: listRef,
}),
);
onActiveValue.mockReset();
// Press down key - should move to option '2'
act(() => {
listRef.current.onKeyDown({ which: KeyCode.DOWN } as any);
});
expect(onActiveValue).toHaveBeenCalledWith(
'2',
expect.anything(),
expect.objectContaining({ source: 'keyboard' }),
);
// Press down key again - should wrap to option '1'
onActiveValue.mockReset();
act(() => {
listRef.current.onKeyDown({ which: KeyCode.DOWN } as any);
});
expect(onActiveValue).toHaveBeenCalledWith(
'1',
expect.anything(),
expect.objectContaining({ source: 'keyboard' }),
);
// Press up key - should move back to option '2'
onActiveValue.mockReset();
act(() => {
listRef.current.onKeyDown({ which: KeyCode.UP } as any);
});
expect(onActiveValue).toHaveBeenCalledWith(
'2',
expect.anything(),
expect.objectContaining({ source: 'keyboard' }),
);
// Press down key - should not activate option '3' since maxCount is reached
onActiveValue.mockReset();
act(() => {
listRef.current.onKeyDown({ which: KeyCode.DOWN } as any);
});
expect(onActiveValue).not.toHaveBeenCalledWith('3', expect.anything(), expect.anything());
});
});