9

我正在使用chai-as-promised来测试一些承诺。我的问题是我不确定如何在单个测试中包含多个期望语句。为了expect().to.be.fulfilled使其正常工作,我需要将其退回,如下所示:

it('test', () => {
  return expect(promise).to.be.fulfilled
}

...或使用notify,像这样:

it('test', (done) => {
  expect(promise).to.be.fulfilled.notify(done)
}

当我有另一件事需要检查时,问题就出现了,例如某个函数被调用,如下所示:

it('test', (done) => {
  var promise = doSomething()
  expect(sinon_function_spy.callCount).to.equal(1)
  expect(promise).to.be.fulfilled.notify(done)
})

这里的问题是,因为doSomething()是异步的,所以sinon_function_spy当我调用它时可能还没有发生调用expect,这使得这个测试变得不稳定。如果我使用 a then,像这样:

it('test', (done) => {
  var promise = doSomething()
  promise.then(() => {
    expect(sinon_function_spy.callCount).to.equal(1)
  })
  expect(promise).to.be.fulfilled.notify(done)
})

然后测试在技术上按预期通过和失败,但由于then调用中抛出的异常,promise 被拒绝,它会失败。同样,如果我有一个承诺被拒绝的情况:

it('test', (done) => {
  var promise = doSomething()
  promise.then(() => {
    expect(sinon_function_spy.callCount).to.equal(1)
  })
  expect(promise).to.be.rejected.notify(done)
})

然后检查sinon_function_spynever 被调用,因为 promise 被拒绝并且没有调用then

如何让这两个expect语句可靠地执行并返回正确的值?

4

3 回答 3

2

一种实现多重期望的方法

it('should fail if no auth', () => {
    const promise = chai.request(server).get('/albums');
    return expect(promise).to.be.rejected.then(() => {
      return promise.catch(err => {
        expect(err).not.to.be.null;
        expect(err.response).to.have.status(401);
        expect(err.response).to.be.a.json;
      });
   });
});
于 2018-10-30T18:02:26.127 回答
2

如果你使用 mocha 或 jest 作为你的测试框架,你可以在你的then()块中返回带有期望的承诺:

it('test', () => {
   return doSomething().then( () => {
     expect(sinon_function_spy.callCount).to.equal(1);
   });
});

在 promise 成功完成并运行之前,此测试不会结束expect。如果您使用的是 jasmine,则可以使用该jasmine-promises软件包来获得相同的功能。

对于相反的情况,我建议创建一个包装器来反转承诺的极性:

function reverse( promise ) {
   //use a single then block to avoid issues with both callbacks triggering
   return promise.then(
       () => { throw new Error("Promise should not succeed"); }
       e => e; //resolves the promise with the rejection error
   );
}

现在你可以做

it('test', () => {
   return reverse( doSomethingWrong() ).then( error => {
       expect( error.message ).to.equal("Oh no");
   });
});
于 2017-12-18T21:16:44.907 回答
1

在想要断言 Promise 已实现并且按预期执行调用的情况下,您实际上并不需要将第一部分作为断言。只要您返回它,如果 Promise 拒绝,mocha 测试用例本身就会失败:

it('test', () => {
  return doSomething()
    .then(() => {
      expect(sinon_function_spy.callCount).to.equal(1)
    });
});

如果 Promise 被doSomething()拒绝返回,那么测试用例也将返回。如果expect断言失败,它也将使带有失败断言的测试用例失败。如果你想更明确一点:

it('test', () => {
  return doSomething()
    .then(() => {
      expect(sinon_function_spy.callCount).to.equal(1)
    }, err => {
      expect(err).to.not.exist;
    });
});

...您可以发现错误。请注意,对于这种then带有两个回调的风格,在第一个回调中失败的断言将不会到达第二个回调,因此只有 Mocha 会看到失败的断言。

以下是如何执行预期的失败 Promise:

it('test', () => {
  return doSomething()
    .then(() => {
      throw new Error('Promise should not have resolved');
    }, err => {
      expect(err).to.exist;
      expect(sinon_function_spy.callCount).to.equal(1)
    });
})
于 2017-12-18T21:49:09.620 回答