我继承了一个代码库。在考虑重构之前,我正忙于编写集成测试来限制应用程序功能。
我在控制器关注点中有以下几行
before_action
。它似乎读取了请求正文。这里的 json
值用于提取用于验证请求的标识符。
request.body.rewind
body = request.body.read
json = JSON.parse(body) unless body.empty?
我需要测试身份验证是否正确进行。 如何为 GET 请求规范设置
request.body
?
我认为你应该能够通过请求环境来做到这一点
RAW_POST_DATA
get root_path, {}, 'RAW_POST_DATA' => 'raw json string'
request.raw_post # "raw json string"
@rails_post_5
require "rails_helper"
RSpec.describe "Widget management", :type => :request do
it "creates a Widget and redirects to the Widget's page" do
headers = { "CONTENT_TYPE" => "application/json" }
post "/widgets", :params => '{ "widget": { "name":"My Widget" } }', :headers => headers
expect(response).to redirect_to(assigns(:widget))
end
end
或者只是
post "/widgets", params: '{ "widget": { "name":"My Widget" } }'