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.
160 lines
5.0 KiB
160 lines
5.0 KiB
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import PageHeader from '..';
|
|
import Breadcrumb from '../../breadcrumb';
|
|
import ConfigProvider from '../../config-provider';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
|
|
describe('PageHeader', () => {
|
|
mountTest(PageHeader);
|
|
rtlTest(PageHeader);
|
|
|
|
const mockGetBoundingClientRect = jest.spyOn(HTMLElement.prototype, 'getBoundingClientRect');
|
|
|
|
beforeAll(() => {
|
|
mockGetBoundingClientRect.mockReturnValue({ width: 100 });
|
|
});
|
|
|
|
afterAll(() => {
|
|
mockGetBoundingClientRect.mockRestore();
|
|
});
|
|
|
|
it('pageHeader should not contain back it back', () => {
|
|
const routes = [
|
|
{
|
|
path: 'index',
|
|
breadcrumbName: 'First-level Menu',
|
|
},
|
|
{
|
|
path: 'first',
|
|
breadcrumbName: 'Second-level Menu',
|
|
},
|
|
{
|
|
path: 'second',
|
|
breadcrumbName: 'Third-level Menu',
|
|
},
|
|
];
|
|
const wrapper = mount(<PageHeader title="Page Title" breadcrumb={{ routes }} />);
|
|
expect(wrapper.find('.ant-page-header-back')).toHaveLength(0);
|
|
});
|
|
|
|
it('pageHeader should have breadcrumb', () => {
|
|
const routes = [
|
|
{
|
|
path: 'index',
|
|
breadcrumbName: 'First-level Menu',
|
|
},
|
|
];
|
|
const wrapper = mount(<PageHeader title="Page Title" breadcrumb={{ routes }} />);
|
|
expect(wrapper.find('.ant-breadcrumb')).toHaveLength(1);
|
|
expect(wrapper.find('.ant-page-header-back')).toHaveLength(0);
|
|
});
|
|
|
|
it('pageHeader should have breadcrumb (component)', () => {
|
|
const routes = [
|
|
{
|
|
path: 'index',
|
|
breadcrumbName: 'First-level Menu',
|
|
},
|
|
];
|
|
const wrapper = mount(
|
|
<PageHeader title="Page Title" breadcrumb={<Breadcrumb routes={routes} />} />,
|
|
);
|
|
expect(wrapper.find('.ant-breadcrumb')).toHaveLength(1);
|
|
expect(wrapper.find('.ant-page-header-back')).toHaveLength(0);
|
|
});
|
|
|
|
it('pageHeader support breadcrumbRender', () => {
|
|
const wrapper = mount(
|
|
<PageHeader title="Page Title" breadcrumbRender={() => <div id="test">test</div>} />,
|
|
);
|
|
expect(wrapper.find('#test')).toHaveLength(1);
|
|
expect(wrapper.find('.ant-page-header-back')).toHaveLength(0);
|
|
});
|
|
|
|
it('pageHeader support breadcrumbRender return false', () => {
|
|
const wrapper = mount(<PageHeader title="Page Title" breadcrumbRender={() => false} />);
|
|
expect(wrapper.find('.ant-page-header-back')).toHaveLength(0);
|
|
});
|
|
|
|
it('pageHeader do not has title', () => {
|
|
const routes = [
|
|
{
|
|
path: 'index',
|
|
breadcrumbName: 'First-level Menu',
|
|
},
|
|
];
|
|
const wrapper = mount(<PageHeader breadcrumb={{ routes }}>test</PageHeader>);
|
|
expect(wrapper.find('.ant-page-header-heading-lef').exists()).toBeFalsy();
|
|
expect(wrapper.find('.ant-page-header-heading').exists()).toBeFalsy();
|
|
});
|
|
|
|
it('pageHeader should no contain back', () => {
|
|
const wrapper = mount(<PageHeader title="Page Title" backIcon={false} />);
|
|
expect(wrapper.find('.ant-page-header-back')).toHaveLength(0);
|
|
});
|
|
|
|
it('pageHeader should contain back it back', () => {
|
|
const callback = jest.fn(() => true);
|
|
const wrapper = mount(<PageHeader title="Page Title" onBack={callback} />);
|
|
expect(wrapper.find('.ant-page-header-back')).toHaveLength(1);
|
|
});
|
|
|
|
it('pageHeader onBack transfer', () => {
|
|
const callback = jest.fn(() => true);
|
|
const wrapper = mount(<PageHeader title="Page Title" onBack={callback} />);
|
|
wrapper.find('div.ant-page-header-back-button').simulate('click');
|
|
expect(callback).toHaveBeenCalled();
|
|
});
|
|
|
|
it('pageHeader should support className', () => {
|
|
const wrapper = mount(<PageHeader title="Page Title" className="not-works" backIcon={false} />);
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
});
|
|
|
|
it('pageHeader should not render blank dom', () => {
|
|
const wrapper = mount(<PageHeader title={false} />);
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
});
|
|
|
|
it('breadcrumbs and back icon can coexist', () => {
|
|
const routes = [
|
|
{
|
|
path: 'index',
|
|
breadcrumbName: 'First-level Menu',
|
|
},
|
|
{
|
|
path: 'first',
|
|
breadcrumbName: 'Second-level Menu',
|
|
},
|
|
{
|
|
path: 'second',
|
|
breadcrumbName: 'Third-level Menu',
|
|
},
|
|
];
|
|
const wrapper = mount(<PageHeader title="Title" breadcrumb={{ routes }} />);
|
|
expect(wrapper.find('.ant-breadcrumb')).toHaveLength(1);
|
|
|
|
wrapper.setProps({ onBack: () => {} });
|
|
expect(wrapper.find('.ant-breadcrumb')).toHaveLength(1);
|
|
});
|
|
|
|
it('pageHeader should render correctly int RTL direction', () => {
|
|
const wrapper = mount(
|
|
<ConfigProvider direction="rtl">
|
|
<PageHeader title="Page Title" />
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
});
|
|
|
|
it('change container width', async () => {
|
|
const wrapper = mount(<PageHeader title="Page Title" extra="extra" />);
|
|
wrapper.triggerResize();
|
|
await Promise.resolve();
|
|
wrapper.update();
|
|
expect(wrapper.find('.ant-page-header').hasClass('ant-page-header-compact')).toBeTruthy();
|
|
});
|
|
});
|
|
|