如何使用Sinon.js存根一个类

时间:2017-09-25 14:33:24

标签: javascript node.js sinon chai ovh

我正在尝试为调用OVH api的函数编写一个简单的测试。

我不明白,我的 sinon.js存根不要“转移”ovh api requestPromised 方法。 sinon.js的存根与类对象的工作方式不同?

我的功能(myOvhApi.js):

const ovh = require('ovh')({
  endpoint: 'Endpoint',
  appKey: 'AppKey',
  appSecret: 'appSecret',
  consumerKey: 'ConsumerKey'
})

exports.myFunction = async ( ipAdress, subDomain, ovhDynDNSId ) => {

  try{
    await ovh.requestPromised( 'PUT', `/domain/zone/${zone}/dynHost/record/${ovhDynDNSId}`,
      {
        'ip': ipAdress,
        'subDomain': subDomain
      })
  } catch (error) {
    console.log(error)
  }

  return true
}

我的测试:

const ovh = require('ovh')
const myOvhApi = require('myOvhApi')

describe('description', () => {

  it('description', async () => {

    const zone = 'mydomain.com'
    const ovhDynDNSId = '12345'
    const ipAdress = '127.0.0.1'
    const subDomain = 'subDomain'

    sinon.stub( ovh, 'requestPromised' ).returns(true)

    const expectation = await myOvhApi.myFunction ( ovhDynDNSId, ipAdress, subDomain )
    expect( expectation ).to.equal(true)
  })
})

谢谢

1 个答案:

答案 0 :(得分:0)

根据我的经验,在不描述函数的所有参数的情况下对函数进行存根 - 存根不会捕获它。

以这种方式编写你的存根:



sinon.stub( ovh, 'requestPromised', (method, uri) => {
      return true
}




或者你也可以使用sinon的callsfake方法。