简体   繁体   中英

Testing responses in node.js?

I have just downloaded mocha.js and have ran some basic tests with expect.js to ensure that it's working properly.

But what about testing responses in my node application at a specific url? Ie how do I test what response I get from navigating to /users for instance?

Using Expresso, mocha.js's predecessor, I could do assert.response(server, req, res|fn[, msg|fn]) and test the response.

This is one thing that I love about Node.js/Javascript, doing this sort of thing is simple once you got the hang of it.

In short, you run your server code and then actually use either Request or Superagent to make these HTTP requests. I personally prefer Superagent because of it's automatic JSON encoding, but be careful, the docs are out of date and incorrect, YMMV. Most people choose Request.

Simple Mocha Example using Request:

describe('My Server', function(){
    describe('GET /users', function(){
        it("should respond with a list of users", function(done){
            request('http://mytesturl.com/users', function(err,resp,body){
                assert(!err);
                myuserlist = JSON.parse(body);
                assert(myuserlist.length, 12); 
                done(); 
            }); 
        }); 
    });
});

Hopefully that helps. Here is a sample of my Mocha (CoffeeScript) testing using this style with complete detailed examples: https://github.com/jprichardson/logmeup-server/blob/develop/test/integration/app.test.coffee Oh ya, it also is using Superagent.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM