-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
index.js
354 lines (286 loc) · 8.58 KB
/
index.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
/**
* External dependencies
*/
import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
/**
* WordPress dependencies
*/
import { useState } from '@wordpress/element';
/**
* Internal dependencies
*/
import CustomSelectControl from '..';
const props = {
options: [
{
key: 'flower1',
name: 'violets',
},
{
key: 'flower2',
name: 'crimson clover',
},
{
key: 'flower3',
name: 'poppy',
},
{
key: 'color1',
name: 'amber',
className: 'amber-skies',
},
{
key: 'color2',
name: 'aquamarine',
style: {
backgroundColor: 'rgb(127, 255, 212)',
rotate: '13deg',
},
},
],
__nextUnconstrainedWidth: true,
};
const ControlledCustomSelectControl = ( { options } ) => {
const [ value, setValue ] = useState( options[ 0 ] );
return (
<CustomSelectControl
{ ...props }
onChange={ ( { selectedItem } ) => setValue( selectedItem ) }
value={ options.find( ( option ) => option.key === value.key ) }
/>
);
};
describe.each( [
[ 'uncontrolled', CustomSelectControl ],
[ 'controlled', ControlledCustomSelectControl ],
] )( 'CustomSelectControl %s', ( ...modeAndComponent ) => {
const [ , Component ] = modeAndComponent;
it( 'Should replace the initial selection when a new item is selected', async () => {
const user = userEvent.setup();
render( <Component { ...props } /> );
const currentSelectedItem = screen.getByRole( 'button' );
expect( currentSelectedItem ).toHaveTextContent( 'violets' );
await user.click( currentSelectedItem );
await user.click(
screen.getByRole( 'option', {
name: 'crimson clover',
} )
);
expect( currentSelectedItem ).toHaveTextContent( 'crimson clover' );
await user.click( currentSelectedItem );
await user.click(
screen.getByRole( 'option', {
name: 'poppy',
} )
);
expect( currentSelectedItem ).toHaveTextContent( 'poppy' );
} );
it( 'Should keep current selection if dropdown is closed without changing selection', async () => {
const user = userEvent.setup();
render( <CustomSelectControl { ...props } /> );
const currentSelectedItem = screen.getByRole( 'button' );
expect( currentSelectedItem ).toHaveTextContent( 'violets' );
await user.tab();
await user.keyboard( '{enter}' );
expect( screen.getByRole( 'listbox' ) ).toBeVisible();
expect( screen.getByRole( 'listbox' ) ).toHaveAttribute(
'aria-hidden',
'false'
);
await user.keyboard( '{escape}' );
expect( screen.queryByRole( 'listbox' ) ).not.toBeInTheDocument();
expect( currentSelectedItem ).toHaveTextContent( 'violets' );
} );
it( 'Should apply class only to options that have a className defined', async () => {
const user = userEvent.setup();
const customClass = 'amber-skies';
render( <CustomSelectControl { ...props } /> );
await user.click( screen.getByRole( 'button', { text: 'violets' } ) );
// return an array of items without a className added
const classlessItems = props.options.filter(
( option ) => option.className === undefined
);
// assert against filtered array
classlessItems.map( ( { name } ) =>
expect( screen.getByRole( 'option', { name } ) ).not.toHaveClass(
customClass
)
);
expect( screen.getByRole( 'option', { name: 'amber' } ) ).toHaveClass(
customClass
);
} );
it( 'Should apply styles only to options that have styles defined', async () => {
const user = userEvent.setup();
const customStyles =
'background-color: rgb(127, 255, 212); rotate: 13deg;';
render( <CustomSelectControl { ...props } /> );
await user.click( screen.getByRole( 'button', { text: 'violets' } ) );
// return an array of items without styles added
const unstyledItems = props.options.filter(
( option ) => option.style === undefined
);
// assert against filtered array
unstyledItems.map( ( { name } ) =>
expect( screen.getByRole( 'option', { name } ) ).not.toHaveStyle(
customStyles
)
);
expect(
screen.getByRole( 'option', {
name: 'aquamarine',
} )
).toHaveStyle( customStyles );
} );
it( 'does not show selected hint by default', () => {
render(
<CustomSelectControl
{ ...props }
label="Custom select"
options={ [
{
key: 'one',
name: 'One',
__experimentalHint: 'Hint',
},
] }
/>
);
expect(
screen.getByRole( 'button', { name: 'Custom select' } )
).not.toHaveTextContent( 'Hint' );
} );
it( 'shows selected hint when __experimentalShowSelectedHint is set', () => {
render(
<CustomSelectControl
{ ...props }
label="Custom select"
options={ [
{
key: 'one',
name: 'One',
__experimentalHint: 'Hint',
},
] }
__experimentalShowSelectedHint
/>
);
expect(
screen.getByRole( 'button', { name: 'Custom select' } )
).toHaveTextContent( 'Hint' );
} );
describe( 'Keyboard behavior and accessibility', () => {
it( 'Captures the keypress event and does not let it propagate', async () => {
const user = userEvent.setup();
const onKeyDown = jest.fn();
render(
<div
// This role="none" is required to prevent an eslint warning about accessibility.
role="none"
onKeyDown={ onKeyDown }
>
<CustomSelectControl { ...props } />
</div>
);
const toggleButton = screen.getByRole( 'button' );
await user.click( toggleButton );
const customSelect = screen.getByRole( 'listbox' );
await user.type( customSelect, '{enter}' );
expect( onKeyDown ).toHaveBeenCalledTimes( 0 );
} );
it( 'Should be able to change selection using keyboard', async () => {
const user = userEvent.setup();
render( <CustomSelectControl { ...props } /> );
const currentSelectedItem = screen.getByRole( 'button' );
expect( currentSelectedItem ).toHaveTextContent( 'violets' );
await user.tab();
expect( currentSelectedItem ).toHaveFocus();
await user.keyboard( '{enter}' );
await user.keyboard( '{arrowdown}' );
await user.keyboard( '{enter}' );
expect( currentSelectedItem ).toHaveTextContent( 'crimson clover' );
} );
it( 'Should be able to type characters to select matching options', async () => {
const user = userEvent.setup();
render( <CustomSelectControl { ...props } /> );
const currentSelectedItem = screen.getByRole( 'button' );
expect( currentSelectedItem ).toHaveTextContent( 'violets' );
await user.tab();
await user.keyboard( '{enter}' );
await user.keyboard( '{a}' );
await user.keyboard( '{enter}' );
expect( currentSelectedItem ).toHaveTextContent( 'amber' );
} );
it( 'Can change selection with a focused input and closed dropdown if typed characters match an option', async () => {
const user = userEvent.setup();
render( <CustomSelectControl { ...props } /> );
const currentSelectedItem = screen.getByRole( 'button' );
expect( currentSelectedItem ).toHaveTextContent( 'violets' );
await user.tab();
await user.keyboard( '{a}' );
await user.keyboard( '{q}' );
await user.keyboard( '{enter}' );
expect( currentSelectedItem ).toHaveTextContent( 'aquamarine' );
} );
it( 'Should have correct aria-selected value for selections', async () => {
const user = userEvent.setup();
render( <CustomSelectControl { ...props } /> );
const currentSelectedItem = screen.getByRole( 'button' );
await user.click( currentSelectedItem );
expect(
screen.getByRole( 'option', {
name: 'poppy',
selected: false,
} )
).toBeVisible();
expect(
screen.getByRole( 'option', {
name: 'crimson clover',
selected: false,
} )
).toBeVisible();
expect(
screen.getByRole( 'option', {
name: 'violets',
selected: true,
} )
).toBeVisible();
await user.click( screen.getByRole( 'option', { name: 'poppy' } ) );
await user.click( currentSelectedItem );
expect(
screen.getByRole( 'option', {
name: 'violets',
selected: false,
} )
).toBeVisible();
expect(
screen.getByRole( 'option', {
name: 'poppy',
selected: true,
} )
).toBeVisible();
} );
it( 'Should call custom event handlers', async () => {
const user = userEvent.setup();
const onFocusMock = jest.fn();
const onBlurMock = jest.fn();
render(
<CustomSelectControl
{ ...props }
onFocus={ onFocusMock }
onBlur={ onBlurMock }
/>
);
const currentSelectedItem = screen.getByRole( 'button', {
text: 'violets',
} );
await user.tab();
expect( currentSelectedItem ).toHaveFocus();
expect( onFocusMock ).toHaveBeenCalledTimes( 1 );
await user.tab();
expect( currentSelectedItem ).not.toHaveFocus();
expect( onBlurMock ).toHaveBeenCalledTimes( 1 );
} );
} );
} );