2018-06-19 16:47:52 +08:00
|
|
|
import React from 'react';
|
2020-03-02 17:28:45 +08:00
|
|
|
import { render, mount } from 'enzyme';
|
2018-06-19 16:47:52 +08:00
|
|
|
import Drawer from '..';
|
2019-08-26 22:53:20 +08:00
|
|
|
import mountTest from '../../../tests/shared/mountTest';
|
2020-01-02 19:10:16 +08:00
|
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
2018-06-19 16:47:52 +08:00
|
|
|
|
2020-06-07 19:05:44 +08:00
|
|
|
const DrawerTest = ({ getContainer }) => {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<Drawer visible width={400} getContainer={getContainer}>
|
|
|
|
Here is content of Drawer
|
|
|
|
</Drawer>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2018-06-19 16:47:52 +08:00
|
|
|
describe('Drawer', () => {
|
2019-08-26 22:53:20 +08:00
|
|
|
mountTest(Drawer);
|
2020-01-02 19:10:16 +08:00
|
|
|
rtlTest(Drawer);
|
2019-08-26 22:53:20 +08:00
|
|
|
|
2018-07-20 14:40:03 +08:00
|
|
|
it('render correctly', () => {
|
|
|
|
const wrapper = render(
|
2018-12-07 16:17:45 +08:00
|
|
|
<Drawer visible width={400} getContainer={false}>
|
2018-07-20 14:40:03 +08:00
|
|
|
Here is content of Drawer
|
2018-12-07 16:17:45 +08:00
|
|
|
</Drawer>,
|
2018-07-20 14:40:03 +08:00
|
|
|
);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
2020-06-07 19:05:44 +08:00
|
|
|
it('getContainer return undefined', () => {
|
|
|
|
let wrapper = mount(<DrawerTest getContainer={() => undefined} />);
|
|
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
|
|
wrapper = mount(<DrawerTest getContainer={false} />);
|
|
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
2018-08-10 13:32:33 +08:00
|
|
|
it('render top drawer', () => {
|
|
|
|
const wrapper = render(
|
2018-12-07 16:17:45 +08:00
|
|
|
<Drawer visible height={400} placement="top" getContainer={false}>
|
2018-08-10 13:32:33 +08:00
|
|
|
Here is content of Drawer
|
2018-12-07 16:17:45 +08:00
|
|
|
</Drawer>,
|
2018-08-10 13:32:33 +08:00
|
|
|
);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
2018-07-20 14:40:03 +08:00
|
|
|
it('have a title', () => {
|
|
|
|
const wrapper = render(
|
2018-12-07 16:17:45 +08:00
|
|
|
<Drawer visible title="Test Title" getContainer={false}>
|
2018-07-20 14:40:03 +08:00
|
|
|
Here is content of Drawer
|
2018-12-07 16:17:45 +08:00
|
|
|
</Drawer>,
|
2018-07-20 14:40:03 +08:00
|
|
|
);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('closable is false', () => {
|
|
|
|
const wrapper = render(
|
2018-12-07 16:17:45 +08:00
|
|
|
<Drawer visible closable={false} getContainer={false}>
|
2018-07-20 14:40:03 +08:00
|
|
|
Here is content of Drawer
|
2018-12-07 16:17:45 +08:00
|
|
|
</Drawer>,
|
2018-07-20 14:40:03 +08:00
|
|
|
);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
2018-06-21 12:32:13 +08:00
|
|
|
it('destroyOnClose is true', () => {
|
2018-07-20 14:40:03 +08:00
|
|
|
const wrapper = render(
|
2018-12-07 16:17:45 +08:00
|
|
|
<Drawer destroyOnClose visible={false} getContainer={false}>
|
2018-06-26 11:19:49 +08:00
|
|
|
Here is content of Drawer
|
2018-12-07 16:17:45 +08:00
|
|
|
</Drawer>,
|
2018-06-26 11:19:49 +08:00
|
|
|
);
|
2018-07-20 14:40:03 +08:00
|
|
|
expect(wrapper).toMatchSnapshot();
|
2018-06-19 16:47:52 +08:00
|
|
|
});
|
2018-07-22 11:27:48 +08:00
|
|
|
|
2018-08-05 14:16:08 +08:00
|
|
|
it('className is test_drawer', () => {
|
2018-07-22 11:27:48 +08:00
|
|
|
const wrapper = render(
|
2018-12-07 16:17:45 +08:00
|
|
|
<Drawer destroyOnClose visible={false} className="test_drawer" getContainer={false}>
|
2018-07-22 11:27:48 +08:00
|
|
|
Here is content of Drawer
|
2018-12-07 16:17:45 +08:00
|
|
|
</Drawer>,
|
2018-07-22 11:27:48 +08:00
|
|
|
);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
2019-10-07 18:58:10 +08:00
|
|
|
|
|
|
|
it('style/drawerStyle/headerStyle/bodyStyle should work', () => {
|
|
|
|
const style = {
|
|
|
|
backgroundColor: '#08c',
|
|
|
|
};
|
|
|
|
const wrapper = render(
|
|
|
|
<Drawer
|
|
|
|
visible
|
|
|
|
style={style}
|
|
|
|
drawerStyle={style}
|
|
|
|
headerStyle={style}
|
|
|
|
bodyStyle={style}
|
|
|
|
getContainer={false}
|
|
|
|
>
|
|
|
|
Here is content of Drawer
|
|
|
|
</Drawer>,
|
|
|
|
);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
2020-01-06 14:56:00 +08:00
|
|
|
|
|
|
|
it('have a footer', () => {
|
|
|
|
const wrapper = render(
|
|
|
|
<Drawer visible footer="Test Footer" getContainer={false}>
|
|
|
|
Here is content of Drawer
|
|
|
|
</Drawer>,
|
|
|
|
);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
2020-03-02 17:28:45 +08:00
|
|
|
|
|
|
|
it('forceRender works', () => {
|
|
|
|
const wrapper = mount(
|
|
|
|
<Drawer>
|
2020-06-07 19:05:44 +08:00
|
|
|
<button type="button" className="forceRender">
|
|
|
|
should not be rendered
|
|
|
|
</button>
|
2020-03-02 17:28:45 +08:00
|
|
|
</Drawer>,
|
|
|
|
);
|
|
|
|
expect(wrapper.find('button.forceRender').length).toBe(0);
|
|
|
|
const wrapper2 = mount(
|
|
|
|
<Drawer forceRender>
|
2020-06-07 19:05:44 +08:00
|
|
|
<button type="button" className="forceRender">
|
|
|
|
should be rendered
|
|
|
|
</button>
|
2020-03-02 17:28:45 +08:00
|
|
|
</Drawer>,
|
|
|
|
);
|
|
|
|
expect(wrapper2.find('button.forceRender').length).toBe(1);
|
2020-06-07 19:05:44 +08:00
|
|
|
});
|
2020-06-08 19:24:29 +08:00
|
|
|
|
|
|
|
it('support closeIcon', () => {
|
|
|
|
const wrapper = render(
|
|
|
|
<Drawer visible closable closeIcon={<span>close</span>} width={400} getContainer={false}>
|
|
|
|
Here is content of Drawer
|
|
|
|
</Drawer>,
|
|
|
|
);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
2018-06-19 16:47:52 +08:00
|
|
|
});
|