我遇到了一个关于函数单元测试的问题。有一个SOP3loginConfig
返回对象的函数,在该对象中我们有一个isSOP3
返回布尔值的函数,我想测试这个函数并覆盖它的测试部分。
函数的实际实现sop3login.ts
export const SOP3loginConfig = (props: IVariables) => {
const { i18n } = props;
return {
buttonLabel: props.user != null ? i18n('StartJourney') : i18n('logIn'),
loginLink:"/login?redirectUrl="+window.location.href,
isSOP3: async() => {
let userData = await ADCServices.getUserInfo();
if (!userData.session.tammUserInfo || userData.session.tammUserInfo.Type!="SOP3") {
props.SOP3toggleModal(props,true);
setTimeout(()=>props.SOP3toggleModal(props,false),5000)
return false;
} else {
return true;
}
},
};
};
我的整合work.ts
import { SOP3loginConfig } from 'client/.../sop3login';
const start = async (props: IVariables) => {
if (props.user) {
if (await SOP3loginConfig(props).isSOP3()) {
props.history.push('/adc/card-renewal/customs');
}
} else {
props.history.push(SOP3loginConfig(props).loginLink);
}
};
我的单元测试实现work.test.ts
describe('Start SOP3loginConfig should be called', () => {
it('Should call the SOP3', async () => {
props.user = true;
// const isSOP3Mock = () => {
// return true;
// };
// let SOP3loginConfig = async (props: any) => {
// return true;
// // return {
// // isSOP3: isSOP3Mock,
// // };
// };
let SOP3loginConfig = jest.fn(props => {
return {
isSOP3: jest.fn(() => {
return true;
}),
};
});
functions.start(props);
expect(await SOP3loginConfig(props).isSOP3).toHaveBeenCalled();
expect(props.history.push).toHaveBeenCalled();
});
});
我得到的错误
expect(jest.fn()).toHaveBeenCalled()
Expected number of calls: >= 1
Received number of calls: 0
97 | });
98 | functions.start(props);
> 99 | expect(await SOP3loginConfig(props).isSOP3).toHaveBeenCalled();
| ^
100 | expect(props.history.push).toHaveBeenCalled();
101 | });
102 | });
我想要的只是
if (await SOP3loginConfig(props).isSOP3())
覆盖work.ts
.