Rspec失败,ActionController::UrlGenerationError
我认为有效的网址。我已经尝试搞乱Rspec请求的参数,以及使用routes.rb,但我仍然遗漏了一些东西。
奇怪的是,当用curl本地测试时,它按预期工作100%。
错误:
Failure/Error: get :index, {username: @user.username}
ActionController::UrlGenerationError:
No route matches {:action=>"index", :controller=>"api/v1/users/devices", :username=>"isac_mayer"}
相关代码:
规格/ API / V1 /用户/ devices_controller_spec.rb
require 'rails_helper'
RSpec.describe Api::V1::Users::DevicesController, type: :controller do
before do
@user = FactoryGirl::create :user
@device = FactoryGirl::create :device
@user.devices << @device
@user.save!
end
describe "GET" do
it "should GET a list of devices of a specific user" do
get :index, {username: @user.username} # <= Fails here, regardless of params. (Using FriendlyId by the way)
# expect..
end
end
end
应用程序/控制器/ API / V1 /用户/ devices_controller.rb
class Api::V1::Users::DevicesController < Api::ApiController
respond_to :json
before_action :authenticate, :check_user_approved_developer
def index
respond_with @user.devices.select(:id, :name)
end
end
配置/ routes.rb中
namespace :api, path: '', constraints: {subdomain: 'api'}, defaults: {format: 'json'} do
namespace :v1 do
resources :checkins, only: [:create]
resources :users do
resources :approvals, only: [:create], module: :users
resources :devices, only: [:index, :show], module: :users
end
end
end
来自rake routes
api_v1_user_devices GET /v1/users/:user_id/devices(.:format) api/v1/users/devices#index {:format=>"json", :subdomain=>"api"}
答案 0 :(得分:1)
索引操作需要:user_id
参数,但您没有在params哈希中提供一个参数。尝试:
get :index, user_id: @user.id
错误消息有点令人困惑,因为您实际上并未提供URL;相反,你在测试控制器上调用#get
方法,并传递一个参数列表,第一个是动作(:index
),第二个是参数哈希。
控制器规范是控制器操作的单元测试,他们希望正确指定请求参数。路由不是控制器的责任;如果您想验证特定URL是否路由到正确的控制器操作(因为正如您所提到的,您使用的是友好ID),您可能需要考虑routing spec。