简体   繁体   English

Moxios在NodeJs中模拟外部端点

[英]Mock an external endpoint in NodeJs by Moxios

I am trying to mock an external endpoint of Twilio in the unit test by Moxios library. 我正在Moxios库的单元测试中尝试模拟Twilio的外部端点。 I am also using SuperTest library to provide the exceptions of the test. 我还使用SuperTest库提供测试的例外。

My internal endpoint which is called by Front-end is: 我的前端称为的内部端点是:

router.get('/twilio', async (req, res, next) => {
   const result = await validatePhoneNumber(68848239, 'SG');
   res.status(200).json(result);
});

and validatePhoneNumber is a function which calls the external endpoint by Axios which I am trying to mock and not to call the actual endpoint during the test: validatePhoneNumber是一个函数,它通过Axios调用外部端点,我正在尝试模拟它,而在测试过程中不调用实际端点:

const validatePhoneNumber = async (phone, code) => {
  const endpoint = `https://lookups.twilio.com/v1/PhoneNumbers/${phone}?CountryCode=${code}`;

  try {
    const { status } = await axios.get(endpoint, {
      auth: {
        'username': accountSid,
        'password': authToken
      }
    });

    console.log('twilio', phone, status);

    return {
      isValid: status === 200,
      input: phone
    };
  } catch (error) {
    const { response: { status } } = error;

    if (status === 404) {
      // The phone number does not exist or is invalid.
      return {
        input: phone,
        isValid: false
      };
    } else {
      // The service did not respond corrctly.
      return {
        input: phone,
        isValid: true,
        concerns: 'Not validated by twilio'
      };
    }
  }
};

And my the unit test code: 而我的单元测试代码:

const assert = require('assert');
const request = require('supertest');
const app = require('../app');
const axios = require('axios');
const moxios = require('moxios');

describe('some-thing', () => {

    beforeEach(function () {
        moxios.install()
    })

    afterEach(function () {
        moxios.uninstall()
    })

    it('stub response for any matching request URL', async (done) => {

        // Match against an exact URL value
        moxios.stubRequest(/https:\/\/lookup.twilio.*/, {
            status: 200,
            responseText: { "isValid": true, "input": 68848239 }
        });

        request(app)
            .get('/twilio')
            .expect(200, { "isValid": true, "input": 68848239 }, done);
    });
});

If in my case Moxios is the right way to mock any external endpoints, I am getting the error below: 如果就我而言, Moxios是模拟任何外部端点的正确方法,那么我将收到以下错误:

 Error: Timeout of 3000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. (c:\Source\Samples\Twilio\myproject\test\twilio.test.js)

I increased the time out to 10000 but still I get a same error. 我将超时时间增加到10000,但仍然遇到相同的错误。 Appreciate any hint or help. 感谢任何提示或帮助。

I tried different ways but I prefer to go on with axios-mock-adapter library to mock any request through Axios . 我尝试了不同的方法,但是我更喜欢继续使用axios-mock-adapter库来模拟通过Axios任何请求。

Example: 例:

const app = require('../app');
const axios = require('axios');
const request = require('supertest');
const MockAdapter = require('axios-mock-adapter');


describe('Valid phone number', () => {
    it('Should return data from response', (done) => {

        let mockAdapter = new MockAdapter(axios);

        mockAdapter.onGet(twilioEndpoint)
            .reply(200);

        request(app)
            .post('/api/validation')
            .set('Content-Type', 'application/json')
            .send(JSON.stringify(configuration))
            .expect(200, { "isValid": true, "input": "68848239" }, done);
    });
});

More information here 更多信息在这里

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM