gpt4 book ai didi

ruby-on-rails - 如何在 Rails 功能测试中发送原始发布数据?

转载 作者:IT老高 更新时间:2023-10-28 12:44:56 26 4
gpt4 key购买 nike

我希望将原始发布数据(例如未参数化的 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 并在 request 中检查了这个 RAW_POST_DATA环境哈希。

关于ruby-on-rails - 如何在 Rails 功能测试中发送原始发布数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2103977/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com