up vote 28 down vote favorite
20
share [g+] share [fb]

My organization is working on building RESTful webservices on JBoss appserver. The QA team is used to testing SOAP webservices so far using SoapUI. SoapUI has a new version that has REST capabilities. We're considering using that.

  1. Are there any publicly available RESTful services available on the net for free that someone could test ?
  2. What tools are available(and used) for testing RESTful web services ?
link|improve this question

53% accept rate
Regarding the title "Teting REST webservices" ... I hope you mean 'Test' and aren't making an obscure reference to the Tet Offensive (talk about hardening a server!) – micahwittman Oct 15 '08 at 2:51
I meant Testing, of course. thanks micahwittman and Chris for fixing it – anjanb Oct 15 '08 at 3:35
feedback

17 Answers

up vote 13 down vote accepted

soapUI will do the job as well, check out this blog post to get started.

link|improve this answer
feedback

Please try Firefox addon Poster , which is simple to use and gets you up nd running quickly

link|improve this answer
3  
Great tool for REST testing. – Bob Mar 23 '09 at 12:48
1  
Actually, I take back my +1. When inspecting the traffic Poster sends through, it is malformed which causes problems for my webservice. When you add parameters and do either POST or PUT it will not actually send those parameters and it will not send a content-type unless you explicitly add content. – Earlz Mar 25 '10 at 16:44
feedback

You can exercise web services using fairly trivial bits of Python. Depending on your security, you may be able to simply use Python's urllib or urllib2 to do do you REST requests and examine your answers.

Additionally, you might want to use Python unittest to control the execution of the Python tests of your REST services.

class TestSomeREST( unittest.TestCase ):
    def setUp(self):
        REALM = "blah@blah.com"
        self.client= RESTClient( "localhost", 18000, "tester", "tester", REALM )
    def test_1_get(self):
        response = self.client.get('/this/that/other/2/')
        self.failUnlessEqual(200, response.status_code)
        j1= JSONDecoder().decode(response.content)
        self.assertEquals(2, j1[0]['pk'] )
        entity= j1[0]['fields']
        self.assertEquals('Some Other Group', entity['name'])
        self.assertEquals('E1G2', entity['customer_id'])

The RESTClient class uses urllib2 to pass through digest authentication for each request. It's rather complex, but I can share the essence if it's of interest.

link|improve this answer
great answer. I personally think that this approach is the most convenient. – MaciekTalaska Aug 12 '10 at 9:15
1  
I was about to upvote this answer, but I had already done that :) – Anders Dec 20 '10 at 16:15
feedback

CURL Gets you halfway there. The other half is checking the headers, response codes and entity content to make sure its good. You could use a variety of tools for that (in shell scripting land, piping the header and contents to files, and diffing them might just do the trick). It wouldn't be that difficult to further refine the toolset, maybe stacking curl up with the unit-testing framework of your choice.

I built a rest webservice testing panel with AJAX. It wasn't that difficult at all actually. You have some security issues to work out (i.e. making sure that you have the test suite on the same server, or maybe signed Javascript.)

link|improve this answer
Yes, CURL rules for REST testing. curl.haxx.se – bortzmeyer Oct 15 '08 at 8:22
feedback

Check out Fiddler

link|improve this answer
feedback

I don't have tested it yet but this Java app seems to be nice to test REST services. There is also a tutorial on Javalobby about it.

Java App: http://code.google.com/p/rest-client/

Tuto: http://java.dzone.com/announcements/wiztoolsorg-restclient-21-rele

link|improve this answer
feedback

you can use the Simple REST Client is an extension for Google Chrome too https://chrome.google.com/webstore/detail/fhjcajmcbmldlhcimfajhfbgofnpcjmb

link|improve this answer
+1 Simple and exactly what I needed. – Adam Jaskiewicz Feb 18 '11 at 20:38
feedback

SOA Cleaner, is a test tool that tests both soap and rest (also WCF, but it seems you don't need that feature). It's very intuative, and usable. Written in .NET. A free version is also available. can be downloaded from http://xyrow.com. Good luck!

link|improve this answer
feedback

To test a REST service you can try REST Assured which makes it very simple to test REST services and validating the response in Java (using JUnit or TestNG).

link|improve this answer
feedback

I'm using REST console extension for Google Chrome and It's by far the best i've tried. It also supports various security mechanisms like OAuth

(update: fix link)

link|improve this answer
1  
the project has moved to "github.com/codeinchaos/rest-console"; and the chrome app is available at: chrome.google.com/webstore/detail/… – Ahmad Nassri Sep 27 '11 at 15:11
feedback

Try Python's httplib. It's very easy, you specify the method, url, and use urllib.urlencode for the parameters/POST body.

This can be combined with the builtin unittest module if you like, for reporting of errors.

link|improve this answer
feedback

I wrote about calling REST webservices at my blog, see http://ghads.wordpress.com/2008/09/24/calling-a-rest-webservice-from-java-without-libs/

This could be easy utilized for a JUnit testcase or so. There is also a list of some geocoding webservices for testing.

If I shall post the code here, leave me a comment.

link|improve this answer
feedback

I've been using JMeter for this, especially for stuff like load testing. It's similar to SoapUI (which I've also used), but geared more toward testing web pages, which makes it pretty decent at testing RESTful services, too.

link|improve this answer
feedback

I've written a program specifically for testing REST Web Services. Its a pretty simple application written in .NET 2.0 (I've only tested it on Windows Vista, but should work on XP also). The application uses HttpWebRequest to make requests, and displays the resulting response, as well as the headers for the request and response. I've done a bit of testing, but I thought it might help you test your web services.

REST Test

link|improve this answer
feedback

I'm currently investigating wsclient CLI app for this purpose (http://wso2.org/library/3362). It is quite promising, and can be used to hack a quick test from a bash shell. Of course, as many mentioned here, many of the tools that come with a *nix system will do the job with a tidbit of coding/scripting

link|improve this answer
feedback

OnionTest still beta , but quite useful

link|improve this answer
feedback

If you like using Ruby there's a REST-Client gem for it

For testers I find ruby is a really easy language to learn, and it has some excecllent tools like Cucumber for doing BDD style acceptance tests.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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