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.
115 lines
3.0 KiB
115 lines
3.0 KiB
import React from 'react';
|
|
import { mount, render } from 'enzyme';
|
|
import Breadcrumb from '../index';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
|
|
describe('Breadcrumb', () => {
|
|
mountTest(Breadcrumb);
|
|
|
|
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
afterEach(() => {
|
|
errorSpy.mockReset();
|
|
});
|
|
|
|
afterAll(() => {
|
|
errorSpy.mockRestore();
|
|
});
|
|
|
|
// https://github.com/airbnb/enzyme/issues/875
|
|
it('warns on non-Breadcrumb.Item and non-Breadcrumb.Separator children', () => {
|
|
const MyCom = () => <div>foo</div>;
|
|
mount(
|
|
<Breadcrumb>
|
|
<MyCom />
|
|
</Breadcrumb>,
|
|
);
|
|
expect(errorSpy.mock.calls).toHaveLength(1);
|
|
expect(errorSpy.mock.calls[0][0]).toMatch(
|
|
"Warning: [antd: Breadcrumb] Only accepts Breadcrumb.Item and Breadcrumb.Separator as it's children",
|
|
);
|
|
});
|
|
|
|
// https://github.com/ant-design/ant-design/issues/5015
|
|
it('should allow Breadcrumb.Item is null or undefined', () => {
|
|
const wrapper = render(
|
|
<Breadcrumb>
|
|
{null}
|
|
<Breadcrumb.Item>Home</Breadcrumb.Item>
|
|
{undefined}
|
|
</Breadcrumb>,
|
|
);
|
|
expect(errorSpy).not.toHaveBeenCalled();
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
// https://github.com/ant-design/ant-design/issues/5542
|
|
it('should not display Breadcrumb Item when its children is falsy', () => {
|
|
const wrapper = render(
|
|
<Breadcrumb>
|
|
<Breadcrumb.Item />
|
|
<Breadcrumb.Item>xxx</Breadcrumb.Item>
|
|
<Breadcrumb.Item>yyy</Breadcrumb.Item>
|
|
</Breadcrumb>,
|
|
);
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
// https://github.com/ant-design/ant-design/issues/18260
|
|
it('filter React.Fragment', () => {
|
|
const wrapper = render(
|
|
<Breadcrumb separator="">
|
|
<Breadcrumb.Item>Location</Breadcrumb.Item>
|
|
<Breadcrumb.Separator>:</Breadcrumb.Separator>
|
|
<>
|
|
<Breadcrumb.Item href="">Application Center</Breadcrumb.Item>
|
|
<Breadcrumb.Separator />
|
|
</>
|
|
</Breadcrumb>,
|
|
);
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it('should render a menu', () => {
|
|
const routes = [
|
|
{
|
|
path: 'index',
|
|
breadcrumbName: 'home',
|
|
},
|
|
{
|
|
path: 'first',
|
|
breadcrumbName: 'first',
|
|
children: [
|
|
{
|
|
path: '/general',
|
|
breadcrumbName: 'General',
|
|
},
|
|
{
|
|
path: '/layout',
|
|
breadcrumbName: 'Layout',
|
|
},
|
|
{
|
|
path: '/navigation',
|
|
breadcrumbName: 'Navigation',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
path: 'second',
|
|
breadcrumbName: 'second',
|
|
},
|
|
];
|
|
const wrapper = render(<Breadcrumb routes={routes} />);
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it('should support custom attribute', () => {
|
|
const wrapper = render(
|
|
<Breadcrumb data-custom="custom">
|
|
<Breadcrumb.Item data-custom="custom-item">xxx</Breadcrumb.Item>
|
|
<Breadcrumb.Item>yyy</Breadcrumb.Item>
|
|
</Breadcrumb>,
|
|
);
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|
|
|