Testing REST webservices - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T16:37:53Z http://stackoverflow.com/feeds/question/203495 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/203495/testing-rest-webservices 1 Testing REST webservices anjanb 2008-10-15T02:06:56Z 2009-09-16T08:02:59Z <p>HI There,</p> <p>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.</p> <p>1) Are there any publicly available RESTful services available on the net for free that someone could test ? <br> 2) What tools are available(and used) for testing RESTful web services ?</p> <p>Thank you in Advance,</p> <p>BR,<BR> ~A</p> http://stackoverflow.com/questions/203495/testing-rest-webservices/203556#203556 2 Answer by Jonathan Arkell for Testing REST webservices Jonathan Arkell 2008-10-15T02:41:45Z 2008-10-15T02:41:45Z <p>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.</p> <p>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.) </p> http://stackoverflow.com/questions/203495/testing-rest-webservices/203559#203559 0 Answer by TheSoftwareJedi for Testing REST webservices TheSoftwareJedi 2008-10-15T02:43:17Z 2008-10-15T02:43:17Z <p>Check out <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a></p> http://stackoverflow.com/questions/203495/testing-rest-webservices/203601#203601 1 Answer by S.Lott for Testing REST webservices S.Lott 2008-10-15T03:09:11Z 2008-10-15T03:09:11Z <p>You can exercise web services using fairly trivial bits of Python. Depending on your security, you may be able to simply use Python's <code>urllib</code> or <code>urllib2</code> to do do you REST requests and examine your answers.</p> <p>Additionally, you might want to use Python <code>unittest</code> to control the execution of the Python tests of your REST services.</p> <pre><code>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']) </code></pre> <p>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.</p> http://stackoverflow.com/questions/203495/testing-rest-webservices/203607#203607 0 Answer by Andy for Testing REST webservices Andy 2008-10-15T03:11:35Z 2008-10-15T03:11:35Z <p>Try Python's httplib. It's very easy, you specify the method, url, and use urllib.urlencode for the parameters/POST body.</p> <p>This can be combined with the builtin unittest module if you like, for reporting of errors.</p> http://stackoverflow.com/questions/203495/testing-rest-webservices/203905#203905 0 Answer by GHad for Testing REST webservices GHad 2008-10-15T06:56:35Z 2008-10-15T06:56:35Z <p>I wrote about calling REST webservices at my blog, see <a href="http://ghads.wordpress.com/2008/09/24/calling-a-rest-webservice-from-java-without-libs/" rel="nofollow">http://ghads.wordpress.com/2008/09/24/calling-a-rest-webservice-from-java-without-libs/</a></p> <p>This could be easy utilized for a JUnit testcase or so. There is also a list of some geocoding webservices for testing.</p> <p>If I shall post the code here, leave me a comment.</p> http://stackoverflow.com/questions/203495/testing-rest-webservices/204286#204286 1 Answer by vikas-patil for Testing REST webservices vikas-patil 2008-10-15T10:42:07Z 2008-10-15T10:42:07Z <p>Please try Firefox addon Poster , which is simple to use and gets you up nd running quickly</p> http://stackoverflow.com/questions/203495/testing-rest-webservices/206163#206163 0 Answer by Mike Desjardins for Testing REST webservices Mike Desjardins 2008-10-15T19:53:38Z 2008-10-15T19:53:38Z <p>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.</p> http://stackoverflow.com/questions/203495/testing-rest-webservices/390691#390691 0 Answer by Ian Hopkins for Testing REST webservices Ian Hopkins 2008-12-24T03:40:37Z 2008-12-24T03:40:37Z <p>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.</p> <p><a href="http://www.lucidhelix.com/files/RESTTest.zip" rel="nofollow">REST Test</a></p> http://stackoverflow.com/questions/203495/testing-rest-webservices/457585#457585 0 Answer by Valentin Jacquemin for Testing REST webservices Valentin Jacquemin 2009-01-19T13:31:43Z 2009-01-19T13:31:43Z <p>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.</p> <p>Java App: <a href="http://code.google.com/p/rest-client/" rel="nofollow">http://code.google.com/p/rest-client/</a></p> <p>Tuto: <a href="http://java.dzone.com/announcements/wiztoolsorg-restclient-21-rele" rel="nofollow">http://java.dzone.com/announcements/wiztoolsorg-restclient-21-rele</a></p> http://stackoverflow.com/questions/203495/testing-rest-webservices/1037408#1037408 0 Answer by Ole Lensmar for Testing REST webservices Ole Lensmar 2009-06-24T09:52:03Z 2009-06-24T09:52:03Z <p>Hi,</p> <p>soapUI (<a href="http://www.soapui.org" rel="nofollow">http://www.soapui.org</a>) will do the job as well, check out this blog post to get started: <a href="http://www.eviware.com/blogs/oleblog/?p=11" rel="nofollow">http://www.eviware.com/blogs/oleblog/?p=11</a></p> <p>regards!</p> <p>/Ole eviware.com</p> http://stackoverflow.com/questions/203495/testing-rest-webservices/1431601#1431601 1 Answer by Clangon for Testing REST webservices Clangon 2009-09-16T08:02:59Z 2009-09-16T08:02:59Z <p>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 <a href="http://xyrow.com" rel="nofollow">http://xyrow.com</a>. Good luck!</p>