Sha256: 3accfac8157567ea408f1beda6155ec8326549ee9ddcb2210c9dad92e6455ede

Contents?: true

Size: 1.58 KB

Versions: 16

Compression:

Stored size: 1.58 KB

Contents

module Spree
  module TestingSupport
    module AuthorizationHelpers
      module CustomAbility
        def build_ability(&block)
          block ||= proc{ |u| can :manage, :all }
          Class.new do
            include CanCan::Ability
            define_method(:initialize, block)
          end
        end
      end

      module Controller
        include CustomAbility

        def stub_authorization!(&block)
          ability_class = build_ability(&block)
          before do
            allow(controller).to receive(:current_ability).and_return(ability_class.new(nil))
          end
        end
      end

      module Request
        include CustomAbility

        def stub_authorization!
          ability = build_ability

          after(:all) do
            Spree::Ability.remove_ability(ability)
          end

          before(:all) do
            Spree::Ability.register_ability(ability)
          end

          before do
            allow_any_instance_of(Api::BaseController).to receive(:try_spree_current_user).and_return(Spree.user_class.new)
          end
        end

        def custom_authorization!(&block)
          ability = build_ability(&block)
          after(:all) do
            Spree::Ability.remove_ability(ability)
          end
          before(:all) do
            Spree::Ability.register_ability(ability)
          end
        end
      end
    end
  end
end

RSpec.configure do |config|
  config.extend Spree::TestingSupport::AuthorizationHelpers::Controller, :type => :controller
  config.extend Spree::TestingSupport::AuthorizationHelpers::Request, :type => :feature
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
spree_core-3.0.0.rc3 lib/spree/testing_support/authorization_helpers.rb
spree_core-2.4.4 lib/spree/testing_support/authorization_helpers.rb
spree_core-2.3.7 lib/spree/testing_support/authorization_helpers.rb
spree_core-3.0.0.rc1 lib/spree/testing_support/authorization_helpers.rb
spree_core-2.4.3 lib/spree/testing_support/authorization_helpers.rb
spree_core-2.4.2 lib/spree/testing_support/authorization_helpers.rb
spree_core-2.3.6 lib/spree/testing_support/authorization_helpers.rb
spree_core-2.4.1 lib/spree/testing_support/authorization_helpers.rb
spree_core-2.4.0 lib/spree/testing_support/authorization_helpers.rb
spree_core-2.3.5 lib/spree/testing_support/authorization_helpers.rb
spree_core-2.4.0.rc3 lib/spree/testing_support/authorization_helpers.rb
spree_core-2.4.0.rc2 lib/spree/testing_support/authorization_helpers.rb
spree_core-2.4.0.rc1 lib/spree/testing_support/authorization_helpers.rb
spree_core-2.3.4 lib/spree/testing_support/authorization_helpers.rb
spree_core-2.3.3 lib/spree/testing_support/authorization_helpers.rb
spree_core-2.3.2 lib/spree/testing_support/authorization_helpers.rb