I could really do with some advice on testing a RESTful api I created in node.js. There are a plethora of frameworks out there and I am at a loss. My testing knowledge isn't good enough generally which is why I am trying to write these tests. I've tried vows.js which seems nice but I couldn't work out how to incorporate the testing of my API, I need some sort of client. An example of a simple post to test a login system is all I need to get going.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
Update 6 months latervows-is sucks. use mocha OriginalUpdated with vow-is code Here's the vows-is example from the vows-is examples folder.
This uses vows-is. |
||||
|
|
|
http://blog.nodejitsu.com/rest-easy-test-any-api-in-nodejs is designed for this very purpose. It's a DSL that sits on top of Vows that streamlines the process of writing out tests using vows. Basic test:
|
|||
|
|
|
I have used vowsjs and request libraries. I have found them to be the easiest as both libs are documented properly and seem to be actively developed and maintained. (I haven't found the docs for APIeasy to be sufficient.) Here's an example test I am writing at the moment to test Couchapp's HTTP API:
|
|||
|
|
