Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have node module that exports REST methods for express.js (index, show, update, delete)..

What is the best approach to test mocha or jasmine unit test framework?

How should I describe my test?

Thanks.

share|improve this question

2 Answers

up vote 2 down vote accepted

I personally use api-easy, it's based on vows and request. With this module you can easily test REST APIs.

Here an example:

 var APIeasy = require('api-easy'),
      assert = require('assert');

  var suite = APIeasy.describe('your/awesome/api');

  suite.discuss('When using your awesome API')
       .discuss('and your awesome resource')
       .use('localhost', 8080)
       .setHeader('Content-Type', 'application/json')
       .post({ test: 'data' })
         .expect(200, { ok: true })
         .expect('should respond with x-test-header', function (err, res, body) {
           assert.include(res.headers, 'x-test-header');
         })
       .export(module);
share|improve this answer
Is it fully agnostic for test framework (vow/mocha/jasmine)? – WHITECOLOR Jul 11 '12 at 9:26
what do you mean ? – charles Jul 11 '12 at 9:34
So api-easy can be used with any node unit test framework? – WHITECOLOR Jul 11 '12 at 10:05
You mean something like Chai (chaijs.com) or Should.js (github.com/visionmedia/should.js) ? I didn't try it, but I would say yes. – charles Jul 11 '12 at 10:16
api-easy uses vows here. You run api-easy tests with vows. You can't run api-easy tests with any other tool. – nrw Oct 15 '12 at 17:22

You could use request module to do HTTP request (or for calling REST API) painlessly. When response is available then in the callback you can do your assertions. For assertions you can use any assertion module that you like but I would suggest give should.js module a try. It's fun to write the should statements.

Regarding choosing between mocha, jasmine, vows or any other testing framework. It does not matter which one you choose. Look at their API and select the framework you think will be productive for you and matches your thinking and coding style.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.