Sinon Stub 不适用于 AWS 参数存储 (NodeJS)

Sinon Stub not working with AWS Parameter store (NodeJS)

我正在尝试存根调用 aws 参数存储 (PS)。但是即使我以多种方式添加存根,它总是对 aws PS.

进行实际调用

我正在尝试测试的方法

function getParamsFromParamterStore() {
    return ssm.getParametersByPath(query).promise();
}

我试过的存根方法之一

var ssm = new AWS.SSM();
stub1 = sinon.stub(ssm, 'getParametersByPath').returns({promise: () => {}});
moduleName.__get__('getParamsFromParamterStore')();

但这实际上调用了 PS。

注意:因为这是一个私有函数(未导出),所以我使用 rewire 来访问它。

单元测试解决方案如下:

index.js:

const AWS = require('aws-sdk');
const ssm = new AWS.SSM();

function getParamsFromParamterStore(query) {
  return ssm.getParametersByPath(query).promise();
}

index.test.js:

const rewire = require('rewire');
const sinon = require('sinon');
const { expect } = require('chai');
const mod = rewire('./');

describe('60447015', () => {
  it('should pass', async () => {
    const ssmMock = { getParametersByPath: sinon.stub().returnsThis(), promise: sinon.stub().resolves('mock data') };
    const awsMock = {
      SSM: ssmMock,
    };
    mod.__set__('ssm', awsMock.SSM);
    const actual = await mod.__get__('getParamsFromParamterStore')('query');
    expect(actual).to.be.eq('mock data');
    sinon.assert.calledWithExactly(ssmMock.getParametersByPath, 'query');
    sinon.assert.calledOnce(ssmMock.promise);
  });
});

100% 覆盖率的单元测试结果:

  60447015
    ✓ should pass


  1 passing (30ms)

----------|---------|----------|---------|---------|-------------------
File      | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s 
----------|---------|----------|---------|---------|-------------------
All files |     100 |      100 |     100 |     100 |                   
 index.js |     100 |      100 |     100 |     100 |                   
----------|---------|----------|---------|---------|-------------------