mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 08:59:40 +08:00
07c85ea21f
* Clone child only if it exists child can be void | null | boolean | string | number | element. * Add test
128 lines
4.0 KiB
JavaScript
128 lines
4.0 KiB
JavaScript
import React from 'react';
|
||
import MockDate from 'mockdate';
|
||
import { mount } from 'enzyme';
|
||
import Descriptions from '..';
|
||
|
||
jest.mock('enquire.js', () => {
|
||
let that;
|
||
let unmatchFun;
|
||
return {
|
||
unregister: jest.fn(),
|
||
register: (media, options) => {
|
||
if (media === '(max-width: 575px)') {
|
||
that = this;
|
||
options.match.call(that);
|
||
unmatchFun = options.unmatch;
|
||
}
|
||
},
|
||
callunmatch() {
|
||
unmatchFun.call(that);
|
||
},
|
||
};
|
||
});
|
||
|
||
describe('Descriptions', () => {
|
||
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
||
|
||
afterEach(() => {
|
||
MockDate.reset();
|
||
errorSpy.mockReset();
|
||
});
|
||
|
||
afterAll(() => {
|
||
errorSpy.mockRestore();
|
||
});
|
||
|
||
it('when max-width: 575px,column=1', () => {
|
||
// eslint-disable-next-line global-require
|
||
const enquire = require('enquire.js');
|
||
const wrapper = mount(
|
||
<Descriptions>
|
||
<Descriptions.Item label="Product">Cloud Database</Descriptions.Item>
|
||
<Descriptions.Item label="Billing">Prepaid</Descriptions.Item>
|
||
<Descriptions.Item label="time">18:00:00</Descriptions.Item>
|
||
<Descriptions.Item label="Amount">$80.00</Descriptions.Item>
|
||
</Descriptions>,
|
||
);
|
||
expect(wrapper.find('tr')).toHaveLength(4);
|
||
|
||
enquire.callunmatch();
|
||
wrapper.unmount();
|
||
});
|
||
|
||
it('when max-width: 575px,column=2', () => {
|
||
// eslint-disable-next-line global-require
|
||
const enquire = require('enquire.js');
|
||
const wrapper = mount(
|
||
<Descriptions column={{ xs: 2 }}>
|
||
<Descriptions.Item label="Product">Cloud Database</Descriptions.Item>
|
||
<Descriptions.Item label="Billing">Prepaid</Descriptions.Item>
|
||
<Descriptions.Item label="time">18:00:00</Descriptions.Item>
|
||
<Descriptions.Item label="Amount">$80.00</Descriptions.Item>
|
||
</Descriptions>,
|
||
);
|
||
expect(wrapper.find('tr')).toHaveLength(2);
|
||
|
||
enquire.callunmatch();
|
||
wrapper.unmount();
|
||
});
|
||
|
||
it('column is number', () => {
|
||
// eslint-disable-next-line global-require
|
||
const wrapper = mount(
|
||
<Descriptions column="3">
|
||
<Descriptions.Item label="Product">Cloud Database</Descriptions.Item>
|
||
<Descriptions.Item label="Billing">Prepaid</Descriptions.Item>
|
||
<Descriptions.Item label="time">18:00:00</Descriptions.Item>
|
||
<Descriptions.Item label="Amount">$80.00</Descriptions.Item>
|
||
</Descriptions>,
|
||
);
|
||
expect(wrapper).toMatchSnapshot();
|
||
wrapper.unmount();
|
||
});
|
||
|
||
it('when typeof column is object', () => {
|
||
const wrapper = mount(
|
||
<Descriptions column={{ xs: 8, sm: 16, md: 24 }}>
|
||
<Descriptions.Item label="Product">Cloud Database</Descriptions.Item>
|
||
<Descriptions.Item label="Billing">Prepaid</Descriptions.Item>
|
||
<Descriptions.Item label="time">18:00:00</Descriptions.Item>
|
||
<Descriptions.Item label="Amount">$80.00</Descriptions.Item>
|
||
</Descriptions>,
|
||
);
|
||
expect(wrapper.instance().getColumn()).toBe(8);
|
||
wrapper.unmount();
|
||
});
|
||
|
||
it('warning if ecceed the row span', () => {
|
||
mount(
|
||
<Descriptions column={3}>
|
||
<Descriptions.Item label="Product" span={2}>
|
||
Cloud Database
|
||
</Descriptions.Item>
|
||
<Descriptions.Item label="Billing" span={2}>
|
||
Prepaid
|
||
</Descriptions.Item>
|
||
</Descriptions>,
|
||
);
|
||
expect(errorSpy).toHaveBeenCalledWith(
|
||
'Warning: [antd: Descriptions] Sum of column `span` in a line exceeds `column` of Descriptions.',
|
||
);
|
||
});
|
||
|
||
it('when item is rendered conditionally', () => {
|
||
const hasDiscount = false;
|
||
const wrapper = mount(
|
||
<Descriptions>
|
||
<Descriptions.Item label="Product">Cloud Database</Descriptions.Item>
|
||
<Descriptions.Item label="Billing">Prepaid</Descriptions.Item>
|
||
<Descriptions.Item label="time">18:00:00</Descriptions.Item>
|
||
<Descriptions.Item label="Amount">$80.00</Descriptions.Item>
|
||
{hasDiscount && <Descriptions.Item label="Discount">$20.00</Descriptions.Item>}
|
||
</Descriptions>,
|
||
);
|
||
expect(wrapper).toMatchSnapshot();
|
||
wrapper.unmount();
|
||
});
|
||
});
|