作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 jsonwebtoken 库来验证我的模块中的 token 。 jsonwebtoken 多次导出验证方法(重载)。
export function verify(token: string, secretOrPublicKey: Secret, options?: VerifyOptions): object | string;
export function verify(
token: string,
secretOrPublicKey: Secret | GetPublicKeyOrSecret,
callback?: VerifyCallback,
): void;
export function verify(
token: string,
secretOrPublicKey: Secret | GetPublicKeyOrSecret,
options?: VerifyOptions,
callback?: VerifyCallback,
): void;
private validateToken(token: string): void {
const publicKeyToPem = this.convertPublicKeyToPEM(this.ssoPublicKey);
try {
this.decodedToken = jwt.verify(token, publicKeyToPem);
} catch (e) {
throw new Error(e);
}
}
test('should return true if token is correct', () => {
const verifyResponse = { 'test': 'test' };
jest.spyOn(jwt, 'verify').mockReturnValue(verifyResponse);
........
});
jest.spyOn(jwt, 'verify').mockImplementationOnce(() => verifyResponse);
似乎没问题,但如何模拟特定的重载方法?
最佳答案
而不是 jest.spyOn
你应该使用 jest.mock
像这样
const jwt = require('jwt-library');
const myMod = require('./myModule');
// it will replace all of the methods with jest.fn()
jest.mock('jwt-library')
describe('my module', () => {
const mockDecodedToken = { 'test': 'test' };
describe('calling a public method that calls validateToken', () => {
beforeAll(() => {
jwt.verify.mockReturnValue(mockDecodedToken);
myMod.aPublicMethodThatCallsValidateToken()
})
it('should have called jwt.verify', () => {
expect(jwt.verify).toHaveBeenCalledWith(
expect.any(String)
expect.any(Secret)
expect.any(VerifyOptions)
)
})
it('should have assigned decodedToken to my module', () => {
expect(myMod).toHaveProperty(decodedToken, mockDecodedToken)
});
})
})
关于node.js - 如何在 Jest 中模拟重载方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61752367/
我是一名优秀的程序员,十分优秀!