You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
254 lines
6.4 KiB
254 lines
6.4 KiB
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import scrollIntoView from 'scroll-into-view-if-needed';
|
|
import Form from '..';
|
|
import Input from '../../input';
|
|
import Button from '../../button';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
|
|
jest.mock('scroll-into-view-if-needed');
|
|
|
|
const delay = (timeout = 0) =>
|
|
new Promise(resolve => {
|
|
setTimeout(resolve, timeout);
|
|
});
|
|
|
|
describe('Form', () => {
|
|
mountTest(Form);
|
|
mountTest(Form.Item);
|
|
|
|
scrollIntoView.mockImplementation(() => {});
|
|
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
async function change(wrapper, index, value) {
|
|
wrapper
|
|
.find(Input)
|
|
.at(index)
|
|
.simulate('change', { target: { value } });
|
|
await delay(50);
|
|
wrapper.update();
|
|
}
|
|
|
|
beforeEach(() => {
|
|
jest.useRealTimers();
|
|
scrollIntoView.mockReset();
|
|
});
|
|
|
|
afterEach(() => {
|
|
errorSpy.mockReset();
|
|
});
|
|
|
|
afterAll(() => {
|
|
errorSpy.mockRestore();
|
|
scrollIntoView.mockRestore();
|
|
});
|
|
|
|
describe('List', () => {
|
|
function testList(name, renderField) {
|
|
it(name, async () => {
|
|
const wrapper = mount(
|
|
<Form>
|
|
<Form.List name="list">
|
|
{(fields, { add, remove }) => (
|
|
<>
|
|
{fields.map(field => renderField(field))}
|
|
<Button className="add" onClick={add}>
|
|
Add
|
|
</Button>
|
|
<Button
|
|
className="remove"
|
|
onClick={() => {
|
|
remove(1);
|
|
}}
|
|
>
|
|
Remove
|
|
</Button>
|
|
</>
|
|
)}
|
|
</Form.List>
|
|
</Form>,
|
|
);
|
|
|
|
async function operate(className) {
|
|
wrapper
|
|
.find(className)
|
|
.last()
|
|
.simulate('click');
|
|
await delay();
|
|
wrapper.update();
|
|
}
|
|
|
|
await operate('.add');
|
|
expect(wrapper.find(Input).length).toBe(1);
|
|
|
|
await operate('.add');
|
|
expect(wrapper.find(Input).length).toBe(2);
|
|
|
|
await change(wrapper, 1, '');
|
|
expect(wrapper.find('.ant-form-item-explain').length).toBe(1);
|
|
|
|
await operate('.remove');
|
|
expect(wrapper.find(Input).length).toBe(1);
|
|
expect(wrapper.find('.ant-form-item-explain').length).toBe(0);
|
|
});
|
|
}
|
|
|
|
testList('operation correctly', field => (
|
|
<Form.Item {...field} rules={[{ required: true }]}>
|
|
<Input />
|
|
</Form.Item>
|
|
));
|
|
|
|
testList('nest noStyle', field => (
|
|
<Form.Item key={field.key}>
|
|
<Form.Item noStyle {...field} rules={[{ required: true }]}>
|
|
<Input />
|
|
</Form.Item>
|
|
</Form.Item>
|
|
));
|
|
});
|
|
|
|
it('noStyle Form.Item', async () => {
|
|
const onChange = jest.fn();
|
|
|
|
const wrapper = mount(
|
|
<Form>
|
|
<Form.Item>
|
|
<Form.Item name="test" rules={[{ required: true }]}>
|
|
<Input onChange={onChange} />
|
|
</Form.Item>
|
|
</Form.Item>
|
|
</Form>,
|
|
);
|
|
|
|
await change(wrapper, 0, '');
|
|
expect(wrapper.find('.ant-form-item-explain').length).toBe(1);
|
|
|
|
expect(onChange).toHaveBeenCalled();
|
|
});
|
|
|
|
it('`shouldUpdate` should work with render props', () => {
|
|
mount(
|
|
<Form>
|
|
<Form.Item>{() => null}</Form.Item>
|
|
</Form>,
|
|
);
|
|
expect(errorSpy).toHaveBeenCalledWith(
|
|
'Warning: [antd: Form.Item] `children` of render props only work with `shouldUpdate`.',
|
|
);
|
|
});
|
|
|
|
describe('scrollToField', () => {
|
|
function test(name, genForm) {
|
|
it(name, () => {
|
|
let callGetForm;
|
|
|
|
const Demo = () => {
|
|
const { props, getForm } = genForm();
|
|
callGetForm = getForm;
|
|
|
|
return (
|
|
<Form name="scroll" {...props}>
|
|
<Form.Item name="test">
|
|
<Input />
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
mount(<Demo />, { attachTo: document.body });
|
|
|
|
expect(scrollIntoView).not.toHaveBeenCalled();
|
|
callGetForm().scrollToField('test');
|
|
expect(scrollIntoView).toHaveBeenCalled();
|
|
});
|
|
}
|
|
|
|
// hooks
|
|
test('useForm', () => {
|
|
const [form] = Form.useForm();
|
|
return {
|
|
props: { form },
|
|
getForm: () => form,
|
|
};
|
|
});
|
|
|
|
// ref
|
|
test('ref', () => {
|
|
let form;
|
|
return {
|
|
props: {
|
|
ref: instance => {
|
|
form = instance;
|
|
},
|
|
},
|
|
getForm: () => form,
|
|
};
|
|
});
|
|
});
|
|
|
|
it('Form.Item should support data-*、aria-* and custom attribute', () => {
|
|
const wrapper = mount(
|
|
<Form>
|
|
<Form.Item data-text="123" aria-hidden="true" cccc="bbbb">
|
|
text
|
|
</Form.Item>
|
|
</Form>,
|
|
);
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
});
|
|
|
|
it('warning when use `name` but children is not validate element', () => {
|
|
mount(
|
|
<Form>
|
|
<Form.Item name="warning">text</Form.Item>
|
|
</Form>,
|
|
);
|
|
expect(errorSpy).toHaveBeenCalledWith(
|
|
'Warning: [antd: Form.Item] `name` is only used for validate React element. If you are using Form.Item as layout display, please remove `name` instead.',
|
|
);
|
|
});
|
|
|
|
it('dynamic change required', () => {
|
|
const wrapper = mount(
|
|
<Form>
|
|
<Form.Item label="light" name="light" valuePropName="checked">
|
|
<input type="checkbox" />
|
|
</Form.Item>
|
|
<Form.Item
|
|
label="bamboo"
|
|
name="bamboo"
|
|
dependencies={['light']}
|
|
rules={[({ getFieldValue }) => ({ required: getFieldValue('light') })]}
|
|
>
|
|
<input />
|
|
</Form.Item>
|
|
</Form>,
|
|
);
|
|
|
|
expect(wrapper.find('.ant-form-item-required')).toHaveLength(0);
|
|
|
|
wrapper.find('input[type="checkbox"]').simulate('change', { target: { checked: true } });
|
|
wrapper.update();
|
|
expect(wrapper.find('.ant-form-item-required')).toHaveLength(1);
|
|
});
|
|
|
|
it('should show related className when customize help', () => {
|
|
const wrapper = mount(
|
|
<Form>
|
|
<Form.Item help="good">
|
|
<input />
|
|
</Form.Item>
|
|
</Form>,
|
|
);
|
|
|
|
expect(wrapper.find('.ant-form-item-with-help').length).toBeTruthy();
|
|
});
|
|
|
|
it('warning when use v3 function', () => {
|
|
Form.create();
|
|
expect(errorSpy).toHaveBeenCalledWith(
|
|
'Warning: [antd: Form] antd v4 removed `Form.create`. Please remove or use `@ant-design/compatible` instead.',
|
|
);
|
|
});
|
|
});
|
|
|