我希望将原始发布数据(例如未参数化的 JSON)发送到我的一个 Controller 进行测试:
class LegacyOrderUpdateControllerTest < ActionController::TestCase
test "sending json" do
post :index, '{"foo":"bar", "bool":true}'
end
end
但这给了我一个
NoMethodError: undefined method `symbolize_keys' for #<String:0x00000102cb6080>
错误。在
ActionController::TestCase
中发送原始帖子数据的正确方法是什么?这是一些 Controller 代码:
def index
post_data = request.body.read
req = JSON.parse(post_data)
end
最佳答案
我今天遇到了同样的问题并找到了解决方案。
在您的 test_helper.rb
中,在 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
在您的功能测试中,像
post
方法一样使用它,但将原始帖子正文作为第三个参数传递。class LegacyOrderUpdateControllerTest < ActionController::TestCase
test "sending json" do
raw_post :index, {}, {:foo => "bar", :bool => true}.to_json
end
end
我在使用 Rails 2.3.4 读取原始帖子正文时对此进行了测试
request.raw_post
代替
request.body.read
如果您查看 source code,您会看到
raw_post
只是包装了 request.body.read
并检查了 RAW_POST_DATA
中的 request
哈希值在 1341235 中关于ruby-on-rails - 如何在 Rails 功能测试中发送原始帖子数据?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2103977/