失败的测试显示"错误:超过2000毫秒的超时"当使用Sinon-Chai时

时间:2014-01-24 14:55:47

标签: node.js unit-testing mocha sinon chai

我有以下路由(快速),我正在编写集成测试。

以下是代码:

var q = require("q"),
    request = require("request");

/*
    Example of service wrapper that makes HTTP request.
*/
function getProducts() {

    var deferred = q.defer();

    request.get({uri : "http://localhost/some-service" }, function (e, r, body) {
        deferred.resolve(JSON.parse(body));
    });

    return deferred.promise;
}

/*
    The route
*/
exports.getProducts = function (request, response) {
    getProducts()
        .then(function (data) {
            response.write(JSON.stringify(data));
            response.end();
        });
};

我想测试所有组件是否一起工作,但是假HTTP响应,所以我正在为请求/ http交互创建一个存根。

我正在使用Chai,Sinon和Sinon-Chai以及Mocha作为试车手。

这是测试代码:

var chai = require("chai"),
    should = chai.should(),
    sinon = require("sinon"),
    sinonChai = require("sinon-chai"),
    route = require("../routes"),
    request = require("request");

chai.use(sinonChai);

describe("product service", function () {
    before(function(done){
        sinon
        .stub(request, "get")
        // change the text of product name to cause test failure.
        .yields(null, null, JSON.stringify({ products: [{ name : "product name" }] }));
        done();
    });

    after(function(done){
        request.get.restore();
        done();
    });

    it("should call product route and return expected resonse", function (done) {

        var writeSpy = {},
            response = {
            write : function () { 
                writeSpy.should.have.been.calledWith("{\"products\":[{\"name\":\"product name\"}]}");
                done();
            }
        };

        writeSpy = sinon.spy(response, "write");

        route.getProducts(null, response);
    });
}); 

如果写入响应的参数(response.write)与测试匹配则传递正常。问题是当测试失败时,失败消息是:

“错误:超过2000毫秒超时”

我引用了this answer,但它无法解决问题。

如何让此代码显示正确的测试名称和失败原因?

NB第二个问题可能是,可以改进响应对象被断言的方式吗?

1 个答案:

答案 0 :(得分:15)

这个问题看起来像个异常被某个地方吞没了。我想到的第一件事就是在您的承诺链末尾添加done

exports.getProducts = function (request, response) {
    getProducts()
        .then(function (data) {
            response.write(JSON.stringify(data));
            response.end();
        })
        .done(); /// <<< Add this!
};

通常情况下,通过调用这样的方法来处理您希望结束链的promises。有些实现称之为done,有些称之为end

  

如何让此代码显示正确的测试名称和失败原因?

如果Mocha从未看到异常,那么它无法为您提供一个很好的错误消息。诊断可能的吞咽异常的一种方法是在违规代码周围添加try ... catch块并将某些内容转储到控制台。