Rspec的测试API版本

问题描述:

我与Web API工作在导轨4.1.8,我做了一些测试,但总是返回我Rspec的测试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"} 

,但如果我提前休息测试它在浏览器控制台它的作品,我不知道我做错了

这里是我的代码

的routes.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 

和我的控制器规格

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 routes

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"} 
+0

如果您将'post'/ v1/users''更改为'post api_v1_users',该怎么办? – 2014-12-07 16:45:43

+0

同样的错误'没有路线匹配{:行动=>“api_v1_users”,:控制器=>“API/V1 /用户”,...}既不''后api_v1_users_url'也不''后api_v1_users_path' – sescob27 2014-12-07 17:00:52

http://api.rubyonrails.org/classes/ActionController/TestCase/Behavior.html其在https://www.relishapp.com/rspec/rspec-rails/docs/controller-specs引用所描述的,第一个参数在RSpec的例子post被调用控制器方法的名称(即:create在你的情况),而不是该方法的路线。

+0

谢谢,我没有看到 – sescob27 2014-12-07 17:16:19

+0

不客气。查看引用该页面的RSpec文档的更新答案。 – 2014-12-07 17:57:02