我正在使用 Goliath-Grape 构建 RESTful Web 服务器,并将 RSpec 用于 TDD。当进行 API PUT 调用 (/api/v1/users/:id) 以从浏览器更新现有记录时,我得到预期的 204 响应。
但是当我通过 RSpec 测试相同的 API 调用时,我得到了 405。响应头看起来像这样:
PUT /api/v1/users/:id
{"ALLOW"=>"OPTIONS, POST, GET, HEAD", "CONTENT_TYPE"=>"text/plain", "CONTENT_LENGTH"=>"0", "SERVER"=>"Goliath", "DATE"=>"Fri, 09 Aug 2013 01:37:09 GMT"}
来自 api_spec.rb 的代码片段
describe "PUT /api/v1/users/:id" do
it "update a user and return 204" do
with_api(Application, api_options) do
put_request(:path => "/api/v1/users/#{user_id}", :body => '{"user": {"email": "test_again@example.com"}', :head => {'Content-Type' => 'application/json'}) do |c|
# .....
end
end
end
end
更新方法的代码片段:
# Update
put "/:id" do
if User.where(_id: params['id']).exists?
User.where(_id: params['id']).update(params['user'])
status(204)
else
error! "Bad Request", 400
end
end
知道为什么它会在 RSpec 测试中中断。
谢谢