Sha256: bbe34f856b2f8c766202821c8d4bb8b7ba6dfc9e8c2382db085714ae6d2e84f3

Contents?: true

Size: 1.56 KB

Versions: 9

Compression:

Stored size: 1.56 KB

Contents

##############################################################################
#                             OmniAuth Plugin
##############################################################################

begin
  require 'omniauth'
  require 'rspectacular/mock_authentications/omniauth'

  ###
  # Tell OmniAuth to just return whatever hash we want for each auth type
  #
  OmniAuth.configure do |config|
    config.test_mode            = true
    config.mock_auth[:facebook] = OmniAuth::MockAuthentications::Facebook.authentication
    config.mock_auth[:twitter]  = OmniAuth::MockAuthentications::Twitter.authentication
    config.mock_auth[:ebay]     = OmniAuth::MockAuthentications::Ebay.authentication
  end

  ###
  # Except we don't want OmniAuth to fake anything when doing live tests
  #
  RSpec.configure do |config|
    config.around(:each, js: true) do |example|
      previous_omniauth_test_mode = OmniAuth.config.test_mode
      OmniAuth.config.test_mode   = false

      example.metadata.fetch(:mock_oauth, {}).each do |auth_type, auth_hash|
        OmniAuth.config.add_mock(auth_type, auth_hash)
      end

      example.run

      OmniAuth.config.test_mode = previous_omniauth_test_mode
    end

    config.before(:each, type: :controller, mock_oauth: ->(v) { !!v }) do |example|
      if example.metadata[:mock_oauth].is_a? Symbol
        request.env['omniauth.auth'] = OmniAuth.config.mock_auth[example.metadata[:mock_oauth]]
      else
        request.env['omniauth.auth'] = OmniAuth::AuthHash.new(example.metadata[:mock_oauth])
      end
    end
  end
rescue LoadError
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rspectacular-0.70.0 lib/rspectacular/plugins/omniauth.rb
rspectacular-0.69.0 lib/rspectacular/plugins/omniauth.rb
rspectacular-0.68.0 lib/rspectacular/plugins/omniauth.rb
rspectacular-0.67.0 lib/rspectacular/plugins/omniauth.rb
rspectacular-0.66.0 lib/rspectacular/plugins/omniauth.rb
rspectacular-0.65.0 lib/rspectacular/plugins/omniauth.rb
rspectacular-0.64.0 lib/rspectacular/plugins/omniauth.rb
rspectacular-0.63.0 lib/rspectacular/plugins/omniauth.rb
rspectacular-0.62.1 lib/rspectacular/plugins/omniauth.rb