-
-
Notifications
You must be signed in to change notification settings - Fork 490
Expand file tree
/
Copy pathBaseSelect.test.tsx
More file actions
193 lines (171 loc) · 5.41 KB
/
BaseSelect.test.tsx
File metadata and controls
193 lines (171 loc) · 5.41 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
import type { OptionListProps, RefOptionListProps } from '../src/OptionList';
import { fireEvent, render } from '@testing-library/react';
import { forwardRef, act } from 'react';
import BaseSelect from '../src/BaseSelect';
import { waitFakeTimer } from './utils/common';
const OptionList = forwardRef<RefOptionListProps, OptionListProps>(() => (
<div className="popup">Popup</div>
));
describe('BaseSelect', () => {
beforeEach(() => {
jest.useFakeTimers();
});
afterEach(() => {
jest.useRealTimers();
});
it('customized inputElement should trigger popup properly', async () => {
const { container } = render(
<BaseSelect
prefixCls="rc-select"
getRawInputElement={() => (
<a className="trigger" href="#">
trigger
</a>
)}
OptionList={OptionList}
displayValues={[]}
emptyOptions
id="test"
onDisplayValuesChange={() => {}}
onSearch={() => {}}
searchValue=""
/>,
);
expect(container.querySelector('div.popup')).toBeFalsy();
fireEvent.click(container.querySelector('a.trigger'));
await waitFakeTimer();
expect(container.querySelector('div.popup')).toBeTruthy();
fireEvent.mouseDown(container.querySelector('a.trigger'));
await waitFakeTimer();
expect(container.querySelector('div.rc-select-dropdown-hidden')).toBeFalsy();
fireEvent.click(container.querySelector('a.trigger'));
await waitFakeTimer();
expect(container.querySelector('div.rc-select-dropdown-hidden')).toBeTruthy();
});
it('customized inputElement style should includes position: absolute', () => {
jest.useFakeTimers();
const { container } = render(
<BaseSelect
prefixCls="rc-select"
OptionList={OptionList}
displayValues={[]}
emptyOptions
id="test"
onDisplayValuesChange={() => {}}
onSearch={() => {}}
searchValue=""
/>,
);
expect(container.querySelector('div.rc-select')).toBeTruthy();
fireEvent.focus(container.querySelector('div.rc-select'));
act(() => {
jest.runAllTimers();
});
expect(
getComputedStyle(container.querySelector(`span[aria-live=polite]`)).getPropertyValue(
'position',
),
).toBe('absolute');
jest.useRealTimers();
});
// https://github.com/ant-design/ant-design/issues/48833
it('a11y not block of Chrome render', () => {
jest.useFakeTimers();
const { container } = render(
<BaseSelect
displayValues={Array.from({ length: 100 }).map((_, index) => ({
key: index,
value: index,
label: index,
}))}
id="test"
prefixCls="rc-select"
onDisplayValuesChange={() => {}}
searchValue=""
onSearch={() => {}}
OptionList={OptionList}
emptyOptions
/>,
);
fireEvent.focus(container.querySelector('div.rc-select'));
act(() => {
jest.runAllTimers();
});
// We cut 50 count as hard code, its safe to adjust if refactor
const contentTxt = container.querySelector('span[aria-live=polite]')?.textContent;
expect(contentTxt).toBe(
`${Array.from({ length: 50 })
.map((_, index) => index)
.join(', ')}, ...`,
);
jest.useRealTimers();
});
it('customize builtinPlacements should override default one', () => {
const { container } = render(
<BaseSelect
prefixCls="rc-select"
id="test"
displayValues={[]}
onDisplayValuesChange={() => {}}
searchValue=""
onSearch={() => {}}
OptionList={OptionList}
emptyOptions
open
// Test content
builtinPlacements={{
// placement not exist in `builtinPlacements`,
// which means this will be same as empty one.
// It's safe to test in other way if refactor
fallback: {},
}}
/>,
);
expect(container.querySelector('.rc-select-dropdown-placement-fallback')).toBeTruthy();
});
it('should use RootComponent when provided in components prop', () => {
const CustomRoot = forwardRef<HTMLDivElement>((props, ref) => (
<div ref={ref} className="custom-root" {...props} />
));
const { container } = render(
<BaseSelect
prefixCls="rc-select"
id="test"
displayValues={[]}
onDisplayValuesChange={() => {}}
searchValue=""
onSearch={() => {}}
OptionList={OptionList}
emptyOptions
components={{
root: CustomRoot,
}}
/>,
);
expect(container.querySelector('.custom-root')).toBeTruthy();
expect(container.querySelector('.rc-select')).toBeFalsy();
});
it('should use React element as RootComponent when provided in components prop', () => {
const CustomRoot = forwardRef<HTMLDivElement>((props, ref) => (
<div ref={ref} className="custom-root-element" {...props} />
));
const customElement = <CustomRoot />;
const { container } = render(
<BaseSelect
prefixCls="rc-select"
id="test"
displayValues={[]}
onDisplayValuesChange={() => {}}
searchValue=""
onSearch={() => {}}
OptionList={OptionList}
emptyOptions
components={{
root: customElement,
}}
/>,
);
expect(container.querySelector('.custom-root-element')).toBeTruthy();
expect(container.querySelector('.rc-select')).toBeFalsy();
});
});