mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
c34caad24c
* test: js => ts * test: add test * fix: fix eslint error * test: add test case * fix: fix test error * fix: fix eslint error * fix: fix eslint error * fix: eslint error fix * fix: fallback eslint config & add test case * test: add all test case * fix: bugfix * fix: bugFix * fix: bugFix * fix: bugFix * fix: lint * fix: add React.createRef * fix: add breadcrumbName in Routes * fix: any commit for restart ci/cd * fix: remove type * fix: test fix * fix: test fix * fix: add ts-ignore for id * test: add Icon test case * test: remove ts-ignore * test: add Icon test case
131 lines
3.6 KiB
TypeScript
131 lines
3.6 KiB
TypeScript
/* eslint-disable react/no-multi-comp */
|
|
import React from 'react';
|
|
import Table from '..';
|
|
import { fireEvent, render } from '../../../tests/utils';
|
|
|
|
const columns = [
|
|
{
|
|
title: 'Name',
|
|
key: 'name',
|
|
dataIndex: 'name',
|
|
},
|
|
];
|
|
|
|
const John = {
|
|
key: '1',
|
|
firstName: 'John',
|
|
lastName: 'Brown',
|
|
age: 32,
|
|
};
|
|
|
|
const Jim = {
|
|
key: '2',
|
|
firstName: 'Jim',
|
|
lastName: 'Green',
|
|
age: 42,
|
|
};
|
|
|
|
const data = [
|
|
{
|
|
...John,
|
|
|
|
children: [
|
|
{
|
|
...Jim,
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
describe('Table.expand', () => {
|
|
it('click to expand', () => {
|
|
const { container, asFragment } = render(<Table columns={columns} dataSource={data} />);
|
|
fireEvent.click(container.querySelector('.ant-table-row-expand-icon')!);
|
|
expect(asFragment().firstChild).toMatchSnapshot();
|
|
});
|
|
|
|
it('expandRowByClick should not block click icon', () => {
|
|
const { container } = render(
|
|
<Table
|
|
columns={columns}
|
|
dataSource={[John, Jim]}
|
|
expandable={{
|
|
expandRowByClick: true,
|
|
expandedRowRender: () => '',
|
|
}}
|
|
/>,
|
|
);
|
|
fireEvent.click(container.querySelector('.ant-table-row-expand-icon')!);
|
|
expect(container.querySelector('.ant-table-row-expand-icon-expanded')).toBeTruthy();
|
|
|
|
fireEvent.click(container.querySelector('.ant-table-row-expand-icon')!);
|
|
expect(container.querySelector('.ant-table-row-expand-icon-collapsed')).toBeTruthy();
|
|
});
|
|
|
|
it('show expandIcon', () => {
|
|
const { container } = render(
|
|
<Table
|
|
columns={[{ dataIndex: 'key' }]}
|
|
dataSource={[{ key: 233 }]}
|
|
expandable={{
|
|
expandIcon: () => <div className="expand-icon" />,
|
|
}}
|
|
/>,
|
|
);
|
|
expect(container.querySelectorAll('.expand-icon')).toHaveLength(1);
|
|
});
|
|
|
|
it('row indent padding should be 0px when indentSize defined as 0', () => {
|
|
const { container } = render(<Table indentSize={0} columns={columns} dataSource={data} />);
|
|
|
|
fireEvent.click(container.querySelector('.ant-table-row-expand-icon')!);
|
|
expect(container.querySelector<HTMLElement>('.indent-level-1')?.style.paddingLeft).toEqual(
|
|
'0px',
|
|
);
|
|
});
|
|
|
|
it('has right aria-expanded state', () => {
|
|
const { container } = render(<Table columns={columns} dataSource={data} />);
|
|
expect(container.querySelector('[aria-expanded=false]')).toBeTruthy();
|
|
fireEvent.click(container.querySelector('.ant-table-row-expand-icon')!);
|
|
expect(container.querySelector('[aria-expanded=true]')).toBeTruthy();
|
|
});
|
|
|
|
describe('expandIconColumnIndex', () => {
|
|
it('basic', () => {
|
|
const { container } = render(
|
|
<Table
|
|
columns={[{ dataIndex: 'key' }]}
|
|
dataSource={[{ key: 'bamboo' }]}
|
|
expandable={{
|
|
expandIconColumnIndex: 1,
|
|
expandedRowRender: () => '',
|
|
}}
|
|
/>,
|
|
);
|
|
|
|
const tdNodeList = container.querySelectorAll('td');
|
|
expect(tdNodeList[0].textContent).toEqual('bamboo');
|
|
expect(tdNodeList[1].querySelector('.ant-table-row-expand-icon')).toBeTruthy();
|
|
});
|
|
|
|
it('work with selection', () => {
|
|
const { container } = render(
|
|
<Table
|
|
columns={[{ dataIndex: 'key' }]}
|
|
dataSource={[{ key: 'bamboo' }]}
|
|
expandable={{
|
|
expandIconColumnIndex: 2,
|
|
expandedRowRender: () => '',
|
|
}}
|
|
rowSelection={{}}
|
|
/>,
|
|
);
|
|
const tdNodeList = container.querySelectorAll('td');
|
|
expect(tdNodeList[0].querySelector('.ant-checkbox-input')).toBeTruthy();
|
|
expect(tdNodeList[1].textContent).toEqual('bamboo');
|
|
expect(tdNodeList[2].querySelector('.ant-table-row-expand-icon')).toBeTruthy();
|
|
});
|
|
});
|
|
});
|