I'm looking to send raw post data (e.g. unparamaterized json) to one of my controllers for testing:

class LegacyOrderUpdateControllerTest < ActionController::TestCase
 test "sending json" do
   post :index, '{"foo":"bar", "bool":true}'
 end
end

but this gives me a NoMethodError: undefined method `symbolize_keys' for #<String:0x00000102cb6080>

What is the correct way to send raw post data in ActionController::TestCase?

Here is some controller code

def index
    post_data = request.body.read
    req = JSON.parse(post_data)

link|improve this question

I'm curious how you do this, too, for testing a JSON-based API. – tadman Jan 20 '10 at 18:49
feedback

6 Answers

up vote 21 down vote accepted

I ran across the same issue today and found a solution.

In your test_helper.rb define the following method inside of ActiveSupport::TestCase:

  def raw_post(action, params, body)
    @request.env['RAW_POST_DATA'] = body
    response = post(action, params)
    @request.env.delete('RAW_POST_DATA')
    response
  end

In your functional test, use it just like the post method but pass the raw post body as the third argument.

class LegacyOrderUpdateControllerTest < ActionController::TestCase
 test "sending json" do
   raw_post :index, {}, {:foo => "bar", :bool => true}.to_json
 end
end

I tested this on Rails 2.3.4 when reading the raw post body using

request.raw_post

instead of

request.body.read

If you look at the source code you'll see that raw_post just wraps request.body.read with a check for this RAW_POST_DATA in the request env hash.

link|improve this answer
You rock, thanks – brian Jan 21 '10 at 4:34
1  
This approach continues to work correctly in Rails 3.1 – cfeduke Dec 12 '11 at 6:12
Huh, yeah And Rails 3.2 too. Thanks! – zigomir Feb 12 at 21:05
Make sure you're using request.raw_post (as in this answer) instead of request.body when parsing the JSON in your controller, or you'll get a weird error about "can't convert StringIO into String". – Luke Francl Mar 6 at 18:13
feedback

Looking at stack trace running a test you can acquire more control on request preparation: ActionDispatch::Integration::RequestHelpers.post => ActionDispatch::Integration::Session.process => Rack::Test::Session.env_for

You can pass json string as :params AND specify a content type "application/json". In other case content type will be set to "application/x-www-form-urlencoded" and your json will be parsed properly.

So all you need is to specify "CONTENT_TYPE":

post :index, '{"foo":"bar", "bool":true}', "CONTENT_TYPE" => 'application/json'
link|improve this answer
This does not work for me. I get an error like "undefined method `symbolize_keys' for #<String:0x00000102b4b0d8>" – Luke Francl Mar 6 at 18:11
feedback

post :index, {:foo=> 'bar', :bool => 'true'}

link|improve this answer
That's not raw JSON, that's the hashed interpretation of it. – tadman Jan 20 '10 at 18:48
feedback

Maybe it's the way you're formatting your JSON, it might need to be escaped some how? Try doing this:

post :index, :data => {:foo => 'bar', :bool => true }.to_json

This will turn the hash into json, and hopefully that should work. If not... well then I'm all out of ideas =)

link|improve this answer
feedback

The post method expects a hash of name-value pairs, so you'll need to do something like this:

post :index, :data => '{"foo":"bar", "bool":true}'

Then, in your controller, get the data to be parsed like this:

post_data = params[:data]
link|improve this answer
I've tried this, it needs to be completely raw though {"response":"error","errors":"can't parse request: 598: unexpected token at 'data= – brian Jan 20 '10 at 19:23
How are you parsing the JSON in your controller? Could you add some controller code to your question? – Alex Reisner Jan 20 '10 at 19:25
ok I will do that now – brian Jan 20 '10 at 19:31
I've added a modification to your controller code in my answer. – Alex Reisner Jan 20 '10 at 19:51
feedback

I actually solved the same issues just adding one line before simulating the rspec post request. What you do is to populate the "RAW_POST_DATA". I tried to remove the attributes var on the post :create, but if I do so, it do not find the action.

Here my final solution.

def do_create(attributes)
  request.env['RAW_POST_DATA'] = attributes.to_json
  post :create, attributes
end 

In the controller the code you need to read the JSON is something similar to this

  @property = Property.new(JSON.parse(request.body.read))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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