ant-design/components/card/__tests__/index.test.js

108 lines
2.9 KiB
JavaScript
Raw Normal View History

2017-08-23 16:29:56 +08:00
import React from 'react';
import { mount } from 'enzyme';
import Card from '../index';
import Button from '../../button/index';
2017-08-23 16:29:56 +08:00
2017-08-24 10:05:55 +08:00
const testMethod = typeof window !== 'undefined' ? it : xit;
2017-08-23 16:29:56 +08:00
describe('Card', () => {
2017-11-16 17:12:36 +08:00
beforeAll(() => {
jest.useFakeTimers();
});
afterAll(() => {
jest.useRealTimers();
});
2017-08-23 16:29:56 +08:00
function fakeResizeWindowTo(wrapper, width) {
2017-09-20 16:26:18 +08:00
Object.defineProperties(wrapper.instance().container, {
2017-08-23 16:29:56 +08:00
offsetWidth: {
2018-12-07 16:17:45 +08:00
get() {
return width;
},
2017-08-23 16:29:56 +08:00
configurable: true,
},
});
window.resizeTo(width);
}
2017-11-16 17:12:36 +08:00
testMethod('resize card will trigger different padding', () => {
2017-08-23 16:29:56 +08:00
const wrapper = mount(<Card title="xxx">xxx</Card>);
fakeResizeWindowTo(wrapper, 1000);
2017-11-16 17:12:36 +08:00
jest.runAllTimers();
2017-09-20 16:26:18 +08:00
wrapper.update();
expect(wrapper.find('.ant-card-wider-padding').length).toBe(1);
2017-08-23 16:29:56 +08:00
fakeResizeWindowTo(wrapper, 800);
2017-11-16 17:12:36 +08:00
jest.runAllTimers();
2017-09-20 16:26:18 +08:00
wrapper.update();
expect(wrapper.find('.ant-card-wider-padding').length).toBe(0);
2017-08-23 16:29:56 +08:00
});
it('should still have padding when card which set padding to 0 is loading', () => {
2018-12-07 16:17:45 +08:00
const wrapper = mount(
<Card loading bodyStyle={{ padding: 0 }}>
xxx
</Card>,
);
expect(wrapper.render()).toMatchSnapshot();
});
it('title should be vertically aligned', () => {
const wrapper = mount(
<Card title="Card title" extra={<Button>Button</Button>} style={{ width: 300 }}>
<p>Card content</p>
2018-12-07 16:17:45 +08:00
</Card>,
);
expect(wrapper.render()).toMatchSnapshot();
});
2019-03-09 12:46:40 +08:00
it('warning', () => {
const warnSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
mount(<Card noHovering>xxx</Card>);
expect(warnSpy).toBeCalledWith(
'Warning: [antd: Card] `noHovering` is deprecated, you can remove it safely or use `hoverable` instead.',
);
mount(<Card noHovering={false}>xxx</Card>);
expect(warnSpy).toBeCalledWith(
'Warning: [antd: Card] `noHovering={false}` is deprecated, use `hoverable` instead.',
);
warnSpy.mockRestore();
});
it('unmount', () => {
const wrapper = mount(<Card>xxx</Card>);
const removeResizeEventSpy = jest.spyOn(wrapper.instance().resizeEvent, 'remove');
wrapper.unmount();
expect(removeResizeEventSpy).toHaveBeenCalled();
});
it('onTabChange should work', () => {
2019-03-15 19:50:13 +08:00
const tabList = [
{
key: 'tab1',
tab: 'tab1',
},
{
key: 'tab2',
tab: 'tab2',
},
];
const onTabChange = jest.fn();
const wrapper = mount(
<Card onTabChange={onTabChange} tabList={tabList}>
xxx
</Card>,
);
wrapper
.find('.ant-tabs-tab')
.at(1)
.simulate('click');
expect(onTabChange).toBeCalledWith('tab2');
2019-03-09 12:46:40 +08:00
});
it('getCompatibleHoverable should work', () => {
2019-03-15 19:50:13 +08:00
const wrapper = mount(<Card noHovering={false}>xxx</Card>);
expect(wrapper.find('.ant-card-hoverable').length).toBe(1);
2019-03-09 12:46:40 +08:00
});
2017-08-23 16:29:56 +08:00
});