You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

144 lines
3.8 KiB

import React from 'react';
import { mount } from 'enzyme';
import Table from '..';
import mountTest from '../../../tests/shared/mountTest';
const { Column, ColumnGroup } = Table;
describe('Table', () => {
mountTest(Table);
const warnSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
afterAll(() => {
warnSpy.mockRestore();
});
it('renders JSX correctly', () => {
6 years ago
const data = [
{
key: '1',
firstName: 'John',
lastName: 'Brown',
age: 32,
},
{
key: '2',
firstName: 'Jim',
lastName: 'Green',
age: 42,
},
];
const wrapper = mount(
<Table dataSource={data} pagination={false}>
<ColumnGroup title="Name">
6 years ago
<Column title="First Name" dataIndex="firstName" key="firstName" />
<Column title="Last Name" dataIndex="lastName" key="lastName" />
</ColumnGroup>
6 years ago
<Column title="Age" dataIndex="age" key="age" />
5 years ago
{/* eslint-disable-next-line react/jsx-curly-brace-presence */}
{'invalid child'}
6 years ago
</Table>,
);
expect(wrapper.render()).toMatchSnapshot();
});
it('updates columns when receiving props', () => {
6 years ago
const columns = [
{
title: 'Name',
key: 'name',
dataIndex: 'name',
},
];
const wrapper = mount(<Table columns={columns} />);
6 years ago
const newColumns = [
{
title: 'Title',
key: 'title',
dataIndex: 'title',
},
];
wrapper.setProps({ columns: newColumns });
expect(wrapper.find('th').text()).toEqual('Title');
});
it('loading with Spin', async () => {
const loading = {
spinning: false,
delay: 500,
};
const wrapper = mount(<Table loading={loading} />);
expect(wrapper.find('.ant-spin')).toHaveLength(0);
expect(
wrapper
.find('.ant-table-placeholder')
.hostNodes()
.text(),
).not.toEqual('');
loading.spinning = true;
wrapper.setProps({ loading });
expect(wrapper.find('.ant-spin')).toHaveLength(0);
await new Promise(resolve => setTimeout(resolve, 500));
wrapper.update();
expect(wrapper.find('.ant-spin')).toHaveLength(1);
});
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');
});
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>,
);
use ant design icons 4.0 (#18217) * feat: use @ant-design/icons@4.0 * feat: use createFromIconfontCN to make site works * feat: update doc for Icon * feat: use icon in component Alert * feat: use icon in component Avatar * feat: use icon in component Breadcrumb * feat: use icon in component Button * feat: use icon in component Cascader * feat: use icon in component Collapse * feat: use icon in component Datepicker * feat: use icon in component Dropdown * feat: use icon in component Form * feat: use icon in component Input * feat: use icon in component InputNumber * feat: use icon in component Layout * feat: use icon in component Mention * feat: use icon in component Message * feat: use icon in component Modal * feat: use icon in component Notification * feat: use icon in component PageHeader * feat: use icon in component Pagination * feat: use icon in component Popconfirm * feat: use icon in component Progress * feat: use icon in component Rate * feat: use icon in component Result * feat: use icon in component Select * feat: use icon in component Step * feat: use icon in component Switch * feat: use icon in component Table * feat: use icon in component Tab * feat: use icon in component Tag * feat: handle rest component which using Icon * fix: remove unused vars * feat: use latest alpha ant design icons * fix: failed test in uploadlist.test.js * test: update snapshot for icons * doc: add Icon for site * doc: use @ant-design/icons in site * chore: use latest icons * fix: tslint issue * fix: test cases * fix: types for react * fix: lint rules for import orders * fix: use @ant-design/icons@4.0.0-alpha.5 to avoid insert css in server render * fix: eslint error in demo/**.md * inject antd icons * update snapshot * fix site * doc: update docs * fix: code snippets icon in site * feat: use latest @ant-design/icons * fix: icon props in message
5 years ago
expect(errorSpy).not.toHaveBeenCalledWith(
'`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();
});
5 years ago
it('support onHeaderCell', () => {
const onClick = jest.fn();
5 years ago
const wrapper = mount(
<Table columns={[{ title: 'title', onHeaderCell: () => ({ onClick }) }]} />,
);
wrapper.find('th').simulate('click');
expect(onClick).toHaveBeenCalled();
});
});