2016-12-14 14:48:09 +08:00
|
|
|
import React from 'react';
|
2019-11-15 14:35:25 +08:00
|
|
|
import { mount } from 'enzyme';
|
2016-12-14 15:38:26 +08:00
|
|
|
import Table 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';
|
2020-03-30 15:45:14 +08:00
|
|
|
import { sleep } from '../../../tests/utils';
|
2016-12-14 14:48:09 +08:00
|
|
|
|
|
|
|
const { Column, ColumnGroup } = Table;
|
|
|
|
|
|
|
|
describe('Table', () => {
|
2019-08-26 22:53:20 +08:00
|
|
|
mountTest(Table);
|
2020-01-02 19:10:16 +08:00
|
|
|
rtlTest(Table);
|
2019-08-26 22:53:20 +08:00
|
|
|
|
2019-01-08 20:52:31 +08:00
|
|
|
const warnSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
warnSpy.mockRestore();
|
|
|
|
});
|
|
|
|
|
2016-12-14 14:48:09 +08:00
|
|
|
it('renders JSX correctly', () => {
|
2018-12-07 16:17:45 +08:00
|
|
|
const data = [
|
|
|
|
{
|
|
|
|
key: '1',
|
|
|
|
firstName: 'John',
|
|
|
|
lastName: 'Brown',
|
|
|
|
age: 32,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: '2',
|
|
|
|
firstName: 'Jim',
|
|
|
|
lastName: 'Green',
|
|
|
|
age: 42,
|
|
|
|
},
|
|
|
|
];
|
2016-12-14 14:48:09 +08:00
|
|
|
|
2019-11-15 14:35:25 +08:00
|
|
|
const wrapper = mount(
|
2016-12-14 14:48:09 +08:00
|
|
|
<Table dataSource={data} pagination={false}>
|
|
|
|
<ColumnGroup title="Name">
|
2018-12-07 16:17:45 +08:00
|
|
|
<Column title="First Name" dataIndex="firstName" key="firstName" />
|
|
|
|
<Column title="Last Name" dataIndex="lastName" key="lastName" />
|
2016-12-14 14:48:09 +08:00
|
|
|
</ColumnGroup>
|
2018-12-07 16:17:45 +08:00
|
|
|
<Column title="Age" dataIndex="age" key="age" />
|
2019-10-06 07:17:52 +08:00
|
|
|
{/* eslint-disable-next-line react/jsx-curly-brace-presence */}
|
2019-09-28 16:20:19 +08:00
|
|
|
{'invalid child'}
|
2018-12-07 16:17:45 +08:00
|
|
|
</Table>,
|
2016-12-14 14:48:09 +08:00
|
|
|
);
|
|
|
|
|
2019-11-15 14:35:25 +08:00
|
|
|
expect(wrapper.render()).toMatchSnapshot();
|
2016-12-14 14:48:09 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it('updates columns when receiving props', () => {
|
2018-12-07 16:17:45 +08:00
|
|
|
const columns = [
|
|
|
|
{
|
|
|
|
title: 'Name',
|
|
|
|
key: 'name',
|
|
|
|
dataIndex: 'name',
|
|
|
|
},
|
|
|
|
];
|
2019-11-15 14:35:25 +08:00
|
|
|
const wrapper = mount(<Table columns={columns} />);
|
2018-12-07 16:17:45 +08:00
|
|
|
const newColumns = [
|
|
|
|
{
|
|
|
|
title: 'Title',
|
|
|
|
key: 'title',
|
|
|
|
dataIndex: 'title',
|
|
|
|
},
|
|
|
|
];
|
2016-12-14 14:48:09 +08:00
|
|
|
wrapper.setProps({ columns: newColumns });
|
|
|
|
|
2019-11-15 14:35:25 +08:00
|
|
|
expect(wrapper.find('th').text()).toEqual('Title');
|
2016-12-14 14:48:09 +08:00
|
|
|
});
|
2017-02-13 15:48:08 +08:00
|
|
|
|
|
|
|
it('loading with Spin', async () => {
|
|
|
|
const loading = {
|
|
|
|
spinning: false,
|
|
|
|
delay: 500,
|
|
|
|
};
|
|
|
|
const wrapper = mount(<Table loading={loading} />);
|
|
|
|
expect(wrapper.find('.ant-spin')).toHaveLength(0);
|
2019-11-15 14:35:25 +08:00
|
|
|
expect(
|
|
|
|
wrapper
|
|
|
|
.find('.ant-table-placeholder')
|
|
|
|
.hostNodes()
|
|
|
|
.text(),
|
|
|
|
).not.toEqual('');
|
2017-02-13 15:48:08 +08:00
|
|
|
|
|
|
|
loading.spinning = true;
|
|
|
|
wrapper.setProps({ loading });
|
|
|
|
expect(wrapper.find('.ant-spin')).toHaveLength(0);
|
2020-03-30 15:45:14 +08:00
|
|
|
await sleep(500);
|
|
|
|
wrapper.update();
|
|
|
|
expect(wrapper.find('.ant-spin')).toHaveLength(1);
|
|
|
|
});
|
2017-02-13 15:48:08 +08:00
|
|
|
|
2020-03-30 15:45:14 +08:00
|
|
|
// https://github.com/ant-design/ant-design/issues/22733
|
|
|
|
it('support loading tip', async () => {
|
|
|
|
const wrapper = mount(<Table loading={{ tip: 'loading...' }} />);
|
|
|
|
await sleep(500);
|
2017-09-20 16:26:18 +08:00
|
|
|
wrapper.update();
|
2017-02-13 15:48:08 +08:00
|
|
|
expect(wrapper.find('.ant-spin')).toHaveLength(1);
|
|
|
|
});
|
2018-07-12 16:39:46 +08:00
|
|
|
|
|
|
|
it('renders custom components correctly when it changes', () => {
|
|
|
|
const BodyWrapper1 = props => <tbody id="wrapper1" {...props} />;
|
|
|
|
const BodyWrapper2 = props => <tbody id="wrapper2" {...props} />;
|
|
|
|
const wrapper = mount(<Table components={{ body: { wrapper: BodyWrapper1 } }} />);
|
|
|
|
wrapper.setProps({ components: { body: { wrapper: BodyWrapper2 } } });
|
|
|
|
expect(wrapper.find('tbody').props().id).toBe('wrapper2');
|
|
|
|
});
|
2019-01-08 20:52:31 +08:00
|
|
|
|
2019-07-09 11:46:21 +08:00
|
|
|
it('props#columnsPageRange and props#columnsPageSize do not warn anymore', () => {
|
|
|
|
const data = [
|
|
|
|
{
|
|
|
|
key: '1',
|
|
|
|
age: 32,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: '2',
|
|
|
|
age: 42,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
|
|
|
|
const columnsPageRange = jest.fn();
|
|
|
|
const columnsPageSize = jest.fn();
|
|
|
|
mount(
|
|
|
|
<Table
|
|
|
|
dataSource={data}
|
|
|
|
rowkey="key"
|
|
|
|
columnsPageRange={columnsPageRange}
|
|
|
|
columnsPageSize={columnsPageSize}
|
|
|
|
>
|
|
|
|
<Column title="Age" dataIndex="age" key="age" />
|
|
|
|
</Table>,
|
|
|
|
);
|
|
|
|
|
2019-08-13 14:07:17 +08:00
|
|
|
expect(errorSpy).not.toHaveBeenCalledWith(
|
2019-07-09 11:46:21 +08:00
|
|
|
'`columnsPageRange` and `columnsPageSize` are removed, please use fixed columns instead, see: https://u.ant.design/fixed-columns.',
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(columnsPageRange).not.toHaveBeenCalled();
|
|
|
|
expect(columnsPageSize).not.toHaveBeenCalled();
|
|
|
|
});
|
2019-08-29 23:41:46 +08:00
|
|
|
|
2019-08-27 17:11:00 +08:00
|
|
|
it('support onHeaderCell', () => {
|
|
|
|
const onClick = jest.fn();
|
2019-08-29 23:41:46 +08:00
|
|
|
const wrapper = mount(
|
|
|
|
<Table columns={[{ title: 'title', onHeaderCell: () => ({ onClick }) }]} />,
|
|
|
|
);
|
2019-08-27 17:11:00 +08:00
|
|
|
wrapper.find('th').simulate('click');
|
|
|
|
expect(onClick).toHaveBeenCalled();
|
|
|
|
});
|
2020-01-06 20:28:47 +08:00
|
|
|
|
|
|
|
it('should not crash when column children is empty', () => {
|
|
|
|
mount(
|
|
|
|
<Table
|
|
|
|
columns={[
|
|
|
|
{
|
|
|
|
dataIndex: 'name',
|
|
|
|
children: undefined,
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
dataSource={[]}
|
|
|
|
/>,
|
|
|
|
);
|
|
|
|
});
|
2020-03-30 15:45:14 +08:00
|
|
|
|
|
|
|
it('prevent touch event', () => {
|
|
|
|
const wrapper = mount(
|
|
|
|
<Table
|
|
|
|
columns={[
|
|
|
|
{
|
|
|
|
dataIndex: 'name',
|
|
|
|
children: undefined,
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
dataSource={[]}
|
|
|
|
/>,
|
|
|
|
);
|
|
|
|
wrapper.simulate('touchmove');
|
|
|
|
});
|
2016-12-14 14:48:09 +08:00
|
|
|
});
|