2017-01-27 17:08:05 +08:00
|
|
|
import React from 'react';
|
2017-02-23 13:43:50 +08:00
|
|
|
import { mount, render } from 'enzyme';
|
|
|
|
import Breadcrumb from '../index';
|
2017-01-27 17:08:05 +08:00
|
|
|
|
|
|
|
describe('Breadcrumb', () => {
|
2017-03-17 18:56:30 +08:00
|
|
|
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
errorSpy.mockReset();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
errorSpy.mockRestore();
|
|
|
|
});
|
|
|
|
|
2017-04-09 03:36:03 +08:00
|
|
|
// https://github.com/airbnb/enzyme/issues/875
|
2017-08-23 16:29:56 +08:00
|
|
|
it('warns on non-Breadcrumb.Item children', () => {
|
2017-01-27 17:08:05 +08:00
|
|
|
const MyCom = () => <div>foo</div>;
|
|
|
|
mount(
|
|
|
|
<Breadcrumb>
|
|
|
|
<MyCom />
|
2018-12-07 16:17:45 +08:00
|
|
|
</Breadcrumb>,
|
2017-01-27 17:08:05 +08:00
|
|
|
);
|
2017-03-17 18:56:30 +08:00
|
|
|
expect(errorSpy.mock.calls).toHaveLength(1);
|
|
|
|
expect(errorSpy.mock.calls[0][0]).toMatch(
|
2019-02-27 15:32:29 +08:00
|
|
|
"Warning: [antd: Breadcrumb] Only accepts Breadcrumb.Item as it's children",
|
2017-01-27 17:08:05 +08:00
|
|
|
);
|
|
|
|
});
|
2017-02-23 13:43:50 +08:00
|
|
|
|
|
|
|
// 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}
|
2018-12-07 16:17:45 +08:00
|
|
|
</Breadcrumb>,
|
2017-02-23 13:43:50 +08:00
|
|
|
);
|
2017-03-17 18:56:30 +08:00
|
|
|
expect(errorSpy).not.toHaveBeenCalled();
|
2017-04-02 18:09:23 +08:00
|
|
|
expect(wrapper).toMatchSnapshot();
|
2017-02-23 13:43:50 +08:00
|
|
|
});
|
2017-03-29 15:13:20 +08:00
|
|
|
|
|
|
|
// 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>
|
2018-12-07 16:17:45 +08:00
|
|
|
</Breadcrumb>,
|
2017-03-29 15:13:20 +08:00
|
|
|
);
|
2017-04-02 18:09:23 +08:00
|
|
|
expect(wrapper).toMatchSnapshot();
|
2017-03-29 15:13:20 +08:00
|
|
|
});
|
2019-04-28 20:08:29 +08:00
|
|
|
|
|
|
|
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();
|
|
|
|
});
|
2017-01-27 17:08:05 +08:00
|
|
|
});
|