vote up 1 vote down star
1

HI There,

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 ?

Thank you in Advance,

BR,
~A

flag

17% 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

11 Answers

vote up 1 vote down

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|flag
vote up 0 vote down

Hi,

soapUI (http://www.soapui.org) will do the job as well, check out this blog post to get started: http://www.eviware.com/blogs/oleblog/?p=11

regards!

/Ole eviware.com

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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

link|flag
Great tool for REST testing. – Bob Mar 23 at 12:48
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down

Check out Fiddler

link|flag
vote up 2 vote down

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|flag
Yes, CURL rules for REST testing. curl.haxx.se – bortzmeyer Oct 15 '08 at 8:22

Your Answer

Get an OpenID
or

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