使用express,node.js构建的restful api的单元测试记录(使用mocha,supertest和chai)

时间:2013-01-15 08:09:26

标签: node.js mocha supertest

我用mocha,chai和supertest写了一个简单的单元测试。

describe('controller.CWEManagementAPI', function () {
it('should be able to say hello', function() { 
    var request = require('supertest')
    , express = require('express');

    var app = express();

    app.get('/user', function(req, res){
        res.send(201, { name: 'tobi' });
    });

    request(app)
    .get('/user')
    .set('Accept', 'application/json')
    .expect(200)
    .end(function(err, res){
        if (err) return done(err);
        console.log('test');
        assert.equal( res.body.name, 'tobi');
        done()
    });
});
});

但问题在于:console.log('test')未执行。 所以我认为assert.equal( res.body.name, 'tobi');也没有执行。 所以我编写的代码没有单元测试,如:

var request = require('supertest')
, express = require('express');

var app = express();

app.get('/user', function(req, res){
res.send(201, { name: 'tobi' });
});

request(app)
   .get('/user')
   .expect('Content-Type', /json/)
   .expect('Content-Length', '20')
   .expect(201)
   .end(function(err, res){ 
    if (err) throw err;
    console.log(res.body.name);
    console.log('done');
    process.exit();
   });

并且console.log()都已执行。所以我不知道为什么第一个代码不能显示日志信息。

1 个答案:

答案 0 :(得分:9)

您尝试运行的是使用mocha的异步测试。因此,测试用例应该收到一个回调参数,一旦完成其动作就会调用。

您在结尾处调用done()但未将其作为参数接收。

更改

it('should be able to say hello', function() {
}

it('should be able to say hello', function(done) {
}