ant-design/components/modal/__tests__/Modal.test.js

61 lines
1.4 KiB
JavaScript
Raw Normal View History

2017-03-30 16:06:03 +08:00
import React from 'react';
import { mount } from 'enzyme';
import Modal from '..';
jest.mock('rc-util/lib/Portal');
2017-03-30 16:06:03 +08:00
class ModalTester extends React.Component {
constructor(props) {
super(props);
this.state = { visible: false };
}
2017-03-30 16:06:03 +08:00
componentDidMount() {
this.setState({ visible: true }); // eslint-disable-line react/no-did-mount-set-state
}
2018-12-07 16:17:45 +08:00
saveContainer = container => {
2017-03-30 16:06:03 +08:00
this.container = container;
2018-12-07 16:17:45 +08:00
};
2018-12-07 16:17:45 +08:00
getContainer = () => this.container;
2017-03-30 16:06:03 +08:00
render() {
const { visible } = this.state;
2017-03-30 16:06:03 +08:00
return (
2017-04-05 16:21:21 +08:00
<div>
<div ref={this.saveContainer} />
2018-12-07 16:17:45 +08:00
<Modal {...this.props} visible={visible} getContainer={this.getContainer}>
2017-03-30 16:06:03 +08:00
Here is content of Modal
</Modal>
</div>
);
}
}
describe('Modal', () => {
it('render correctly', () => {
const wrapper = mount(<ModalTester />);
2017-04-02 18:09:23 +08:00
expect(wrapper.render()).toMatchSnapshot();
2017-03-30 16:06:03 +08:00
});
it('render without footer', () => {
const wrapper = mount(<ModalTester footer={null} />);
2017-04-02 18:09:23 +08:00
expect(wrapper.render()).toMatchSnapshot();
2017-03-30 16:06:03 +08:00
});
2019-03-07 12:45:14 +08:00
it('onCancel should be called', () => {
const onCancel = jest.fn();
const wrapper = mount(<Modal onCancel={onCancel} />).instance();
wrapper.handleCancel();
expect(onCancel).toHaveBeenCalled();
2019-03-07 12:45:14 +08:00
});
it('onOk should be called', () => {
const onOk = jest.fn();
const wrapper = mount(<Modal onOk={onOk} />).instance();
wrapper.handleOk();
expect(onOk).toHaveBeenCalled();
2019-03-07 12:45:14 +08:00
});
2017-03-30 16:06:03 +08:00
});