-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Expand file tree
/
Copy pathindex.js
More file actions
479 lines (371 loc) · 12.1 KB
/
index.js
File metadata and controls
479 lines (371 loc) · 12.1 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
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
/**
* External dependencies
*/
import { render, screen, fireEvent, waitFor } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
/**
* WordPress dependencies
*/
import { useState } from '@wordpress/element';
import { UP, DOWN, ENTER } from '@wordpress/keycodes';
/**
* Internal dependencies
*/
import BaseNumberControl from '../';
const getInput = () => screen.getByTestId( 'input' );
const fireKeyDown = ( data ) =>
fireEvent.keyDown( document.activeElement || document.body, data );
const NumberControl = ( props ) => (
<BaseNumberControl { ...props } data-testid="input" />
);
function StatefulNumberControl( props ) {
const [ value, setValue ] = useState( props.value );
const handleOnChange = ( v ) => setValue( v );
return (
<NumberControl
{ ...props }
value={ value }
onChange={ handleOnChange }
/>
);
}
describe( 'NumberControl', () => {
describe( 'Basic rendering', () => {
it( 'should render', () => {
render( <NumberControl /> );
expect( getInput() ).not.toBeNull();
} );
it( 'should render custom className', () => {
render( <NumberControl className="hello" /> );
expect( getInput() ).toBeTruthy();
} );
} );
describe( 'onChange handling', () => {
it( 'should provide onChange callback with number value', () => {
const spy = jest.fn();
render(
<NumberControl value={ 5 } onChange={ ( v ) => spy( v ) } />
);
const input = getInput();
input.focus();
fireEvent.change( input, { target: { value: 10 } } );
expect( spy ).toHaveBeenCalledWith( '10' );
} );
it( 'should call onChange callback when value is clamped on blur', async () => {
const spy = jest.fn();
render(
<NumberControl
value={ 5 }
min={ 4 }
max={ 10 }
onChange={ ( v ) => spy( v ) }
/>
);
const input = getInput();
input.focus();
fireEvent.change( input, { target: { value: 1 } } );
// Before blurring, the value is still un-clamped
expect( input.value ).toBe( '1' );
input.blur();
// After blur, value is clamped
expect( input.value ).toBe( '4' );
// After the blur, the `onChange` callback fires asynchronously.
await waitFor( () => {
expect( spy ).toHaveBeenCalledTimes( 2 );
} );
expect( spy ).toHaveBeenNthCalledWith( 1, '1' );
expect( spy ).toHaveBeenNthCalledWith( 2, 4 );
} );
it( 'should call onChange callback when value is not valid', () => {
const spy = jest.fn();
render(
<NumberControl
value={ 5 }
min={ 1 }
max={ 10 }
onChange={ ( v, extra ) =>
spy( v, extra.event.target.validity.valid )
}
/>
);
const input = getInput();
input.focus();
fireEvent.change( input, { target: { value: 14 } } );
expect( input.value ).toBe( '14' );
fireKeyDown( { keyCode: ENTER } );
expect( input.value ).toBe( '10' );
expect( spy ).toHaveBeenCalledTimes( 2 );
// First call: invalid, unclamped value
expect( spy ).toHaveBeenNthCalledWith( 1, '14', false );
// Second call: valid, clamped value
expect( spy ).toHaveBeenNthCalledWith( 2, 10, true );
} );
} );
describe( 'Validation', () => {
it( 'should clamp value within range on ENTER keypress', () => {
render( <NumberControl value={ 5 } min={ 0 } max={ 10 } /> );
const input = getInput();
input.focus();
fireEvent.change( input, { target: { value: -100 } } );
fireKeyDown( { keyCode: ENTER } );
/**
* This is zero because the value has been adjusted to
* respect the min/max range of the input.
*/
expect( input.value ).toBe( '0' );
} );
it( 'should clamp value within range on blur', () => {
render( <NumberControl value={ 5 } min={ 0 } max={ 10 } /> );
const input = getInput();
input.focus();
fireEvent.change( input, { target: { value: 41 } } );
// Before blurring, the value is still un-clamped
expect( input.value ).toBe( '41' );
input.blur();
// After blur, value is clamped
expect( input.value ).toBe( '10' );
} );
it( 'should parse to number value on ENTER keypress when required', () => {
render( <NumberControl value={ 5 } required={ true } /> );
const input = getInput();
input.focus();
fireEvent.change( input, { target: { value: '10 abc' } } );
fireKeyDown( { keyCode: ENTER } );
expect( input.value ).toBe( '0' );
} );
it( 'should parse to empty string on ENTER keypress when not required', () => {
render( <NumberControl value={ 5 } required={ false } /> );
const input = getInput();
input.focus();
fireEvent.change( input, { target: { value: '10 abc' } } );
fireKeyDown( { keyCode: ENTER } );
expect( input.value ).toBe( '' );
} );
it( 'should accept empty string on ENTER keypress for optional field', () => {
render( <NumberControl value={ 5 } required={ false } /> );
const input = getInput();
input.focus();
fireEvent.change( input, { target: { value: '' } } );
fireKeyDown( { keyCode: ENTER } );
expect( input.value ).toBe( '' );
} );
it( 'should not enforce numerical value for empty string when required is omitted', () => {
render( <NumberControl value={ 5 } /> );
const input = getInput();
input.focus();
fireEvent.change( input, { target: { value: '' } } );
fireKeyDown( { keyCode: ENTER } );
expect( input.value ).toBe( '' );
} );
it( 'should enforce numerical value for empty string when required', () => {
render( <NumberControl value={ 5 } required={ true } /> );
const input = getInput();
input.focus();
fireEvent.change( input, { target: { value: '' } } );
fireKeyDown( { keyCode: ENTER } );
expect( input.value ).toBe( '0' );
} );
} );
describe( 'Key UP interactions', () => {
it( 'should fire onKeyDown callback', () => {
const spy = jest.fn();
render( <StatefulNumberControl value={ 5 } onKeyDown={ spy } /> );
getInput().focus();
fireKeyDown( { keyCode: UP } );
expect( spy ).toHaveBeenCalled();
} );
it( 'should increment by step on key UP press', () => {
render( <StatefulNumberControl value={ 5 } /> );
const input = getInput();
input.focus();
fireKeyDown( { keyCode: UP } );
expect( input.value ).toBe( '6' );
} );
it( 'should increment from a negative value', () => {
render( <StatefulNumberControl value={ -5 } /> );
const input = getInput();
input.focus();
fireKeyDown( { keyCode: UP } );
expect( input.value ).toBe( '-4' );
} );
it( 'should increment while preserving the decimal value when `step` is “any”', () => {
render( <StatefulNumberControl value={ 866.5309 } step="any" /> );
const input = getInput();
input.focus();
fireKeyDown( { keyCode: UP } );
expect( input.value ).toBe( '867.5309' );
} );
it( 'should increment by shiftStep on key UP + shift press', () => {
render( <StatefulNumberControl value={ 5 } shiftStep={ 10 } /> );
const input = getInput();
input.focus();
fireKeyDown( { keyCode: UP, shiftKey: true } );
expect( input.value ).toBe( '20' );
} );
it( 'should increment by shiftStep while preserving the decimal value when `step` is “any”', () => {
render( <StatefulNumberControl value={ 857.5309 } step="any" /> );
const input = getInput();
input.focus();
fireKeyDown( { keyCode: UP, shiftKey: true } );
expect( input.value ).toBe( '867.5309' );
} );
it( 'should increment by custom shiftStep on key UP + shift press', () => {
render( <StatefulNumberControl value={ 5 } shiftStep={ 100 } /> );
const input = getInput();
input.focus();
fireKeyDown( { keyCode: UP, shiftKey: true } );
expect( input.value ).toBe( '100' );
} );
it( 'should increment but be limited by max on shiftStep', () => {
render(
<StatefulNumberControl
value={ 5 }
shiftStep={ 100 }
max={ 99 }
/>
);
const input = getInput();
input.focus();
fireKeyDown( { keyCode: UP, shiftKey: true } );
expect( input.value ).toBe( '99' );
} );
it( 'should not increment by shiftStep if disabled', () => {
render(
<StatefulNumberControl
value={ 5 }
shiftStep={ 100 }
isShiftStepEnabled={ false }
/>
);
const input = getInput();
input.focus();
fireKeyDown( { keyCode: UP, shiftKey: true } );
expect( input.value ).toBe( '6' );
} );
} );
describe( 'Key DOWN interactions', () => {
it( 'should fire onKeyDown callback', () => {
const spy = jest.fn();
render( <StatefulNumberControl value={ 5 } onKeyDown={ spy } /> );
getInput().focus();
fireKeyDown( { keyCode: DOWN } );
expect( spy ).toHaveBeenCalled();
} );
it( 'should decrement by step on key DOWN press', () => {
render( <StatefulNumberControl value={ 5 } /> );
const input = getInput();
input.focus();
fireKeyDown( { keyCode: DOWN } );
expect( input.value ).toBe( '4' );
} );
it( 'should decrement from a negative value', () => {
render( <StatefulNumberControl value={ -5 } /> );
const input = getInput();
input.focus();
fireKeyDown( { keyCode: DOWN } );
expect( input.value ).toBe( '-6' );
} );
it( 'should decrement while preserving the decimal value when `step` is “any”', () => {
render( <StatefulNumberControl value={ 868.5309 } step="any" /> );
const input = getInput();
input.focus();
fireKeyDown( { keyCode: DOWN } );
expect( input.value ).toBe( '867.5309' );
} );
it( 'should decrement by shiftStep on key DOWN + shift press', () => {
render( <StatefulNumberControl value={ 5 } /> );
const input = getInput();
input.focus();
fireKeyDown( { keyCode: DOWN, shiftKey: true } );
expect( input.value ).toBe( '0' );
} );
it( 'should decrement by shiftStep while preserving the decimal value when `step` is “any”', () => {
render( <StatefulNumberControl value={ 877.5309 } step="any" /> );
const input = getInput();
input.focus();
fireKeyDown( { keyCode: DOWN, shiftKey: true } );
expect( input.value ).toBe( '867.5309' );
} );
it( 'should decrement by custom shiftStep on key DOWN + shift press', () => {
render( <StatefulNumberControl value={ 5 } shiftStep={ 100 } /> );
const input = getInput();
input.focus();
fireKeyDown( { keyCode: DOWN, shiftKey: true } );
expect( input.value ).toBe( '-100' );
} );
it( 'should decrement but be limited by min on shiftStep', () => {
render(
<StatefulNumberControl
value={ 5 }
shiftStep={ 100 }
min={ 4 }
/>
);
const input = getInput();
input.focus();
fireKeyDown( { keyCode: DOWN, shiftKey: true } );
expect( input.value ).toBe( '4' );
} );
it( 'should not decrement by shiftStep if disabled', () => {
render(
<StatefulNumberControl
value={ 5 }
shiftStep={ 100 }
isShiftStepEnabled={ false }
/>
);
const input = getInput();
input.focus();
fireKeyDown( { keyCode: DOWN, shiftKey: true } );
expect( input.value ).toBe( '4' );
} );
} );
describe( 'custom spin buttons', () => {
test.each( [
{},
{ size: 'small' },
{ size: '__unstable-large', hideHTMLArrows: true },
] )( 'should not appear when props = %o', ( props ) => {
render( <NumberControl { ...props } /> );
expect(
screen.queryByLabelText( 'Increment' )
).not.toBeInTheDocument();
expect(
screen.queryByLabelText( 'Decrement' )
).not.toBeInTheDocument();
} );
test.each( [
[ 'up', '1', {} ],
[ 'up', '2', { value: '1' } ],
[ 'up', '12', { value: '10', step: '2' } ],
[ 'up', '10', { value: '10', max: '10' } ],
[ 'down', '-1', {} ],
[ 'down', '1', { value: '2' } ],
[ 'down', '10', { value: '12', step: '2' } ],
[ 'down', '10', { value: '10', min: '10' } ],
] )(
'should spin %s to %s when props = %o',
async ( direction, expectedValue, props ) => {
const user = userEvent.setup( {
advanceTimers: jest.advanceTimersByTime,
} );
const onChange = jest.fn();
render(
<NumberControl
{ ...props }
size="__unstable-large"
onChange={ onChange }
/>
);
await user.click(
screen.getByLabelText(
direction === 'up' ? 'Increment' : 'Decrement'
)
);
expect( onChange ).toHaveBeenCalledWith( expectedValue, {
event: expect.anything(),
} );
}
);
} );
} );