1

我试图从路由处理程序模拟函数......

这是我的路线:

server.route({
  method: 'GET',
  path: '/api/color/{format}',
  handler: this.pingLogic.getPing,
  config: {
    description: 'This is ping route',
    tags: ['api', 'v1', 'ping route'],
    validate: {
      params: pingValidator
    }
  }
})

getPing 函数如下所示:

getPing(req: HapiRequest, reply: Hapi.ReplyNoContinue): any {
  req.seneca
    .act(
      {
        role: 'color',
        format: req.params.format,
        color: 'red'
      },
      (err: any, out: any): any => {
        return reply(err || out)
      }
    )
}

这是我的测试:

L.test('returns the hello message as text.', (done) => {
  const ping = new PingLogic;
  sinon.stub(ping, 'getPing').returns({});
  server.inject('/api/color/hex', (response: any) => {
    expect(response.payload).to.equal({color: 'green'});
    done();
  });
});

它不工作它无法识别这部分:sinon.stub(ping, 'getPing').returns({}); 任何人都知道如何使这个工作?

4

1 回答 1

0

我刚刚在 sinon 上使用 proxyquire 解决了同样的问题。

const route = proxyquire('./route', {
  './pingLogic': {
    default: sinon.stub().callsArgWith(1, 'response'),
  },
}).default;

server.route(route);

server.inject({ request }) // Calls my stub

另一种解决方案可能是这样的:

在您的路线文件中:

handler: (request, reply) => { this.pingLogic.getPing(request, reply); }

然后你可以像往常一样存根 pingLogic。

我认为这是因为 hapi 在您需要时注册了真实对象,而在此之后将其存根为时已晚。如果将其包装在箭头函数中,则 sinon 可以在函数绑定到 hapi 路由对象之前覆盖逻辑。

于 2018-03-05T15:43:20.170 回答