1
1
import React from 'react'
2
2
import ReactDOM from 'react-dom'
3
- import TestUtils from 'react-dom/test-utils '
3
+ import { render , cleanup } from '@testing-library/react '
4
4
import { Form } from 'react-final-form'
5
5
import Html5ValidationField from './Html5ValidationField'
6
6
7
7
const onSubmitMock = ( ) => { }
8
8
9
- const getAttributes = el => {
9
+ const getAttributes = ( el ) => {
10
10
for ( const key in el ) {
11
11
if ( key . startsWith ( `__reactEventHandlers$` ) ) {
12
12
return el [ key ]
@@ -16,22 +16,31 @@ const getAttributes = el => {
16
16
}
17
17
18
18
describe ( 'Html5ValidationField' , ( ) => {
19
+ afterEach ( cleanup )
20
+
19
21
describe ( 'Html5ValidationField.rules' , ( ) => {
20
- const testPassThrough = rule => {
22
+ const testPassThrough = ( rule , testId = 'input' ) => {
21
23
const consoleSpy = jest
22
24
. spyOn ( global . console , 'error' )
23
25
. mockImplementation ( ( ) => { } )
24
- const dom = TestUtils . renderIntoDocument (
26
+ const { getByTestId } = render (
25
27
< Form onSubmit = { onSubmitMock } subscription = { { } } >
26
28
{ ( ) => (
27
- < Html5ValidationField name = "foo" component = "input" { ...rule } />
29
+ < Html5ValidationField
30
+ name = "foo"
31
+ component = "input"
32
+ { ...rule }
33
+ data-testid = { testId }
34
+ />
28
35
) }
29
36
</ Form >
30
37
)
31
- const input = TestUtils . findRenderedDOMComponentWithTag ( dom , 'input' )
38
+ const input = getByTestId ( testId )
32
39
expect ( input ) . toBeDefined ( )
33
40
const attributes = getAttributes ( input )
34
- Object . keys ( rule ) . forEach ( key => expect ( attributes [ key ] ) . toBe ( rule [ key ] ) )
41
+ Object . keys ( rule ) . forEach ( ( key ) =>
42
+ expect ( attributes [ key ] ) . toBe ( rule [ key ] )
43
+ )
35
44
consoleSpy . mockRestore ( )
36
45
}
37
46
@@ -40,13 +49,13 @@ describe('Html5ValidationField', () => {
40
49
} )
41
50
42
51
it ( 'should pass "pattern" through to input' , ( ) => {
43
- testPassThrough ( { pattern : 'text' } )
44
- testPassThrough ( { pattern : 'search' } )
45
- testPassThrough ( { pattern : 'url' } )
46
- testPassThrough ( { pattern : 'tel' } )
47
- testPassThrough ( { pattern : 'email' } )
48
- testPassThrough ( { pattern : 'password' } )
49
- testPassThrough ( { pattern : / l o o k , m a , a r e g e x ! / } )
52
+ testPassThrough ( { pattern : 'text' } , 'text' )
53
+ testPassThrough ( { pattern : 'search' } , 'search' )
54
+ testPassThrough ( { pattern : 'url' } , 'url' )
55
+ testPassThrough ( { pattern : 'tel' } , 'tel' )
56
+ testPassThrough ( { pattern : 'email' } , 'email' )
57
+ testPassThrough ( { pattern : 'password' } , 'password' )
58
+ testPassThrough ( { pattern : / l o o k , m a , a r e g e x ! / } , 'regex' )
50
59
} )
51
60
52
61
it ( 'should pass "min" through to input' , ( ) => {
@@ -72,7 +81,7 @@ describe('Html5ValidationField', () => {
72
81
73
82
it ( 'should pass ref through to the input' , ( ) => {
74
83
const ref = React . createRef ( )
75
- TestUtils . renderIntoDocument (
84
+ render (
76
85
< Form onSubmit = { onSubmitMock } subscription = { { values : true } } >
77
86
{ ( ) => (
78
87
< form >
@@ -87,21 +96,26 @@ describe('Html5ValidationField', () => {
87
96
} )
88
97
89
98
describe ( 'Html5ValidationField.messages' , ( ) => {
90
- const testNotPassThrough = message => {
99
+ const testNotPassThrough = ( message ) => {
91
100
const consoleSpy = jest
92
101
. spyOn ( global . console , 'error' )
93
102
. mockImplementation ( ( ) => { } )
94
- const dom = TestUtils . renderIntoDocument (
103
+ const { getByTestId } = render (
95
104
< Form onSubmit = { onSubmitMock } subscription = { { } } >
96
105
{ ( ) => (
97
- < Html5ValidationField name = "foo" component = "input" { ...message } />
106
+ < Html5ValidationField
107
+ name = "foo"
108
+ component = "input"
109
+ { ...message }
110
+ data-testid = "input"
111
+ />
98
112
) }
99
113
</ Form >
100
114
)
101
- const input = TestUtils . findRenderedDOMComponentWithTag ( dom , 'input' )
115
+ const input = getByTestId ( 'input' )
102
116
expect ( input ) . toBeDefined ( )
103
117
const attributes = getAttributes ( input )
104
- Object . keys ( message ) . forEach ( key =>
118
+ Object . keys ( message ) . forEach ( ( key ) =>
105
119
expect ( attributes [ key ] ) . toBeUndefined ( )
106
120
)
107
121
consoleSpy . mockRestore ( )
@@ -116,7 +130,7 @@ describe('Html5ValidationField', () => {
116
130
'tooShort' ,
117
131
'typeMismatch' ,
118
132
'valueMissing'
119
- ] . forEach ( key => {
133
+ ] . forEach ( ( key ) => {
120
134
it ( `should not pass "${ key } " through to input` , ( ) => {
121
135
testNotPassThrough ( { [ key ] : 'All your base are belong to us' } )
122
136
} )
@@ -148,7 +162,7 @@ describe('Html5ValidationField', () => {
148
162
} ,
149
163
( ) => {
150
164
const spy = jest . fn ( ( { input } ) => < input { ...input } /> )
151
- TestUtils . renderIntoDocument (
165
+ render (
152
166
< Form onSubmit = { onSubmitMock } subscription = { { } } >
153
167
{ ( ) => < Html5ValidationField name = "foo" render = { spy } /> }
154
168
</ Form >
@@ -178,7 +192,7 @@ describe('Html5ValidationField', () => {
178
192
} ,
179
193
( ) => {
180
194
const spy = jest . fn ( ( { input } ) => < input { ...input } /> )
181
- TestUtils . renderIntoDocument (
195
+ render (
182
196
< Form onSubmit = { onSubmitMock } subscription = { { } } >
183
197
{ ( ) => < Html5ValidationField name = "foo.bar" render = { spy } /> }
184
198
</ Form >
@@ -198,7 +212,7 @@ describe('Html5ValidationField', () => {
198
212
. mockImplementation ( ( ) => { } )
199
213
mockFindNode ( undefined , ( ) => {
200
214
const spy = jest . fn ( ( { input } ) => < input { ...input } /> )
201
- TestUtils . renderIntoDocument (
215
+ render (
202
216
< Form onSubmit = { onSubmitMock } subscription = { { } } >
203
217
{ ( ) => < Html5ValidationField name = "foo" render = { spy } /> }
204
218
</ Form >
@@ -218,7 +232,7 @@ describe('Html5ValidationField', () => {
218
232
} ,
219
233
( ) => {
220
234
const spy = jest . fn ( ( { input } ) => < input { ...input } /> )
221
- TestUtils . renderIntoDocument (
235
+ render (
222
236
< Form onSubmit = { onSubmitMock } subscription = { { } } >
223
237
{ ( ) => < Html5ValidationField name = "foo" render = { spy } /> }
224
238
</ Form >
@@ -245,7 +259,7 @@ describe('Html5ValidationField', () => {
245
259
} ,
246
260
( ) => {
247
261
const spy = jest . fn ( ( { input } ) => < input { ...input } /> )
248
- TestUtils . renderIntoDocument (
262
+ render (
249
263
< Form onSubmit = { onSubmitMock } subscription = { { } } >
250
264
{ ( ) => < Html5ValidationField name = "foo" render = { spy } /> }
251
265
</ Form >
@@ -278,7 +292,7 @@ describe('Html5ValidationField', () => {
278
292
} ,
279
293
( ) => {
280
294
const spy = jest . fn ( ( { input } ) => < input { ...input } /> )
281
- TestUtils . renderIntoDocument (
295
+ render (
282
296
< Form onSubmit = { onSubmitMock } subscription = { { } } >
283
297
{ ( ) => < Html5ValidationField name = "foo" render = { spy } /> }
284
298
</ Form >
@@ -309,7 +323,7 @@ describe('Html5ValidationField', () => {
309
323
( ) => {
310
324
const spy = jest . fn ( ( { input } ) => < input { ...input } /> )
311
325
const validate = jest . fn ( ( ) => 'Special error' )
312
- TestUtils . renderIntoDocument (
326
+ render (
313
327
< Form
314
328
onSubmit = { onSubmitMock }
315
329
initialValues = { { foo : 'bar' } }
@@ -351,7 +365,7 @@ describe('Html5ValidationField', () => {
351
365
( ) => {
352
366
const spy = jest . fn ( ( { input } ) => < input { ...input } /> )
353
367
const validate = jest . fn ( ( ) => 'Special error' )
354
- TestUtils . renderIntoDocument (
368
+ render (
355
369
< Form
356
370
onSubmit = { onSubmitMock }
357
371
initialValues = { { foo : 'bar' } }
@@ -401,7 +415,7 @@ describe('Html5ValidationField', () => {
401
415
( ) => {
402
416
const spy = jest . fn ( ( { input } ) => < input { ...input } /> )
403
417
const validate = jest . fn ( ( ) => ( { deep : 'Special error' } ) )
404
- TestUtils . renderIntoDocument (
418
+ render (
405
419
< Form
406
420
onSubmit = { onSubmitMock }
407
421
initialValues = { { foo : 'bar' } }
@@ -447,7 +461,7 @@ describe('Html5ValidationField', () => {
447
461
( ) => {
448
462
const spy = jest . fn ( ( { input } ) => < input { ...input } /> )
449
463
const validate = jest . fn ( ( ) => { } )
450
- TestUtils . renderIntoDocument (
464
+ render (
451
465
< Form
452
466
onSubmit = { onSubmitMock }
453
467
initialValues = { { foo : 'bar' } }
@@ -494,7 +508,7 @@ describe('Html5ValidationField', () => {
494
508
} ,
495
509
( ) => {
496
510
const spy = jest . fn ( ( { input } ) => < input { ...input } /> )
497
- TestUtils . renderIntoDocument (
511
+ render (
498
512
< Form
499
513
onSubmit = { onSubmitMock }
500
514
initialValues = { { foo : 'bar' } }
@@ -530,7 +544,7 @@ describe('Html5ValidationField', () => {
530
544
} ,
531
545
( ) => {
532
546
const spy = jest . fn ( ( { input } ) => < input { ...input } /> )
533
- TestUtils . renderIntoDocument (
547
+ render (
534
548
< Form
535
549
onSubmit = { onSubmitMock }
536
550
initialValues = { { foo : 'bar' } }
@@ -565,7 +579,7 @@ describe('Html5ValidationField', () => {
565
579
} ,
566
580
( ) => {
567
581
const spy = jest . fn ( ( { input } ) => < input { ...input } /> )
568
- TestUtils . renderIntoDocument (
582
+ render (
569
583
< Form
570
584
initialValues = { { foo : 'bar' } }
571
585
onSubmit = { onSubmitMock }
0 commit comments