2011-11-01 104 views
10

创建控制器InherritedResource如何使用测试用嵌套路由控制器rspec的

class AppsController < InheritedResources::Base 
    belongs_to :company 

    # Devise 
    before_filter :login_or_oauth_required 
    # CanCan 
    load_and_authorize_resource 
end 

,并尝试通过该方法与Rspec的测试它

require "spec_helper" 

include Devise::TestHelpers 

describe AppsController do 
    before(:each) do 
    @company_1 = Factory.build(:company) 
    application_1 = Factory.create(:application, :company => @company_1) 
    application_2 = Factory.create(:application, :company => @company_1) 
    application_3 = Factory.create(:application, :company => @company_1)  
    @company_2 = Factory.build(:company) 

    @user_1 = Factory.create(:user) 
    role_1 = Factory.create(:publisher_role, :company => @company_1) 
    profile_1 = Factory.create(:profile, :company => @company_1, :user => @user_1, :roles => [role_1]) 
    end 

    describe "index action" do 
    it "user_1 should have 3 applications from company_1" do 
     sign_in @user_1 
     params = {"company_id"=>"1"} 
     get :index 
     assigns[:apps].should have(3).items 
    end 
    end 
end 

结果是

Failure/Error: get :index 
    ActionController::RoutingError: 
     No route matches {:controller=>"apps"} 

如何告诉Rspec“获取”我的嵌套路线

我的路线

resources :companies do 
    resources :apps do 
     resources :shelves do 
     resources :publications 
     end 
    end 
    end 

我尽量遵循这一问题How to test controllers with nested routes using Rspec?但它不是我的情况下

我使用的Rails 3.1.1和2.7 rspac

+1

FWIW,Rails的导游劝阻嵌套资源超出一平“的资源不应该被嵌套超过10层深,”(http://guides.rubyonrails.org/routing.html#nested-resources )向读者提及这个[monstrosity](http://weblog.jamisbuck.org/2007/2/5/nesting-resources)。但你做watcha必须做。 – brntsllvn

回答

39

我找到了解决方案的工作:-P

我所做的只是从

get :index 

get :index, :company_id => @company_1.id 
+0

或在新的rspec语法'get:index,params:{company_id:@ company_1.id}' –

相关问题