Functional testing of a RESTful POST in Ruby on Rails - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T12:30:52Zhttp://stackoverflow.com/feeds/question/336452http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/336452/functional-testing-of-a-restful-post-in-ruby-on-rails2Functional testing of a RESTful POST in Ruby on RailsTheodore2008-12-03T07:59:29Z2008-12-12T13:51:13Z
<p>I'd like to write a functional test of a RESTful web service I'm working on in a Ruby on Rails app. </p>
<p>The test is of a POST request where the body of the request is a plain XML doc and not a form. Any pointers on how to do this? The problem I'm encountering is how to specify the body XML in the call to the post method.</p>
http://stackoverflow.com/questions/336452/functional-testing-of-a-restful-post-in-ruby-on-rails/337001#337001-1Answer by Mike Breen for Functional testing of a RESTful POST in Ruby on RailsMike Breen2008-12-03T12:54:24Z2008-12-03T12:54:24Z<p>Check out <a href="http://github.com/thoughtbot/shoulda/tree/master" rel="nofollow">shoulda</a>'s "should_be_restful" macro. This macro will soon be <a href="http://thoughtbot.lighthouseapp.com/projects/5807/tickets/78-deprecate-should_be_restful" rel="nofollow">deprecated</a> from shoulda and only available in the in <a href="http://github.com/seanhussey/woulda/tree/master" rel="nofollow">woulda</a> gem.</p>
http://stackoverflow.com/questions/336452/functional-testing-of-a-restful-post-in-ruby-on-rails/337111#3371110Answer by Matt Burke for Functional testing of a RESTful POST in Ruby on RailsMatt Burke2008-12-03T13:33:41Z2008-12-03T13:33:41Z<p>You may be able to do it by setting <code>@request.env['RAW_POST_BODY']</code> to the desired input stream.</p>
http://stackoverflow.com/questions/336452/functional-testing-of-a-restful-post-in-ruby-on-rails/339542#3395424Answer by Theodore for Functional testing of a RESTful POST in Ruby on RailsTheodore2008-12-04T03:40:27Z2008-12-04T03:40:27Z<p>The following worked for me:</p>
<pre><code>@request.env['RAW_POST_DATA'] = MY_XML_STRING
post :create
</code></pre>
http://stackoverflow.com/questions/336452/functional-testing-of-a-restful-post-in-ruby-on-rails/362802#362802-1Answer by Nils for Functional testing of a RESTful POST in Ruby on RailsNils2008-12-12T13:51:13Z2008-12-12T13:51:13Z<p>I just wrote a test script using Net:HTTP to test the REST service.</p>