2016-07-22 7 views
1

내가 처리 보고서의 모델/객체없이 컨트롤러가 레일 응용 프로그램이 있습니다테스트 캉캉 능력

# reports_controller.rb 

class ReportsController < ApplicationController 

    authorize_resource :class => false 

    def index 
    end 

    def report_title 
    # etc. 
    end 

    # etc. 

end 

사용자 개체 중 하나의 역할을 할 수 있습니다 : 관리자, 일반 또는 뷰어. 관리자는 모든 작업을 수행 할 수 있으며 일반적인 사용자에게는 규칙이 여러 개 있으며 뷰어는 앱의 개체를 사용하여 아무 것도 할 수 없지만 모든 보고서를 볼 수는 있습니다.

# ability.rb 

def initialize(user) 
    if user.admin? 
    can :manage, :all 

    elsif user.normal? 
    # stuff according to business rules... 

    elsif user.viewer? 
    can [:index, :report_title, ...], :report 
    end 
end 

(다른 컨트롤러의 모든 load_and_authorize_resource을 가지고) 의도 한대로이 작동하지만, 내가 ability.rb에서이 라인을 테스트 장치에 대해 어떻게 가야합니까? 다른 단위 테스트를 통해 ability_spec.rb에서 수행 할 수 있습니까? 아니면 요청을 통해서만 테스트해야합니까?

그런데 요청을 통한 테스트가 작동하지만 여기서는 대신 테스트 할 수 있는지 궁금합니다.

# ability_spec.rb 

RSpec.describe User do 
    describe "abilities" do 
    subject(:ability){ Ability.new(user) } 

    CRUD = [:create, :read, :update, :destroy] 
    ALL_MODELS = # a list of models 

    # ... 

    context "a report viewer" do 
     let(:user){ FactoryGirl.create(:user, :viewer) } 

     it 'cannot do anything with any objects' do 
     ALL_MODELS.each do |object| 
      CRUD.each do |action| 
      should_not be_able_to(action, object) 
      end 
     end 
     end 

     it 'can access all the report actions' do 
     # ??? 
     end 
    end 
    end 
end 

답변

1

예, 해당 능력은 ability_spec.rb에서 테스트 할 수 있어야합니다. 나는 다음과 같은 라인이 작동하지 않을 수 있습니다 추가 생각 :

it 'can access all the report actions' do 
    should be_able_to :index, ReportsController 
    should be_able_to :report_title, ReportsController 
end 

대신 falseauthorize_resource :class => ReportsController을 설정하고 기호 :report 대신 can [:index, :report_title, ...], :ReportsController를 사용하는 경우.

나는 그것을 시도하지 않았으므로 효과가 있는지 알려 주시기 바랍니다.

+0

큰 도움이되었습니다. – australis