我正在尝试为我的component App.js
设置测试,将context
作为道具并返回提供程序。问题是当我尝试测试它时,我传递到它的上下文总是解析为未定义。
和创建组件(应该以参数形式接收上下文(之间放置了一个控制台日志。由于某种原因,这导致了控制台.log首先在组件中。这可能就是为什么我得到的上下文是未定义的,因为它尚未初始化。
// Component/Provider
const App = (props) => {
const {children, context} = props;
const {data, dispatch} = useReducer(reducer);
console.log(context); //undefined and this console.log runs first
return <context.Provider value={useCallback(dispatch)}>{children}</context.Provider>
}
在我的测试中.js
import React, {useContext} from 'react';
import {render} from 'react-testing-library';
import {App} from './App';
const context = React.createContext();
function Provider(children) {
console.log(context); //Is correct but runs second
return <App Context={context}>{children}</App>;
}
const customRender = (ui, options) =>
render(ui, { wrapper: Provider, ...options });
const Consumer = () => {
const dispatch = useContext(context);
returns <Button onClick={dispatch({type: 'Do something'})}>Whatever</Button/>;
}
customRender(<Consumer />)
我应该能够将Context
传递到我的组件中以创建提供程序,但它始终未定义。
了解如何继续之前,我被困了一会儿。我的问题是我没有为上下文设置正确的形状:我给了它一些道具,但没有在我的真实上下文中传递的道具。因此,组件无法浏览该新形状。
这是我的产品形状(非测试(
export default React.createContext({
authenticationInfos: {
isAuthenticated: false,
user: {
id: "",
email: "",
roles: []
},
customer: {
id: "",
prenom: "",
nom: "",
tel: "",
adress: "",
postalCode: "",
town: "",
sellRequests: []
}
},
setAuthenticationInfos: value => {}
});
我只是传递了 authenticationInfos 内部的内容,而不是 prop authenticationInfos 本身,我也忘记了 setAuthenticationInfos 属性。
这是我与上下文钩子一起使用的测试组件:
反应测试库文档中的函数
const customRender = (ui, { providerProps, ...renderOptions }) => {
return render(
<AuthContext.Provider value={providerProps}>{ui}</AuthContext.Provider>,
renderOptions
);
};
describe("<ConnectModal>", () => {
test("should be able to access auth context", () => {
const providerProps = {
authenticationInfos: {
isAuthenticated: false,
user: {
id: "",
email: "",
roles: [],
},
customer: {
id: "",
prenom: "",
nom: "",
tel: "",
adress: "",
postalCode: "",
town: "",
sellRequests: [],
},
shop: {
appToken: 54,
},
},
setAuthenticationInfos: (value) => {},
};
customRender(<MKMConnectModal />, { providerProps });
// expect(screen.getByText(/^My Name Is:/)).toHaveTextContent(
// "My Name Is: C3P0"
// );
});
});
也许这是一个错字,但你的文件真的叫test.js
吗?如果是这样,您需要将其更改为 .jsx
,因为您在测试中使用 JSX(例如在 Provider
组件中(。