我有我的react-router组件,例如:
<Switch>
<Route
path="/abc"
render={() => <ComponentTemplateABC component={containerABC} />}
/>
<Route
path="/def"
render={() => <ComponentTemplateDEF component={containerDEF} />}
/>
...
...
</Switch>
我希望测试路由,以确保为每个路由呈现相应的组件。但是,我不希望使用安装来测试路由,仅希望使用浅渲染。
下面是我的测试当前的样子:
test('abc path should route to containerABC component', () => {
const wrapper = shallow(
<Provider store={store}>
<MemoryRouter initialEntries={['/abc']}>
<Switch>
<AppRouter />
</Switch>
</MemoryRouter>
</Provider>,
);
jestExpect(wrapper.find(containerABC)).toHaveLength(1);
});
该测试不适用于浅表,因为浅表无法呈现完整的子层次结构。因此,我尝试了另一种方法:
test('abc path should render correct routes and route to containerABC component', () => {
const wrapper = shallow(<AppRouter />);
const pathMap = wrapper.find(Route).reduce((pathMap, route) => {
const routeProps = route.props();
pathMap[routeProps.path] = routeProps.component;
return pathMap;
}, {});
jestExpect(pathMap['/abc']).toBe(containerABC);
});
该测试对我不起作用,因为我在路由代码中使用了render而不是如下所示直接使用Component:
<Route path="..." **render**={() => <Component.. component={container..} />}
因此,我无法测试我的路线。如何使用浅层渲染或以上或基本上其他不使用mount的方法测试路线?
任何帮助将不胜感激。 预先谢谢你。
答案 0 :(得分:0)
到目前为止,我可能会建议您使用其他方法进行测试:
ComponentABC
+ mount()
import containerABC from '../../containerABC.js';
jest.mock('../../containerABC.js', () => <span id="containerABC" />);
...
const wrapper = mount(
<Provider store={store}>
<MemoryRouter initialEntries={['/abc']}>
<Switch>
<AppRouter />
</Switch>
</MemoryRouter>
</Provider>,
);
jestExpect(wrapper.find(containerABC)).toHaveLength(1);
shallow()
+ dive()
+ renderProp()
: const wrapper = shallow(
<Provider store={store}>
<MemoryRouter initialEntries={['/abc']}>
<Switch>
<AppRouter />
</Switch>
</MemoryRouter>
</Provider>,
);
jestExpect(wrapper.find(AppRouter)
.dive()
.find(Route)
.filter({path: '/abc'})
.renderProp('render', { history: mockedHistory})
.find(ContainerABC)
).toHaveLength(1);