vote up 1 vote down star
1

I'm looking for a framework or tool for testing RESTful services. This seems like it shouldn't be hard, but the tools that I've found thus far assume things about my service that they probably shouldn't.

What would be great is something that could make a request (like, HTTP POST) and then compare the result with an expected result. I know that you can string together a few tools to do this but there has to be something easier since HTTP is super basic.

flag

4 Answers

vote up 1 vote down check

I really like Shoulda (http://www.thoughtbot.com/projects/shoulda)

They had a really interesting discussion on their bug tracker about why they removed the 'should_be_restful' macro they had: (http://thoughtbot.lighthouseapp.com/projects/5807/tickets/78-deprecate-should_be_restful)

link|flag
vote up 0 vote down

Python's urllib2 and unittest are what we use to test RESTful services.

link|flag
vote up 0 vote down

I have heard about SoapUI that is very good, but never tried it. They recently added support for RESTful API http://www.soapui.org/

I have also heard about iTKO: http://www.itko.com/

We are using HP Service Test, no built in REST support, but general HTTP support + built in support for manipulating XMLs.

link|flag
vote up 0 vote down

With Fiddler (free as in beer, provided my Microsoft) you can easily monitor what's going on under the hood of your HTTP traffic.

You can set breakpoints for certain HTTP requests, you can have it mimic the web server, and it can just function as a proxy, while showing you what's happening. You can also contruct requests in the tool and send that to mimic a client.

I can't live without it when I do any HTTP programming.

http://www.fiddlertool.com/fiddler/

link|flag

Your Answer

Get an OpenID
or

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