|
1 | 1 | import { act } from 'react-dom/test-utils';
|
2 |
| -import type { ReactWrapper } from 'enzyme'; |
3 | 2 | import timeout from './timeout';
|
4 |
| -import { Field } from '../../src'; |
5 |
| -import { getNamePath, matchNamePath } from '../../src/utils/valueUtil'; |
| 3 | +import { matchNamePath } from '../../src/utils/valueUtil'; |
| 4 | +import { fireEvent } from '@testing-library/react'; |
6 | 5 |
|
7 |
| -export async function changeValue(wrapper: ReactWrapper, value: string | string[]) { |
8 |
| - wrapper.find('input').simulate('change', { target: { value } }); |
9 |
| - await act(async () => { |
10 |
| - await timeout(); |
11 |
| - }); |
12 |
| - wrapper.update(); |
| 6 | +export function getInput( |
| 7 | + container: HTMLElement, |
| 8 | + dataNameOrIndex?: string | number, |
| 9 | + parentField = false, |
| 10 | +): HTMLInputElement { |
| 11 | + let ele: HTMLInputElement | null = null; |
| 12 | + |
| 13 | + if (!dataNameOrIndex) { |
| 14 | + ele = container.querySelector('input'); |
| 15 | + } else if (typeof dataNameOrIndex === 'number') { |
| 16 | + ele = container.querySelectorAll('input')[dataNameOrIndex]; |
| 17 | + } else { |
| 18 | + ele = container.querySelector(`[data-name="${dataNameOrIndex}"]`); |
| 19 | + } |
| 20 | + |
| 21 | + if (parentField) { |
| 22 | + return ele.closest('.field'); |
| 23 | + } |
| 24 | + |
| 25 | + return ele!; |
| 26 | +} |
| 27 | + |
| 28 | +export async function changeValue(wrapper: HTMLElement, value: string | string[]) { |
| 29 | + const values = Array.isArray(value) ? value : [value]; |
| 30 | + |
| 31 | + for (let i = 0; i < values.length; i += 1) { |
| 32 | + fireEvent.change(wrapper, { target: { value: values[i] } }); |
| 33 | + |
| 34 | + await act(async () => { |
| 35 | + await timeout(); |
| 36 | + }); |
| 37 | + } |
| 38 | + |
| 39 | + return; |
13 | 40 | }
|
14 | 41 |
|
15 | 42 | export function matchError(
|
16 |
| - wrapper: ReactWrapper, |
| 43 | + wrapper: HTMLElement, |
17 | 44 | error?: boolean | string,
|
18 | 45 | warning?: boolean | string,
|
19 | 46 | ) {
|
20 | 47 | // Error
|
21 | 48 | if (error) {
|
22 |
| - expect(wrapper.find('.errors li').length).toBeTruthy(); |
| 49 | + expect(wrapper.querySelector('.errors li')).toBeTruthy(); |
23 | 50 | } else {
|
24 |
| - expect(wrapper.find('.errors li').length).toBeFalsy(); |
| 51 | + expect(wrapper.querySelector('.errors li')).toBeFalsy(); |
25 | 52 | }
|
26 | 53 |
|
27 | 54 | if (error && typeof error !== 'boolean') {
|
28 |
| - expect(wrapper.find('.errors li').text()).toBe(error); |
| 55 | + expect(wrapper.querySelector('.errors li').textContent).toBe(error); |
29 | 56 | }
|
30 | 57 |
|
31 | 58 | // Warning
|
32 | 59 | if (warning) {
|
33 |
| - expect(wrapper.find('.warnings li').length).toBeTruthy(); |
| 60 | + expect(wrapper.querySelector('.warnings li')).toBeTruthy(); |
34 | 61 | } else {
|
35 |
| - expect(wrapper.find('.warnings li').length).toBeFalsy(); |
| 62 | + expect(wrapper.querySelector('.warnings li')).toBeFalsy(); |
36 | 63 | }
|
37 | 64 |
|
38 | 65 | if (warning && typeof warning !== 'boolean') {
|
39 |
| - expect(wrapper.find('.warnings li').text()).toBe(warning); |
| 66 | + expect(wrapper.querySelector('.warnings li').textContent).toBe(warning); |
40 | 67 | }
|
41 |
| -} |
42 | 68 |
|
43 |
| -export function getField(wrapper: ReactWrapper, index: string | number | string[] = 0) { |
44 |
| - if (typeof index === 'number') { |
45 |
| - return wrapper.find(Field).at(index); |
46 |
| - } |
47 |
| - const name = getNamePath(index); |
48 |
| - const fields = wrapper.find(Field); |
49 |
| - for (let i = 0; i < fields.length; i += 1) { |
50 |
| - const field = fields.at(i); |
51 |
| - const fieldName = getNamePath((field.props() as any).name); |
52 |
| - if (matchNamePath(name, fieldName)) { |
53 |
| - return field; |
54 |
| - } |
55 |
| - } |
56 |
| - return null; |
| 69 | + return; |
57 | 70 | }
|
58 | 71 |
|
59 | 72 | export function matchArray(source: any[], target: any[], matchKey: React.Key) {
|
|
0 commit comments