摩卡超级集成测试过早退出

时间:2016-02-07 10:45:32

标签: node.js mocha supertest

我正在为Node.js应用程序运行以下集成测试。第一个API已经存在,而第二个API不存在:

'use strict';

var app = require('../..');
import request from 'supertest';                                                                                                                                        

describe('Planes API:', function() {

  describe('GET /api/planes/:name', function() {
    it('should contain a list of alive cells', function() {
      request(app)
        .get('/api/planes/a-block-and-bar')
        .expect(200)
        .expect('Content-Type', /json/)
        .end((err, res) => {
          console.log("getting here? 1");
          var plane = res.body;
          plane.aliveCells.length.should.equal(3);
        }); 
    }); 

    it('should load a specific generation', function() {
      request(app)
        .get('/api/planes/a-block-and-bar/generation/1')
        .expect(200)
        .expect('Content-Type', /json/)
        .end((err, res) => {
          console.log("getting here? 2");
          res.status.should.equal(200);
        }); 
    }); 
  }); 

});

然而,输出是:

[11:39:15][giorgio@Bipbip:~/code/game-of-life-javascript]$ grunt mochaTest:integration
Running "mochaTest:integration" (mochaTest) task


  Planes API:
Express server listening on 9000, in development mode
    GET /api/planes/:name
      ✓ should contain a list of alive cells
GET /api/planes/a-block-and-bar 200 6.082 ms - 58
getting here? 1
      ✓ should load a specific generation


  2 passing (94ms)

GET /api/planes/a-block-and-bar/generation/1 404 4.258 ms - -

Done, without errors.


Execution Time (2016-02-07 10:42:13 UTC)
loading tasks             220ms  ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 14%
loading grunt-mocha-test   46ms  ▇▇▇▇ 3%
mochaTest:integration      1.3s  ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 83%
Total 1.5s

因此测试结果是假阴性。输出显示404由API返回,但我不能通过使用.expect()指定200来使其失败。

为什么测试没有失败?请注意,永远不会打印getting here? 2

1 个答案:

答案 0 :(得分:1)

我会试试 it('should load a specific generation', function(done) { 然后在done()方法中调用end。如果从未打印第2个日志,则此异步测试应产生超时错误。我不熟悉supertest,但似乎在404的情况下它不会触发。也许存在错误事件处理程序?