我正在使用Jest测试我的GraphQL api。
我为每个查询/突变使用单独的测试套装
我有2个测试(每个测试都在一个单独的测试服中),我模拟了一个用于突变的函数(即Meteor' s callMethod
)。
it('should throw error if email not found', async () => {
callMethod
.mockReturnValue(new Error('User not found [403]'))
.mockName('callMethod');
const query = FORGOT_PASSWORD_MUTATION;
const params = { email: 'user@example.com' };
const result = await simulateQuery({ query, params });
console.log(result);
// test logic
expect(callMethod).toBeCalledWith({}, 'forgotPassword', {
email: 'user@example.com',
});
// test resolvers
});
当我console.log(result)
时,我
{ data: { forgotPassword: true } }
这种行为不是我想要的,因为在.mockReturnValue
我抛出一个错误,因此期望result
有一个错误对象
然而,在此测试之前,另一个是
it('should throw an error if wrong credentials were provided', async () => {
callMethod
.mockReturnValue(new Error('cannot login'))
.mockName('callMethod');
它工作正常,错误被抛出
我想问题是模拟在测试结束后没有重置。
在jest.conf.js
我clearMocks: true
每个测试套装都在一个单独的文件中,我在测试之前模拟函数:
import simulateQuery from '../../../helpers/simulate-query';
import callMethod from '../../../../imports/api/users/functions/auth/helpers/call-accounts-method';
import LOGIN_WITH_PASSWORD_MUTATION from './mutations/login-with-password';
jest.mock(
'../../../../imports/api/users/functions/auth/helpers/call-accounts-method'
);
describe('loginWithPassword mutation', function() {
...
更新
当我用.mockReturnValue
替换.mockImplementation
时,所有内容都按预期完成:
callMethod.mockImplementation(() => {
throw new Error('User not found');
});
但这并不能解释为什么在另一项测试中.mockReturnValue
正常工作......
答案 0 :(得分:35)
使用.mockReturnValue
更改.mockImplementation
:
yourMockInstance.mockImplementation(() => {
throw new Error();
});
答案 1 :(得分:3)
对于Angular + Jest:
import { throwError } from 'rxjs';
yourMockInstance.mockImplementation(() => {
return throwError(new Error('my error message'));
});
答案 2 :(得分:0)
对于promise,可以使用https://jestjs.io/docs/mock-function-api#mockfnmockrejectedvaluevalue
test('async test', async () => {
const asyncMock = jest.fn().mockRejectedValue(new Error('Async error'));
await asyncMock(); // throws "Async error"
});
对于处理抛出的错误,可以使用https://eloquentcode.com/expect-a-function-to-throw-an-exception-in-jest来处理它
const func = () => {
throw new Error('my error')
}
it('should throw an error', () => {
expect(func).toThrow()
})