Sha256: d1760c2a0e06a2c7e5dd7818045105fb593015f1d52ff09574e5f69cb3a43cb7

Contents?: true

Size: 1.66 KB

Versions: 16

Compression:

Stored size: 1.66 KB

Contents

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

begin
  require 'omniauth'
  require 'rspeckled/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 => lambda { |v| !!v }) do |example|
      request.env['omniauth.auth'] = if example.metadata[:mock_oauth].is_a? Symbol
                                       OmniAuth.config.mock_auth[example.metadata[:mock_oauth]]
                                     else
                                       OmniAuth::AuthHash.new(example.metadata[:mock_oauth])
                                     end
    end
  end
rescue LoadError
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
rspeckled-0.0.16 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.15 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.14 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.13 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.12 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.11 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.10 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.9 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.8 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.7 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.6 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.5 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.4 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.3 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.2 lib/rspeckled/plugins/omniauth.rb
rspeckled-0.0.1 lib/rspeckled/plugins/omniauth.rb