gpt4 book ai didi

ruby-on-rails - Rspec 测试 API 版本控制

转载 作者:数据小太阳 更新时间:2023-10-29 07:35:54 25 4
gpt4 key购买 nike

我正在使用 rails 4.1.8 中的 web api,我正在做一些测试,但总是返回我

Failure/Error: post '/v1/users', subdomain: 'api', user: @user.to_json, format: :json
ActionController::UrlGenerationError:
No route matches {:action=>"/v1/users", :controller=>"api/v1/users", :format=>:json, :subdomain=>"api", :user=>"JSON_OBJ"}

但是如果我使用 Advance Rest Console 在浏览器中测试它,它可以工作,我不知道我做错了什么

这是我的代码

路线.rb

namespace :api, path: '/', constraints: {subdomain: 'api'}, defaults: { format: :json } do
namespace :v1 do
with_options except: [:edit, :new] do |except|
except.resources :users do
collection do
post 'login'
post 'showme'
end
end
except.resources :products
except.resources :locations
end
end
end

和我的 Controller 规范

module API
module V1
describe UsersController do
before do
request.host = "api.example.com"
expect({:post => "http://#{request.host}/v1/users"}).to(
route_to( controller: "api/v1/users",
action: "create",
subdomain: 'api',
format: :json
)
) # => PASS

# token expectations
@auth_token = allow(JWT::AuthToken).to(
receive(:make_token).and_return("mysecretkey")
)
expect(JWT::AuthToken.make_token({}, 3600)).to eq("mysecretkey")
end
describe "Create User" do
before(:each) do
@user = FactoryGirl.attributes_for :user
end

it 'should return a token' do
post '/v1/users', subdomain: 'api', user: @user.to_json, format: :json # Error
response_body = JSON.parse(response.body, symbolize_names: true)
expect(response_body['token']).to eql "mysecretkey"
end
end
end
end
end

rake 路线

   login_api_v1_users POST   /v1/users/login(.:format)   api/v1/users#login {:format=>:json, :subdomain=>"api"}

showme_api_v1_users POST /v1/users/showme(.:format) api/v1/users#showme {:format=>:json, :subdomain=>"api"}

api_v1_users GET /v1/users(.:format) api/v1/users#index {:format=>:json, :subdomain=>"api"}

POST /v1/users(.:format) api/v1/users#create {:format=>:json, :subdomain=>"api"}

api_v1_user GET /v1/users/:id(.:format) api/v1/users#show {:format=>:json, :subdomain=>"api"}

PATCH /v1/users/:id(.:format) api/v1/users#update {:format=>:json, :subdomain=>"api"}

PUT /v1/users/:id(.:format) api/v1/users#update {:format=>:json, :subdomain=>"api"}

DELETE /v1/users/:id(.:format) api/v1/users#destroy {:format=>:json, :subdomain=>"api"}

最佳答案

http://api.rubyonrails.org/classes/ActionController/TestCase/Behavior.html 中所述在 https://www.relishapp.com/rspec/rspec-rails/docs/controller-specs 中引用,您的 RSpec 示例中 post 的第一个参数是要调用的 Controller 方法的名称(即 :create 在您的情况下),而不是该方法的路由。

关于ruby-on-rails - Rspec 测试 API 版本控制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27344982/

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