mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
3f495bb56d
* chore: upgrade react-router to v6 close #32809 close #32774 * fix test * fix test * fix test * fix test
150 lines
4.0 KiB
JavaScript
150 lines
4.0 KiB
JavaScript
import React from 'react';
|
||
import { Route, Routes, Link, useLocation, useNavigate, MemoryRouter } from 'react-router-dom';
|
||
import { mount } from 'enzyme';
|
||
import Breadcrumb from '../index';
|
||
|
||
const Apps = () => (
|
||
<ul className="app-list">
|
||
<li>
|
||
<Link to="/apps/1">Application1</Link>:<Link to="/apps/1/detail">Detail</Link>
|
||
</li>
|
||
<li>
|
||
<Link to="/apps/2">Application2</Link>:<Link to="/apps/2/detail">Detail</Link>
|
||
</li>
|
||
</ul>
|
||
);
|
||
|
||
const breadcrumbNameMap = {
|
||
'/apps': 'Application List',
|
||
'/apps/1': 'Application1',
|
||
'/apps/2': 'Application2',
|
||
'/apps/1/detail': 'Detail',
|
||
'/apps/2/detail': 'Detail',
|
||
};
|
||
|
||
describe('react router', () => {
|
||
beforeAll(() => {
|
||
jest.useFakeTimers();
|
||
});
|
||
|
||
afterAll(() => {
|
||
jest.useRealTimers();
|
||
});
|
||
|
||
// https://github.com/airbnb/enzyme/issues/875
|
||
it('react router 6', () => {
|
||
const Home = () => {
|
||
const location = useLocation();
|
||
const navigate = useNavigate();
|
||
const pathSnippets = location.pathname.split('/').filter(i => i);
|
||
const extraBreadcrumbItems = pathSnippets.map((_, index) => {
|
||
const url = `/${pathSnippets.slice(0, index + 1).join('/')}`;
|
||
return (
|
||
<Breadcrumb.Item key={url}>
|
||
<Link to={url}>{breadcrumbNameMap[url]}</Link>
|
||
</Breadcrumb.Item>
|
||
);
|
||
});
|
||
const breadcrumbItems = [
|
||
<Breadcrumb.Item key="home">
|
||
<Link to="/">Home</Link>
|
||
</Breadcrumb.Item>,
|
||
].concat(extraBreadcrumbItems);
|
||
return (
|
||
<div className="demo">
|
||
<div className="demo-nav">
|
||
<a onClick={() => navigate('/')}>Home</a>
|
||
<a onClick={() => navigate('/apps')}>Application List</a>
|
||
</div>
|
||
<Routes>
|
||
<Route path="/apps" component={Apps} />
|
||
<Route render={() => <span>Home Page</span>} />
|
||
</Routes>
|
||
<Breadcrumb>{breadcrumbItems}</Breadcrumb>
|
||
</div>
|
||
);
|
||
};
|
||
const wrapper = mount(
|
||
<MemoryRouter initialEntries={['/']} initialIndex={0}>
|
||
<Home />
|
||
</MemoryRouter>,
|
||
);
|
||
expect(wrapper.find('BreadcrumbItem').length).toBe(1);
|
||
expect(wrapper.find('BreadcrumbItem .ant-breadcrumb-link').at(0).text()).toBe('Home');
|
||
wrapper.find('.demo-nav a').at(1).simulate('click');
|
||
expect(wrapper.find('BreadcrumbItem').length).toBe(2);
|
||
expect(wrapper.find('BreadcrumbItem .ant-breadcrumb-link').at(1).text()).toBe(
|
||
'Application List',
|
||
);
|
||
});
|
||
|
||
it('react router 3', () => {
|
||
const routes = [
|
||
{
|
||
name: 'home',
|
||
breadcrumbName: 'Home',
|
||
path: '/',
|
||
childRoutes: [
|
||
{
|
||
name: 'apps',
|
||
breadcrumbName: 'Application List',
|
||
path: 'apps',
|
||
childRoutes: [
|
||
{
|
||
name: 'app',
|
||
breadcrumbName: 'Application:id',
|
||
path: ':id',
|
||
childRoutes: [
|
||
{
|
||
name: 'detail',
|
||
breadcrumbName: 'Detail',
|
||
path: 'detail',
|
||
},
|
||
],
|
||
},
|
||
],
|
||
},
|
||
],
|
||
},
|
||
{
|
||
name: 'apps',
|
||
breadcrumbName: 'Application List',
|
||
path: 'apps',
|
||
childRoutes: [
|
||
{
|
||
name: 'app',
|
||
breadcrumbName: 'Application:id',
|
||
path: ':id',
|
||
childRoutes: [
|
||
{
|
||
name: 'detail',
|
||
breadcrumbName: 'Detail',
|
||
path: 'detail',
|
||
},
|
||
],
|
||
},
|
||
],
|
||
},
|
||
{
|
||
name: 'app',
|
||
breadcrumbName: 'Application:id',
|
||
path: ':id',
|
||
childRoutes: [
|
||
{
|
||
name: 'detail',
|
||
breadcrumbName: 'Detail',
|
||
path: 'detail',
|
||
},
|
||
],
|
||
},
|
||
{
|
||
name: 'detail',
|
||
breadcrumbName: 'Detail',
|
||
path: 'detail',
|
||
},
|
||
];
|
||
const wrapper = mount(<Breadcrumb routes={routes} params={{ id: 1 }} />);
|
||
expect(wrapper).toMatchSnapshot();
|
||
});
|
||
});
|