Best tool/framework for testing a RESTful service - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T21:01:12Zhttp://stackoverflow.com/feeds/question/414875http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/414875/best-tool-framework-for-testing-a-restful-service1Best tool/framework for testing a RESTful servicesammich2009-01-05T23:16:28Z2009-01-08T16:17:23Z
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/414875/best-tool-framework-for-testing-a-restful-service/414898#4148981Answer by Kevin Davis for Best tool/framework for testing a RESTful serviceKevin Davis2009-01-05T23:25:35Z2009-01-05T23:25:35Z<p>I really like Shoulda (<a href="http://www.thoughtbot.com/projects/shoulda" rel="nofollow">http://www.thoughtbot.com/projects/shoulda</a>)</p>
<p>They had a really interesting discussion on their bug tracker about why they removed the 'should_be_restful' macro they had: (<a href="http://thoughtbot.lighthouseapp.com/projects/5807/tickets/78-deprecate-should_be_restful" rel="nofollow">http://thoughtbot.lighthouseapp.com/projects/5807/tickets/78-deprecate-should_be_restful</a>)</p>
http://stackoverflow.com/questions/414875/best-tool-framework-for-testing-a-restful-service/414907#4149070Answer by S.Lott for Best tool/framework for testing a RESTful serviceS.Lott2009-01-05T23:29:11Z2009-01-05T23:29:11Z<p><a href="http://www.python.org" rel="nofollow">Python</a>'s <a href="http://docs.python.org/library/urllib2.html" rel="nofollow">urllib2</a> and <a href="http://docs.python.org/library/unittest.html" rel="nofollow">unittest</a> are what we use to test RESTful services.</p>
http://stackoverflow.com/questions/414875/best-tool-framework-for-testing-a-restful-service/424793#4247930Answer by LiorH for Best tool/framework for testing a RESTful serviceLiorH2009-01-08T15:55:36Z2009-01-08T15:55:36Z<p>I have heard about SoapUI that is very good, but never tried it. They recently added support for RESTful API
<a href="http://www.soapui.org/" rel="nofollow">http://www.soapui.org/</a></p>
<p>I have also heard about iTKO:
<a href="http://www.itko.com/" rel="nofollow">http://www.itko.com/</a></p>
<p>We are using HP Service Test, no built in REST support, but general HTTP support + built in support for manipulating XMLs.</p>
http://stackoverflow.com/questions/414875/best-tool-framework-for-testing-a-restful-service/424882#4248820Answer by Wouter van Nifterick for Best tool/framework for testing a RESTful serviceWouter van Nifterick2009-01-08T16:17:23Z2009-01-08T16:17:23Z<p>With <strong>Fiddler</strong> (free as in beer, provided my Microsoft) you can easily monitor what's going on under the hood of your HTTP traffic.</p>
<p>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.</p>
<p>I can't live without it when I do any HTTP programming.</p>
<p><a href="http://www.fiddlertool.com/fiddler/" rel="nofollow">http://www.fiddlertool.com/fiddler/</a></p>