Functional testing of a RESTful POST in Ruby on Rails - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T12:30:52Z http://stackoverflow.com/feeds/question/336452 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/336452/functional-testing-of-a-restful-post-in-ruby-on-rails 2 Functional testing of a RESTful POST in Ruby on Rails Theodore 2008-12-03T07:59:29Z 2008-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 -1 Answer by Mike Breen for Functional testing of a RESTful POST in Ruby on Rails Mike Breen 2008-12-03T12:54:24Z 2008-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#337111 0 Answer by Matt Burke for Functional testing of a RESTful POST in Ruby on Rails Matt Burke 2008-12-03T13:33:41Z 2008-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#339542 4 Answer by Theodore for Functional testing of a RESTful POST in Ruby on Rails Theodore 2008-12-04T03:40:27Z 2008-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 -1 Answer by Nils for Functional testing of a RESTful POST in Ruby on Rails Nils 2008-12-12T13:51:13Z 2008-12-12T13:51:13Z <p>I just wrote a test script using Net:HTTP to test the REST service.</p>