mirror of
https://github.com/omniauth/omniauth.git
synced 2022-11-09 12:31:49 -05:00
61 lines
1.3 KiB
Ruby
61 lines
1.3 KiB
Ruby
if RUBY_VERSION >= '1.9'
|
|
require 'simplecov'
|
|
require 'coveralls'
|
|
|
|
SimpleCov.formatters = [
|
|
SimpleCov::Formatter::HTMLFormatter,
|
|
Coveralls::SimpleCov::Formatter
|
|
]
|
|
|
|
SimpleCov.start do
|
|
add_filter '/spec/'
|
|
add_filter '/vendor/'
|
|
minimum_coverage(92.5)
|
|
end
|
|
end
|
|
|
|
require 'rspec'
|
|
require 'rack/test'
|
|
require 'omniauth'
|
|
require 'omniauth/test'
|
|
|
|
OmniAuth.config.logger = Logger.new('/dev/null')
|
|
|
|
RSpec.configure do |config|
|
|
config.include Rack::Test::Methods
|
|
config.extend OmniAuth::Test::StrategyMacros, :type => :strategy
|
|
config.expect_with :rspec do |c|
|
|
c.syntax = :expect
|
|
end
|
|
end
|
|
|
|
class ExampleStrategy
|
|
include OmniAuth::Strategy
|
|
attr_reader :last_env
|
|
option :name, 'test'
|
|
|
|
def call(env)
|
|
options[:dup] ? super : call!(env)
|
|
end
|
|
|
|
def initialize(*args, &block)
|
|
super
|
|
@fail = nil
|
|
end
|
|
|
|
def request_phase
|
|
options[:mutate_on_request].call(options) if options[:mutate_on_request]
|
|
@fail = fail!(options[:failure]) if options[:failure]
|
|
@last_env = env
|
|
return @fail if @fail
|
|
raise('Request Phase')
|
|
end
|
|
|
|
def callback_phase
|
|
options[:mutate_on_callback].call(options) if options[:mutate_on_callback]
|
|
@fail = fail!(options[:failure]) if options[:failure]
|
|
@last_env = env
|
|
return @fail if @fail
|
|
raise('Callback Phase')
|
|
end
|
|
end
|