1

我使用 Frisy 和 jasmine-node 来测试 Meteor API。

我想测试删除聊天应用程序中的讨论。为此,我需要在聊天中创建一个新讨论并在讨论中添加一条消息。

我注意到如果我把它放在第二个 .then() 方法之后,我的测试就会失败。在第三个 .then() 之后它也会失败。但是,它在第​​一个 .then() 方法之后可以正常工作。

带有显式失败测试的示例代码expect(false).toBe(true);

var frisby = require('frisby');
describe("chat update", function() {
  it("message added", function(done) {
    frisby.post('http://localhost:3000/api/chat', {
      name: "remove"
    })
    .then(function (res) {
      let id = res._body.id;
      expect(false).toBe(true); // (1) it fails the test
      frisby.post('http://localhost:3000/api/chat/'+id+'/addmessage', 
        {
          auteur: "Samuel",
          message: "My message"
        }
      )
      .then(function (res) {
        expect(false).toBe(true); // (2) Without (1) it's ignored by frisby
        frisby.post('http://localhost:3000/api/chat/remove', 
          {id: id}
        )
        .then(function (res) {
          expect(false).toBe(true); // (3) Without (1) it's ignored by frisby
        })
      });
    })
    .done(done);
  })
});

如果我运行测试,由于expect(false).toBe(true);它将失败;// (1) 它没有通过测试线。如果我删除此行,测试将运行并且 jasmine 正确地验证它。

你知道不忽略 (2) 和 (3) 测试的方法吗?

4

1 回答 1

1

最后,我找到了解决方案。这是因为我忘记返回所有 frisby 动作(第一个动作除外),如下面的代码:

var frisby = require('frisby');
describe("chat update", function() {
  it("message added", function(done) {
    frisby.post('http://localhost:3000/api/chat', {
      name: "remove"
    })
    .then(function (res) {
      let id = res._body.id;
      return frisby.post('http://localhost:3000/api/chat/'+id+'/addmessage', 
        {
          auteur: "Samuel",
          message: "My message"
        }
      )
      .then(function (res) {
        return frisby.post('http://localhost:3000/api/chat/remove', 
          {id: id}
        )
        .then(function (res) {
          expect(false).toBe(true); // Will fail the test
        })
      });
    })
    .done(done);
  })
});

您可能会注意到frisby.post()之前的返回运算符。我希望它会有所帮助!

于 2017-09-18T21:56:33.140 回答