mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
c0304cca55
* fix: Pagination should display middle size Select when ConfigProvider componentSize is large close #34744 * fix snapshot
85 lines
2.8 KiB
JavaScript
85 lines
2.8 KiB
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import Pagination from '..';
|
|
import Select from '../../select';
|
|
import ConfigProvider from '../../config-provider';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
|
|
describe('Pagination', () => {
|
|
mountTest(Pagination);
|
|
rtlTest(Pagination);
|
|
|
|
it('should pass disabled to prev and next buttons', () => {
|
|
const itemRender = (current, type, originalElement) => {
|
|
if (type === 'prev') {
|
|
return <button type="button">prev</button>;
|
|
}
|
|
if (type === 'next') {
|
|
return <button type="button">next</button>;
|
|
}
|
|
return originalElement;
|
|
};
|
|
const wrapper = mount(<Pagination defaultCurrent={1} total={50} itemRender={itemRender} />);
|
|
expect(wrapper.find('button').at(0).props().disabled).toBe(true);
|
|
});
|
|
|
|
it('should autometically be small when size is not specified', async () => {
|
|
const wrapper = mount(<Pagination responsive />);
|
|
expect(wrapper.find('ul').at(0).hasClass('mini')).toBe(true);
|
|
});
|
|
|
|
// https://github.com/ant-design/ant-design/issues/24913
|
|
// https://github.com/ant-design/ant-design/issues/24501
|
|
it('should onChange called when pageSize change', () => {
|
|
const onChange = jest.fn();
|
|
const onShowSizeChange = jest.fn();
|
|
const wrapper = mount(
|
|
<Pagination
|
|
defaultCurrent={1}
|
|
total={500}
|
|
onChange={onChange}
|
|
onShowSizeChange={onShowSizeChange}
|
|
/>,
|
|
);
|
|
wrapper.find('.ant-select-selector').simulate('mousedown');
|
|
expect(wrapper.find('.ant-select-item-option').length).toBe(4);
|
|
wrapper.find('.ant-select-item-option').at(1).simulate('click');
|
|
expect(onChange).toHaveBeenCalledWith(1, 20);
|
|
});
|
|
|
|
it('should support custom selectComponentClass', () => {
|
|
const CustomSelect = ({ className, ...props }) => (
|
|
<Select className={`${className} custom-select`} {...props} />
|
|
);
|
|
|
|
CustomSelect.Option = Select.Option;
|
|
|
|
const wrapper = mount(
|
|
<Pagination defaultCurrent={1} total={500} selectComponentClass={CustomSelect} />,
|
|
);
|
|
expect(wrapper.find('.custom-select').length).toBeTruthy();
|
|
});
|
|
|
|
describe('ConfigProvider', () => {
|
|
it('should be rendered correctly in RTL', () => {
|
|
const wrapper = mount(
|
|
<ConfigProvider direction="rtl">
|
|
<Pagination defaultCurrent={1} total={50} />
|
|
</ConfigProvider>,
|
|
);
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
});
|
|
|
|
it('should be rendered correctly when componentSize is large', () => {
|
|
const wrapper = mount(
|
|
<ConfigProvider componentSize="large">
|
|
<Pagination defaultCurrent={1} total={50} showSizeChanger />
|
|
</ConfigProvider>,
|
|
);
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
expect(wrapper.find('.ant-select-lg').length).toBe(0);
|
|
});
|
|
});
|
|
});
|