2019-05-22 23:22:09 +08:00
|
|
|
|
import React from 'react';
|
2019-05-27 16:41:56 +08:00
|
|
|
|
import MockDate from 'mockdate';
|
2019-05-22 23:22:09 +08:00
|
|
|
|
import { mount } from 'enzyme';
|
|
|
|
|
import Descriptions from '..';
|
2019-08-26 22:53:20 +08:00
|
|
|
|
import mountTest from '../../../tests/shared/mountTest';
|
2019-08-30 12:31:10 +08:00
|
|
|
|
import { resetWarned } from '../../_util/warning';
|
2019-05-22 23:22:09 +08:00
|
|
|
|
|
|
|
|
|
describe('Descriptions', () => {
|
2019-08-26 22:53:20 +08:00
|
|
|
|
mountTest(Descriptions);
|
|
|
|
|
|
2019-05-27 16:41:56 +08:00
|
|
|
|
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
|
MockDate.reset();
|
|
|
|
|
errorSpy.mockReset();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
|
errorSpy.mockRestore();
|
|
|
|
|
});
|
|
|
|
|
|
2019-05-22 23:22:09 +08:00
|
|
|
|
it('when max-width: 575px,column=1', () => {
|
|
|
|
|
const wrapper = mount(
|
|
|
|
|
<Descriptions>
|
2019-05-27 21:32:45 +08:00
|
|
|
|
<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>
|
2019-06-27 16:06:34 +08:00
|
|
|
|
<Descriptions.Item>No-Label</Descriptions.Item>
|
2019-05-22 23:22:09 +08:00
|
|
|
|
</Descriptions>,
|
|
|
|
|
);
|
2019-06-27 16:06:34 +08:00
|
|
|
|
expect(wrapper.find('tr')).toHaveLength(5);
|
|
|
|
|
expect(wrapper.find('.ant-descriptions-item-no-label')).toHaveLength(1);
|
2019-05-22 23:22:09 +08:00
|
|
|
|
wrapper.unmount();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('when max-width: 575px,column=2', () => {
|
|
|
|
|
// eslint-disable-next-line global-require
|
|
|
|
|
const wrapper = mount(
|
|
|
|
|
<Descriptions column={{ xs: 2 }}>
|
2019-05-27 21:32:45 +08:00
|
|
|
|
<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>
|
2019-05-22 23:22:09 +08:00
|
|
|
|
</Descriptions>,
|
|
|
|
|
);
|
|
|
|
|
expect(wrapper.find('tr')).toHaveLength(2);
|
|
|
|
|
wrapper.unmount();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('column is number', () => {
|
|
|
|
|
// eslint-disable-next-line global-require
|
|
|
|
|
const wrapper = mount(
|
|
|
|
|
<Descriptions column="3">
|
2019-05-27 21:32:45 +08:00
|
|
|
|
<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>
|
2019-05-22 23:22:09 +08:00
|
|
|
|
</Descriptions>,
|
|
|
|
|
);
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
|
wrapper.unmount();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('when typeof column is object', () => {
|
|
|
|
|
const wrapper = mount(
|
|
|
|
|
<Descriptions column={{ xs: 8, sm: 16, md: 24 }}>
|
2019-05-27 21:32:45 +08:00
|
|
|
|
<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>
|
2019-05-22 23:22:09 +08:00
|
|
|
|
</Descriptions>,
|
|
|
|
|
);
|
|
|
|
|
expect(wrapper.instance().getColumn()).toBe(8);
|
|
|
|
|
wrapper.unmount();
|
|
|
|
|
});
|
2019-05-27 16:41:56 +08:00
|
|
|
|
|
|
|
|
|
it('warning if ecceed the row span', () => {
|
2019-08-30 12:31:10 +08:00
|
|
|
|
resetWarned();
|
|
|
|
|
|
2019-05-27 16:41:56 +08:00
|
|
|
|
mount(
|
|
|
|
|
<Descriptions column={3}>
|
2019-05-27 21:32:45 +08:00
|
|
|
|
<Descriptions.Item label="Product" span={2}>
|
2019-05-27 16:41:56 +08:00
|
|
|
|
Cloud Database
|
2019-05-27 21:32:45 +08:00
|
|
|
|
</Descriptions.Item>
|
|
|
|
|
<Descriptions.Item label="Billing" span={2}>
|
2019-05-27 16:41:56 +08:00
|
|
|
|
Prepaid
|
2019-05-27 21:32:45 +08:00
|
|
|
|
</Descriptions.Item>
|
2019-05-27 16:41:56 +08:00
|
|
|
|
</Descriptions>,
|
|
|
|
|
);
|
|
|
|
|
expect(errorSpy).toHaveBeenCalledWith(
|
|
|
|
|
'Warning: [antd: Descriptions] Sum of column `span` in a line exceeds `column` of Descriptions.',
|
|
|
|
|
);
|
|
|
|
|
});
|
2019-06-21 13:49:01 +08:00
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
});
|
2019-06-27 11:29:33 +08:00
|
|
|
|
|
|
|
|
|
it('vertical layout', () => {
|
|
|
|
|
// eslint-disable-next-line global-require
|
|
|
|
|
const wrapper = mount(
|
|
|
|
|
<Descriptions layout="vertical">
|
|
|
|
|
<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();
|
|
|
|
|
});
|
2019-06-28 21:55:15 +08:00
|
|
|
|
|
2019-06-26 16:05:46 +08:00
|
|
|
|
it('Descriptions.Item support className', () => {
|
|
|
|
|
const wrapper = mount(
|
|
|
|
|
<Descriptions>
|
|
|
|
|
<Descriptions.Item label="Product" className="my-class">
|
|
|
|
|
Cloud Database
|
|
|
|
|
</Descriptions.Item>
|
|
|
|
|
</Descriptions>,
|
|
|
|
|
);
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
|
});
|
2019-07-10 10:32:02 +08:00
|
|
|
|
|
|
|
|
|
it('Descriptions support colon', () => {
|
|
|
|
|
const wrapper = mount(
|
|
|
|
|
<Descriptions colon={false}>
|
|
|
|
|
<Descriptions.Item label="Product">Cloud Database</Descriptions.Item>
|
|
|
|
|
</Descriptions>,
|
|
|
|
|
);
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
|
});
|
2019-07-15 10:01:37 +08:00
|
|
|
|
|
2019-07-10 10:01:31 +08:00
|
|
|
|
it('Descriptions support style', () => {
|
|
|
|
|
const wrapper = mount(
|
|
|
|
|
<Descriptions style={{ backgroundColor: '#e8e8e8' }}>
|
|
|
|
|
<Descriptions.Item>Cloud Database</Descriptions.Item>
|
|
|
|
|
</Descriptions>,
|
|
|
|
|
);
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
|
});
|
2019-08-30 15:56:44 +08:00
|
|
|
|
|
|
|
|
|
it('keep key', () => {
|
|
|
|
|
const wrapper = mount(
|
|
|
|
|
<Descriptions>
|
|
|
|
|
<Descriptions.Item key="bamboo" />
|
|
|
|
|
</Descriptions>,
|
|
|
|
|
);
|
|
|
|
|
|
2019-09-03 17:18:03 +08:00
|
|
|
|
expect(wrapper.find('Col').key()).toBe('label-bamboo');
|
2019-08-30 15:56:44 +08:00
|
|
|
|
});
|
2019-11-30 18:10:56 +08:00
|
|
|
|
|
|
|
|
|
// https://github.com/ant-design/ant-design/issues/19887
|
|
|
|
|
it('should work with React Fragment', () => {
|
|
|
|
|
if (!React.Fragment) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
const wrapper = mount(
|
|
|
|
|
<Descriptions>
|
|
|
|
|
<Descriptions.Item label="bamboo">bamboo</Descriptions.Item>
|
|
|
|
|
<>
|
|
|
|
|
<Descriptions.Item label="bamboo">bamboo</Descriptions.Item>
|
|
|
|
|
<Descriptions.Item label="bamboo">bamboo</Descriptions.Item>
|
|
|
|
|
</>
|
|
|
|
|
</Descriptions>,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
|
|
|
});
|
2019-05-22 23:22:09 +08:00
|
|
|
|
});
|