首页 > 解决方案 > 如何模拟异步函数的返回值?

问题描述

我正在尝试测试使用“easy-soap-request”库的函数。我想模拟“soapRequest”函数返回的结果。

我已经尝试过,但没有成功,我不断从外部 API 获取数据。

客户端.js

const soapRequest = require('easy-soap-request');

async function get_data(){
    var response = await soapRequest(url, auth_headers) //this is what I want to mock
    var result;
    result = some_parsing_function(response); //this is what I want test
    return result;
}

测试.js

const client = require('../../client');

describe('get_data tests', () =>{
    it('should test sth', function (done) {

        var stubed = stub(client, 'soapRequest').returns('dummy value');

        client.get_data().then((result) => {
            //assertions
            console.log(result) //result still has value from external service
            done();
        });

    })
});

编辑:

因此,我尝试按照其中一个答案的建议使用 sinon.fake() 。

const client = require('../../client');

describe('get_data tests', () =>{
    it('should test sth', function (done) {

        var fake_soap = fake(async () => {
            return 12345;
        });

        replace(cilent, 'soapRequest', fake_soap);

        client.soapRequest().then((res) => {
            console.log(res); // 12345
        })

        client.get_data().then((result) => {
            //assertions
            console.log(result) //still original value from external service
            done();
        });

    })
});

标签: javascriptnode.jsunit-testingecmascript-6sinon

解决方案


在源文件中,soapRequest变量本身是一个函数而不是命名的导入(对象) ,因此不可能仅依赖sinon.stub.

如果看一下easy-soap-request源代码,显然它会导出一个函数https://github.com/circa10a/easy-soap-request/blob/master/index.js#L14

根据我的经验,对于这种情况,可以通过添加proxyquire如下来解决。

const proxyquire = require('proxyquire');
const sinon = require('sinon');

// we mock `easy-soap-request` (the library name) by using `sinon.stub`
const client = proxyquire('../../client', { 'easy-soap-request': sinon.stub().returns('dummy value') })

describe('get_data tests', () =>{
    it('should test sth', async () => { // use async/await for better code
        const result = await client.get_data();
        console.log(result); // dummy value
    })
});

如果你不想使用sinon,你也可以这样做

const client = proxyquire('../../client', { 'easy-soap-request': () => 'dummy value' })

参考:

https://www.npmjs.com/package/proxyquire

希望能帮助到你


推荐阅读