1

我曾经使用 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 }
4

2 回答 2

1

(注意:我没有足够的信用来发表评论,因此将以下内容发布为答案。)

我不确定这是否可行,但请尝试创建一个 axios 实例

before(() => {
 instance = AxiosApi.getAxiosInstance();
 mock = new MockAdapter(instance);
 mock.onGet(`${orgServiceHost}/organizations/${id}`).reply(500);
})
于 2019-02-20T18:01:19.633 回答
0

问题是您Promise从服务返回 a 。尝试类似:

it('should fail to fetch an organization', (done) => {
    getOrgById(orgServiceHost, id, tkn)
      .then(() => {
        assert.fail("custom error message"); // or any other failure here
        done();
      }).catch((exception) => {
        expect(true).toBeTruthy(); // or any other way to pass the test
        done();
      });
  });
于 2019-02-20T19:24:09.417 回答