Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Looking for tools use to test REST API.

So far I'm only aware of SoapUI. I've tried SOAPUI but - at least in a mac - it's terrible.

Wondering what people are using to test their own APIs.

share|improve this question

9 Answers

If you're just testing your APIs manually, we've found RestClient 2.3 or the Poster add-on for Firefox to be pretty helpful. Both of these let you build requests that GET, PUT, POST, or DELETE. You can save these requests to rerun later.

For simple automated testing try the Linux (or Cygwin) 'curl' command in a shell script.

From something more industrial strength you can move up to Apache JMeter. JMeter is great for load testing.

share|improve this answer
Thanks Jim! I'm currently using cURL and some bash scripts but wanted to just have the tests saved in one place (like a json or xml file that I can put in /tests/ directory of my app) and then something that allow me to re-run those tests while I develop. Will test Poster and RestClient – dscape Dec 20 '10 at 4:35

Postman in the chrome store is simple but powerful.

share|improve this answer

We are using Groovy to test our RestFUL API, using a series of helper functions to build the xml put/post/gets and then a series of tests on the nodes of the XML to check that the data is manipulated correctly.

We use Poster (for Firefox, Chrome seems to be lacking a similar tool) for hand testing single areas, or simply to poll the API at times when we need to create further tests, or check the status of things.

share|improve this answer
Chrome now has XHR Poster that works like Poster but has some nice extra features as well. – theCesspit Jun 16 '11 at 16:41

We're planning to use FitNesse, with the RestFixture. We haven't started writing our tests yet, our newest tester got things up and running last week, however he has used FitNesse for this in his last company, so we know it's a reasonable setup for what we want to do.

More info available here: http://smartrics.blogspot.com/2008/08/get-fitnesse-with-some-rest.html

share|improve this answer

I am using Fiddler - this is a great tool and allows you to quickly hack on previous http request amending headers / content etc.

Apart from that I am using scipts written in Python (using httplib) , as this is one of the easiest way to create integration test.

share|improve this answer

I am using DevHttpClient Plugin for chrome, its handy. it does also saves previous actions. clean UI as well

share|improve this answer

I use http://hurl.it/

Ha. Sorry, I mis-read your post. I've used cucumber to test it before. It worked out nicely.

share|improve this answer
1  
Thanks Jimmy. The way I see it cucumber is designed to test code, not web-services. Something more specific, not language specific would be great. Kind of like CouchDB that allows you to run tests in the browser thru their futon interface. – dscape Dec 20 '10 at 3:44
Here is a list of tools like hurl.it. – Alex Sep 28 '12 at 10:36

We test our own with our own unit tests and oftentimes a dedicated client app.

share|improve this answer

http://www.quadrillian.com/ this enables you to create an entire test suite for your API and run it from your browser and share it with others.

share|improve this answer

protected by Community Aug 23 '12 at 12:02

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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