我的反应组件中有一个静态函数,我想用jest测试。
static async getInitialProps (context, apolloClient) {
const { req } = context
const initProps = { user: {} }
if (req && req.headers) {
const cookies = req.headers.cookie
if (typeof cookies === 'string') {
const cookiesJSON = jsHttpCookie.parse(cookies)
initProps.token = cookiesJSON['auth-token']
if (cookiesJSON['auth-token']) {
jwt.verify(cookiesJSON['auth-token'], secret, (error, decoded) => {
if (error) {
console.error(error)
} else {
redirect(context, '/')
}
})
}
}
}
}
这是我到目前为止所做的,它正在测试jwt.verify
的调用。但是我如何测试回调呢?
如果没有错误,我想检查redirect
的电话......
test('should call redirect', () => {
// SETUP
const context = { req: { headers: { cookie: 'string' } } }
jsHttpCookie.parse = jest.fn().mockReturnValueOnce({ 'auth-token': 'token' })
jwt.verify = jest.fn(() => redirect)
// EXECUTE
Page.getInitialProps(context, {})
// VERIFY
expect(jwt.verify).toHaveBeenCalled()
})
答案 0 :(得分:0)
最简单的方法是明确声明你的回调
const callback = (error, decoded) => {
if (error) {
console.error(error)
} else {
redirect(context, '/')
}
}
并分开测试。
另一种选择是为jwt.verify做一个更聪明的模拟
jwt.verify = jest.fn((token, secret, callback) => callback())
这样您的实际回调将被调用并可以进行测试