0

我坚持在 Chai 和 Sinon 中测试 Promies。通常,我使用 is wrapper 为 xhr 请求提供服务,它返回承诺。我试图这样测试它:

beforeEach(function() {
    server = sinon.fakeServer.create();
});

afterEach(function() {
    server.restore();
});

describe('task name', function() {
    it('should respond with promise error callback', function(done) {

        var spy1 = sinon.spy();
        var spy2 = sinon.spy();

        service.get('/someBadUrl').then(spy1, spy2);

        server.respond();
        done();

        expect(spy2.calledOnce).to.be.true;
        expect(sp2.args[0][1].response.to.equal({status: 404, text: 'Not Found'});
    });
});

我对此的注释:

// 在期望完成断言之后调用 spy2
// 尝试了var timer = sinon.useFakeTimers()timer.tick(510);没有结果
// 尝试了 chai-as-promised - 不知道如何使用它:-(
// 不能sinon-as-promised只安装在我的环境中可用的选定 npm 模块

任何想法如何修复此代码/测试此服务模块?

4

1 回答 1

1

这里有各种挑战:

  • 如果service.get()是异步的,则需要等待其完成后再检查您的断言;
  • 由于(提议的)解决方案检查了 Promise 处理程序中的断言,因此您必须小心异常。done()我会选择使用 Mocha(我假设您正在使用)内置的 Promise 支持,而不是使用。

试试这个:

it('should respond with promise error callback', function() {
  var spy1 = sinon.spy();
  var spy2 = sinon.spy();

  // Insert the spies as resolve/reject handlers for the `.get()` call,
  // and add another .then() to wait for full completion.
  var result = service.get('/someBadUrl').then(spy1, spy2).then(function() {
    expect(spy2.calledOnce).to.be.true;
    expect(spy2.args[0][1].response.to.equal({status: 404, text: 'Not Found'}));
  });

  // Make the server respond.
  server.respond();

  // Return the result promise.
  return result;
});
于 2016-01-23T14:58:46.950 回答