我曾经使用 axios-mock-adapter 取得了巨大的成功,但最近几次我尝试使用它,我的路由似乎从未匹配,它仍在尝试执行一个真正的端点。
为什么这个单元测试仍然调用 example.com 并返回 404?我原以为它会返回 500。
测试/libs/orgService/index.spec.js
const uuid = require('uuidv4')
const axios = require('axios')
const MockAdapter = require('axios-mock-adapter')
const mock = new MockAdapter(axios)
const { getOrgById } = require('../../../src/libs/orgService/index')
const chai = require('chai')
const chaiAsPromised = require('chai-as-promised')
chai.use(chaiAsPromised)
const expect = chai.expect
const orgServiceHost = 'https://example.com'
describe.only('#getOrgById failure', () => {
const id = uuid()
before(() => {
console.log('`${orgServiceHost}/organizations/${id}` = ', `${orgServiceHost}/organizations/${id}`)
mock.onGet(`${orgServiceHost}/organizations/${id}`).reply(500) <-- SHOULD BE RETURNING 500!!
})
after(() => {
mock.reset()
})
it('should fail to fetch an organization', () => {
return expect(getOrgById(orgServiceHost, id, tkn)).to.eventually.be.rejected
})
})
src/libs/orgService/index.js
const axios = require('axios')
function getOrgById (orgServiceHost, id, token) {
log.debug('orgServiceHost = ', orgServiceHost)
log.debug('id = ', id)
log.debug('token = ', token)
return new Promise((resolve, reject) => {
if (id === undefined) {
return resolve()
}
console.log('`${orgServiceHost}/organizations/${id}` = ', `${orgServiceHost}/organizations/${id}`)
axios({
url: `${orgServiceHost}/organizations/${id}`,
method: 'GET',
headers: {
Authorization: `Bearer ${token}`,
Accept: 'application/json',
}
})
.then(res => {
return resolve(res.data)
})
.catch(err => {
log.error('getOrgById err = ', err)
return reject(err)
})
})
}
module.exports = { getOrgById }