Sha256: 7919619e5389c475bf5d7b061ee59bc7317d81752945b410892d79d832514c4b

Contents?: true

Size: 1.6 KB

Versions: 74

Compression:

Stored size: 1.6 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(Spree.user_class).to receive(:find_by).
              with(hash_including(:spree_api_key)).
              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

74 entries across 74 versions & 1 rubygems

Version Path
spree_core-4.0.9 lib/spree/testing_support/authorization_helpers.rb
spree_core-4.1.15 lib/spree/testing_support/authorization_helpers.rb
spree_core-4.1.14 lib/spree/testing_support/authorization_helpers.rb
spree_core-4.0.8 lib/spree/testing_support/authorization_helpers.rb
spree_core-3.7.14.1 lib/spree/testing_support/authorization_helpers.rb
spree_core-4.1.13.1 lib/spree/testing_support/authorization_helpers.rb
spree_core-4.0.7.1 lib/spree/testing_support/authorization_helpers.rb
spree_core-4.0.7 lib/spree/testing_support/authorization_helpers.rb
spree_core-3.7.14 lib/spree/testing_support/authorization_helpers.rb
spree_core-4.1.13 lib/spree/testing_support/authorization_helpers.rb
spree_core-4.0.6 lib/spree/testing_support/authorization_helpers.rb
spree_core-3.7.13 lib/spree/testing_support/authorization_helpers.rb
spree_core-4.0.5 lib/spree/testing_support/authorization_helpers.rb
spree_core-4.1.12 lib/spree/testing_support/authorization_helpers.rb
spree_core-3.7.12 lib/spree/testing_support/authorization_helpers.rb
spree_core-4.0.4 lib/spree/testing_support/authorization_helpers.rb
spree_core-3.7.11 lib/spree/testing_support/authorization_helpers.rb
spree_core-4.1.11 lib/spree/testing_support/authorization_helpers.rb
spree_core-4.1.10 lib/spree/testing_support/authorization_helpers.rb
spree_core-4.1.9 lib/spree/testing_support/authorization_helpers.rb