2013-02-25 19:05:37 -05:00
|
|
|
require 'helper'
|
2011-09-03 14:08:07 -04:00
|
|
|
|
|
|
|
def make_env(path = '/auth/test', props = {})
|
|
|
|
{
|
|
|
|
'REQUEST_METHOD' => 'GET',
|
|
|
|
'PATH_INFO' => path,
|
|
|
|
'rack.session' => {},
|
2015-12-19 06:10:33 -05:00
|
|
|
'rack.input' => StringIO.new('test=true')
|
2011-09-03 14:08:07 -04:00
|
|
|
}.merge(props)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe OmniAuth::Strategy do
|
2014-01-15 23:00:46 -05:00
|
|
|
let(:app) do
|
2014-05-30 14:42:00 -04:00
|
|
|
lambda { |_env| [404, {}, ['Awesome']] }
|
2014-01-15 23:00:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
let(:fresh_strategy) do
|
|
|
|
c = Class.new
|
|
|
|
c.send(:include, OmniAuth::Strategy)
|
|
|
|
end
|
2011-09-26 12:44:17 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '.default_options' do
|
|
|
|
it 'is inherited from a parent class' do
|
2011-09-26 12:44:17 -04:00
|
|
|
superklass = Class.new
|
|
|
|
superklass.send :include, OmniAuth::Strategy
|
|
|
|
superklass.configure do |c|
|
|
|
|
c.foo = 'bar'
|
|
|
|
end
|
|
|
|
|
|
|
|
klass = Class.new(superklass)
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(klass.default_options.foo).to eq('bar')
|
2011-09-26 12:44:17 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '.configure' do
|
|
|
|
subject do
|
|
|
|
c = Class.new
|
|
|
|
c.send(:include, OmniAuth::Strategy)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when block is passed' do
|
|
|
|
it 'allows for default options setting' do
|
2013-03-14 12:38:21 -04:00
|
|
|
subject.configure do |c|
|
|
|
|
c.wakka = 'doo'
|
|
|
|
end
|
2014-01-15 23:00:46 -05:00
|
|
|
expect(subject.default_options['wakka']).to eq('doo')
|
2013-03-14 12:38:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "works when block doesn't evaluate to true" do
|
|
|
|
environment_variable = nil
|
|
|
|
subject.configure do |c|
|
|
|
|
c.abc = '123'
|
|
|
|
c.hgi = environment_variable
|
|
|
|
end
|
2014-01-15 23:00:46 -05:00
|
|
|
expect(subject.default_options['abc']).to eq('123')
|
2011-09-26 12:44:17 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'takes a hash and deep merge it' do
|
2011-09-26 12:44:17 -04:00
|
|
|
subject.configure :abc => {:def => 123}
|
|
|
|
subject.configure :abc => {:hgi => 456}
|
2014-01-15 23:00:46 -05:00
|
|
|
expect(subject.default_options['abc']).to eq('def' => 123, 'hgi' => 456)
|
2011-09-27 20:52:43 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '#skip_info?' do
|
|
|
|
it 'is true if options.skip_info is true' do
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(ExampleStrategy.new(app, :skip_info => true)).to be_skip_info
|
2011-09-27 20:52:43 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'is false if options.skip_info is false' do
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(ExampleStrategy.new(app, :skip_info => false)).not_to be_skip_info
|
2011-09-27 20:52:43 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'is false by default' do
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(ExampleStrategy.new(app)).not_to be_skip_info
|
2011-09-27 20:52:43 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'is true if options.skip_info is a callable that evaluates to truthy' do
|
|
|
|
instance = ExampleStrategy.new(app, :skip_info => lambda { |uid| uid })
|
2014-01-16 00:04:44 -05:00
|
|
|
expect(instance).to receive(:uid).and_return(true)
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(instance).to be_skip_info
|
2011-09-26 12:44:17 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '.option' do
|
|
|
|
subject do
|
|
|
|
c = Class.new
|
|
|
|
c.send(:include, OmniAuth::Strategy)
|
|
|
|
end
|
|
|
|
it 'sets a default value' do
|
2011-09-26 13:11:41 -04:00
|
|
|
subject.option :abc, 123
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(subject.default_options.abc).to eq(123)
|
2011-09-26 13:11:41 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'sets the default value to nil if none is provided' do
|
2011-09-26 13:11:41 -04:00
|
|
|
subject.option :abc
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(subject.default_options.abc).to be_nil
|
2011-09-26 13:11:41 -04:00
|
|
|
end
|
|
|
|
end
|
2011-09-26 12:44:17 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '.args' do
|
|
|
|
subject do
|
|
|
|
c = Class.new
|
|
|
|
c.send(:include, OmniAuth::Strategy)
|
|
|
|
end
|
2013-09-29 18:03:20 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'sets args to the specified argument if there is one' do
|
2017-09-28 13:07:45 -04:00
|
|
|
subject.args %i[abc def]
|
|
|
|
expect(subject.args).to eq(%i[abc def])
|
2011-09-27 14:18:08 -04:00
|
|
|
end
|
2011-09-28 11:26:27 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'is inheritable' do
|
2017-09-28 13:07:45 -04:00
|
|
|
subject.args %i[abc def]
|
2011-09-28 11:26:27 -04:00
|
|
|
c = Class.new(subject)
|
2017-09-28 13:07:45 -04:00
|
|
|
expect(c.args).to eq(%i[abc def])
|
2011-09-28 11:26:27 -04:00
|
|
|
end
|
2013-09-29 18:03:20 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'accepts corresponding options as default arg values' do
|
2017-09-28 13:07:45 -04:00
|
|
|
subject.args %i[a b]
|
2014-01-15 23:00:46 -05:00
|
|
|
subject.option :a, '1'
|
|
|
|
subject.option :b, '2'
|
2013-09-29 18:03:20 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
expect(subject.new(nil).options.a).to eq '1'
|
|
|
|
expect(subject.new(nil).options.b).to eq '2'
|
|
|
|
expect(subject.new(nil, '3', '4').options.b).to eq '4'
|
|
|
|
expect(subject.new(nil, nil, '4').options.a).to eq nil
|
2013-09-29 18:03:20 -04:00
|
|
|
end
|
2011-09-27 14:18:08 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'fetcher procs' do
|
|
|
|
subject { fresh_strategy }
|
2017-09-28 13:07:45 -04:00
|
|
|
%w[uid info credentials extra].each do |fetcher|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe ".#{fetcher}" do
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'sets and retrieve a proc' do
|
|
|
|
proc = lambda { 'Hello' }
|
2012-10-10 04:32:55 -04:00
|
|
|
subject.send(fetcher, &proc)
|
|
|
|
expect(subject.send(fetcher)).to eq(proc)
|
|
|
|
end
|
2011-09-28 13:41:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'fetcher stacks' do
|
|
|
|
subject { fresh_strategy }
|
2017-09-28 13:07:45 -04:00
|
|
|
%w[uid info credentials extra].each do |fetcher|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe ".#{fetcher}_stack" do
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'is an array of called ancestral procs' do
|
|
|
|
fetchy = proc { 'Hello' }
|
2012-10-10 04:32:55 -04:00
|
|
|
subject.send(fetcher, &fetchy)
|
2014-01-15 23:00:46 -05:00
|
|
|
expect(subject.send("#{fetcher}_stack", subject.new(app))).to eq(['Hello'])
|
2012-10-10 04:32:55 -04:00
|
|
|
end
|
2011-09-28 13:41:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-28 13:07:45 -04:00
|
|
|
%w[request_phase].each do |abstract_method|
|
2016-08-08 13:54:52 -04:00
|
|
|
context abstract_method.to_s do
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'raises a NotImplementedError' do
|
2012-10-10 04:32:55 -04:00
|
|
|
strat = Class.new
|
|
|
|
strat.send :include, OmniAuth::Strategy
|
2014-01-15 23:00:46 -05:00
|
|
|
expect { strat.new(app).send(abstract_method) }.to raise_error(NotImplementedError)
|
2012-10-10 04:32:55 -04:00
|
|
|
end
|
2011-09-27 15:59:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '#auth_hash' do
|
2011-09-27 15:59:26 -04:00
|
|
|
subject do
|
|
|
|
klass = Class.new
|
|
|
|
klass.send :include, OmniAuth::Strategy
|
|
|
|
klass.option :name, 'auth_hasher'
|
|
|
|
klass
|
|
|
|
end
|
2014-01-15 23:00:46 -05:00
|
|
|
let(:instance) { subject.new(app) }
|
2011-09-27 15:59:26 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'calls through to uid and info' do
|
2014-01-16 00:04:44 -05:00
|
|
|
expect(instance).to receive(:uid)
|
|
|
|
expect(instance).to receive(:info)
|
2011-09-27 15:59:26 -04:00
|
|
|
instance.auth_hash
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'returns an AuthHash' do
|
2013-07-09 04:08:41 -04:00
|
|
|
allow(instance).to receive(:uid).and_return('123')
|
|
|
|
allow(instance).to receive(:info).and_return(:name => 'Hal Awesome')
|
2011-09-27 15:59:26 -04:00
|
|
|
hash = instance.auth_hash
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(hash).to be_kind_of(OmniAuth::AuthHash)
|
|
|
|
expect(hash.uid).to eq('123')
|
|
|
|
expect(hash.info.name).to eq('Hal Awesome')
|
2011-09-27 15:59:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '#initialize' do
|
|
|
|
context 'options extraction' do
|
|
|
|
it 'is the last argument if the last argument is a Hash' do
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(ExampleStrategy.new(app, :abc => 123).options[:abc]).to eq(123)
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
2011-09-26 12:44:17 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'is the default options if any are provided' do
|
2013-07-09 04:08:41 -04:00
|
|
|
allow(ExampleStrategy).to receive(:default_options).and_return(OmniAuth::Strategy::Options.new(:abc => 123))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(ExampleStrategy.new(app).options.abc).to eq(123)
|
2011-09-26 12:44:17 -04:00
|
|
|
end
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
2011-09-27 14:18:08 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'custom args' do
|
|
|
|
subject do
|
|
|
|
c = Class.new
|
|
|
|
c.send(:include, OmniAuth::Strategy)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets options based on the arguments if they are supplied' do
|
2017-09-28 13:07:45 -04:00
|
|
|
subject.args %i[abc def]
|
2011-09-27 14:18:08 -04:00
|
|
|
s = subject.new app, 123, 456
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(s.options[:abc]).to eq(123)
|
|
|
|
expect(s.options[:def]).to eq(456)
|
2011-09-27 14:18:08 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '#call' do
|
|
|
|
it 'duplicates and calls' do
|
2012-10-10 04:32:55 -04:00
|
|
|
klass = Class.new
|
|
|
|
klass.send :include, OmniAuth::Strategy
|
|
|
|
instance = klass.new(app)
|
2014-01-16 00:04:44 -05:00
|
|
|
expect(instance).to receive(:dup).and_return(instance)
|
2014-01-15 23:00:46 -05:00
|
|
|
instance.call('rack.session' => {})
|
2012-10-10 04:32:55 -04:00
|
|
|
end
|
2017-09-28 14:03:36 -04:00
|
|
|
|
|
|
|
it 'raises NoSessionError if rack.session isn\'t set' do
|
|
|
|
klass = Class.new
|
|
|
|
klass.send :include, OmniAuth::Strategy
|
|
|
|
instance = klass.new(app)
|
|
|
|
expect { instance.call({}) }.to raise_error(OmniAuth::NoSessionError)
|
|
|
|
end
|
2011-09-27 15:59:26 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '#inspect' do
|
|
|
|
it 'returns the class name' do
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(ExampleStrategy.new(app).inspect).to eq('#<ExampleStrategy>')
|
2011-09-27 14:18:08 -04:00
|
|
|
end
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '#redirect' do
|
|
|
|
it 'uses javascript if :iframe is true' do
|
|
|
|
response = ExampleStrategy.new(app, :iframe => true).redirect('http://abc.com')
|
2020-02-28 22:27:14 -05:00
|
|
|
expected_body = "<script type='text/javascript' charset='utf-8'>top.location.href = 'http://abc.com';</script>"
|
|
|
|
|
|
|
|
expect(response.last).to include(expected_body)
|
2011-09-27 15:59:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '#callback_phase' do
|
|
|
|
subject do
|
|
|
|
c = Class.new
|
|
|
|
c.send(:include, OmniAuth::Strategy)
|
|
|
|
c.new(app)
|
|
|
|
end
|
2011-09-27 15:59:26 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'sets the auth hash' do
|
2011-09-27 15:59:26 -04:00
|
|
|
env = make_env
|
2013-07-09 04:08:41 -04:00
|
|
|
allow(subject).to receive(:env).and_return(env)
|
2014-01-15 23:00:46 -05:00
|
|
|
allow(subject).to receive(:auth_hash).and_return('AUTH HASH')
|
2011-09-27 15:59:26 -04:00
|
|
|
subject.callback_phase
|
2014-01-15 23:00:46 -05:00
|
|
|
expect(env['omniauth.auth']).to eq('AUTH HASH')
|
2011-09-27 15:59:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '#full_host' do
|
|
|
|
let(:strategy) { ExampleStrategy.new(app, {}) }
|
|
|
|
it 'remains calm when there is a pipe in the URL' do
|
2011-09-03 14:08:07 -04:00
|
|
|
strategy.call!(make_env('/whatever', 'rack.url_scheme' => 'http', 'SERVER_NAME' => 'facebook.lame', 'QUERY_STRING' => 'code=asofibasf|asoidnasd', 'SCRIPT_NAME' => '', 'SERVER_PORT' => 80))
|
2014-01-15 23:00:46 -05:00
|
|
|
expect { strategy.full_host }.not_to raise_error
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '#uid' do
|
|
|
|
subject { fresh_strategy }
|
2012-10-10 04:32:55 -04:00
|
|
|
it "is the current class's uid if one exists" do
|
2014-01-15 23:00:46 -05:00
|
|
|
subject.uid { 'Hi' }
|
|
|
|
expect(subject.new(app).uid).to eq('Hi')
|
2011-09-28 13:41:06 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'inherits if it can' do
|
|
|
|
subject.uid { 'Hi' }
|
2011-09-28 13:41:06 -04:00
|
|
|
c = Class.new(subject)
|
2014-01-15 23:00:46 -05:00
|
|
|
expect(c.new(app).uid).to eq('Hi')
|
2011-09-28 13:41:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-28 13:07:45 -04:00
|
|
|
%w[info credentials extra].each do |fetcher|
|
2014-01-15 23:00:46 -05:00
|
|
|
subject { fresh_strategy }
|
2012-10-10 04:32:55 -04:00
|
|
|
it "is the current class's proc call if one exists" do
|
2014-01-15 23:00:46 -05:00
|
|
|
subject.send(fetcher) { {:abc => 123} }
|
|
|
|
expect(subject.new(app).send(fetcher)).to eq(:abc => 123)
|
2011-09-28 13:41:06 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'inherits by merging with preference for the latest class' do
|
|
|
|
subject.send(fetcher) { {:abc => 123, :def => 456} }
|
2011-09-28 13:41:06 -04:00
|
|
|
c = Class.new(subject)
|
2014-01-15 23:00:46 -05:00
|
|
|
c.send(fetcher) { {:abc => 789} }
|
|
|
|
expect(c.new(app).send(fetcher)).to eq(:abc => 789, :def => 456)
|
2011-09-28 13:41:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
describe '#call' do
|
2013-01-10 12:20:16 -05:00
|
|
|
before(:all) do
|
|
|
|
@options = nil
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
let(:strategy) { ExampleStrategy.new(app, @options || {}) }
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'omniauth.origin' do
|
2017-09-28 12:22:16 -04:00
|
|
|
context 'disabled' do
|
|
|
|
it 'does not set omniauth.origin' do
|
2017-09-28 13:07:45 -04:00
|
|
|
@options = {:origin_param => false}
|
2017-09-28 12:22:16 -04:00
|
|
|
expect { strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'return=/foo')) }.to raise_error('Request Phase')
|
|
|
|
expect(strategy.last_env['rack.session']['omniauth.origin']).to eq(nil)
|
|
|
|
end
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2017-09-28 12:22:16 -04:00
|
|
|
context 'custom' do
|
|
|
|
it 'sets from a custom param' do
|
2017-09-28 13:07:45 -04:00
|
|
|
@options = {:origin_param => 'return'}
|
2017-09-28 12:22:16 -04:00
|
|
|
expect { strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'return=/foo')) }.to raise_error('Request Phase')
|
|
|
|
expect(strategy.last_env['rack.session']['omniauth.origin']).to eq('/foo')
|
|
|
|
end
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2017-09-28 12:22:16 -04:00
|
|
|
context 'default flow' do
|
|
|
|
it 'is set on the request phase' do
|
|
|
|
expect { strategy.call(make_env('/auth/test', 'HTTP_REFERER' => 'http://example.com/origin')) }.to raise_error('Request Phase')
|
|
|
|
expect(strategy.last_env['rack.session']['omniauth.origin']).to eq('http://example.com/origin')
|
|
|
|
end
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2017-09-28 12:22:16 -04:00
|
|
|
it 'is turned into an env variable on the callback phase' do
|
|
|
|
expect { strategy.call(make_env('/auth/test/callback', 'rack.session' => {'omniauth.origin' => 'http://example.com/origin'})) }.to raise_error('Callback Phase')
|
|
|
|
expect(strategy.last_env['omniauth.origin']).to eq('http://example.com/origin')
|
|
|
|
end
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2017-09-28 12:22:16 -04:00
|
|
|
it 'sets from the params if provided' do
|
|
|
|
expect { strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'origin=/foo')) }.to raise_error('Request Phase')
|
|
|
|
expect(strategy.last_env['rack.session']['omniauth.origin']).to eq('/foo')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2017-09-28 12:22:16 -04:00
|
|
|
it 'is set on the failure env' do
|
|
|
|
expect(OmniAuth.config).to receive(:on_failure).and_return(lambda { |env| env })
|
|
|
|
@options = {:failure => :forced_fail}
|
|
|
|
strategy.call(make_env('/auth/test/callback', 'rack.session' => {'omniauth.origin' => '/awesome'}))
|
|
|
|
end
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2017-09-28 12:22:16 -04:00
|
|
|
context 'with script_name' do
|
|
|
|
it 'is set on the request phase, containing full path' do
|
|
|
|
env = {'HTTP_REFERER' => 'http://example.com/sub_uri/origin', 'SCRIPT_NAME' => '/sub_uri'}
|
|
|
|
expect { strategy.call(make_env('/auth/test', env)) }.to raise_error('Request Phase')
|
|
|
|
expect(strategy.last_env['rack.session']['omniauth.origin']).to eq('http://example.com/sub_uri/origin')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is turned into an env variable on the callback phase, containing full path' do
|
|
|
|
env = {
|
|
|
|
'rack.session' => {'omniauth.origin' => 'http://example.com/sub_uri/origin'},
|
|
|
|
'SCRIPT_NAME' => '/sub_uri'
|
|
|
|
}
|
|
|
|
|
|
|
|
expect { strategy.call(make_env('/auth/test/callback', env)) }.to raise_error('Callback Phase')
|
|
|
|
expect(strategy.last_env['omniauth.origin']).to eq('http://example.com/sub_uri/origin')
|
|
|
|
end
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'default paths' do
|
|
|
|
it 'uses the default request path' do
|
|
|
|
expect { strategy.call(make_env) }.to raise_error('Request Phase')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'is case insensitive on request path' do
|
|
|
|
expect { strategy.call(make_env('/AUTH/Test')) }.to raise_error('Request Phase')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'is case insensitive on callback path' do
|
|
|
|
expect { strategy.call(make_env('/AUTH/TeSt/CaLlBAck')) }.to raise_error('Callback Phase')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'uses the default callback path' do
|
|
|
|
expect { strategy.call(make_env('/auth/test/callback')) }.to raise_error('Callback Phase')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'strips trailing spaces on request' do
|
|
|
|
expect { strategy.call(make_env('/auth/test/')) }.to raise_error('Request Phase')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'strips trailing spaces on callback' do
|
|
|
|
expect { strategy.call(make_env('/auth/test/callback/')) }.to raise_error('Callback Phase')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'callback_url' do
|
|
|
|
it 'uses the default callback_path' do
|
2014-01-16 00:04:44 -05:00
|
|
|
expect(strategy).to receive(:full_host).and_return('http://example.com')
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
expect { strategy.call(make_env) }.to raise_error('Request Phase')
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.callback_url).to eq('http://example.com/auth/test/callback')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'preserves the query parameters' do
|
2013-07-09 04:08:41 -04:00
|
|
|
allow(strategy).to receive(:full_host).and_return('http://example.com')
|
2011-09-03 14:08:07 -04:00
|
|
|
begin
|
|
|
|
strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'id=5'))
|
2014-01-15 23:00:46 -05:00
|
|
|
rescue RuntimeError
|
|
|
|
end
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.callback_url).to eq('http://example.com/auth/test/callback?id=5')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'consider script name' do
|
2013-07-09 04:08:41 -04:00
|
|
|
allow(strategy).to receive(:full_host).and_return('http://example.com')
|
2011-09-03 14:08:07 -04:00
|
|
|
begin
|
|
|
|
strategy.call(make_env('/auth/test', 'SCRIPT_NAME' => '/sub_uri'))
|
2014-01-15 23:00:46 -05:00
|
|
|
rescue RuntimeError
|
|
|
|
end
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.callback_url).to eq('http://example.com/sub_uri/auth/test/callback')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context ':form option' do
|
|
|
|
it 'calls through to the supplied form option if one exists' do
|
2014-05-30 14:42:00 -04:00
|
|
|
strategy.options.form = lambda { |_env| 'Called me!' }
|
2014-01-15 23:00:46 -05:00
|
|
|
expect(strategy.call(make_env('/auth/test'))).to eq('Called me!')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'calls through to the app if :form => true is set as an option' do
|
2011-10-03 15:24:39 -04:00
|
|
|
strategy.options.form = true
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.call(make_env('/auth/test'))).to eq(app.call(make_env('/auth/test')))
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'dynamic paths' do
|
|
|
|
it 'runs the request phase if the custom request path evaluator is truthy' do
|
2014-05-30 14:42:00 -04:00
|
|
|
@options = {:request_path => lambda { |_env| true }}
|
2014-01-15 23:00:46 -05:00
|
|
|
expect { strategy.call(make_env('/asoufibasfi')) }.to raise_error('Request Phase')
|
2012-04-12 17:44:35 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'runs the callback phase if the custom callback path evaluator is truthy' do
|
2014-05-30 14:42:00 -04:00
|
|
|
@options = {:callback_path => lambda { |_env| true }}
|
2014-01-15 23:00:46 -05:00
|
|
|
expect { strategy.call(make_env('/asoufiasod')) }.to raise_error('Callback Phase')
|
2012-04-12 17:44:35 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'provides a custom callback path if request_path evals to a string' do
|
2014-05-30 14:42:00 -04:00
|
|
|
strategy_instance = fresh_strategy.new(nil, :request_path => lambda { |_env| '/auth/boo/callback/22' })
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy_instance.callback_path).to eq('/auth/boo/callback/22')
|
|
|
|
end
|
2013-04-10 06:07:00 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'correctly reports the callback path when the custom callback path evaluator is truthy' do
|
2014-08-18 07:21:39 -04:00
|
|
|
strategy_instance = ExampleStrategy.new(app, :callback_path => lambda { |env| env['PATH_INFO'] == '/auth/bish/bosh/callback' })
|
2013-04-10 06:07:00 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
expect { strategy_instance.call(make_env('/auth/bish/bosh/callback')) }.to raise_error('Callback Phase')
|
2013-04-10 06:07:00 -04:00
|
|
|
expect(strategy_instance.callback_path).to eq('/auth/bish/bosh/callback')
|
|
|
|
end
|
2012-04-12 17:44:35 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'custom paths' do
|
|
|
|
it 'uses a custom request_path if one is provided' do
|
2011-09-03 14:08:07 -04:00
|
|
|
@options = {:request_path => '/awesome'}
|
2014-01-15 23:00:46 -05:00
|
|
|
expect { strategy.call(make_env('/awesome')) }.to raise_error('Request Phase')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'uses a custom callback_path if one is provided' do
|
2011-09-03 14:08:07 -04:00
|
|
|
@options = {:callback_path => '/radical'}
|
2014-01-15 23:00:46 -05:00
|
|
|
expect { strategy.call(make_env('/radical')) }.to raise_error('Callback Phase')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'callback_url' do
|
|
|
|
it 'uses a custom callback_path if one is provided' do
|
2011-09-03 14:08:07 -04:00
|
|
|
@options = {:callback_path => '/radical'}
|
2014-01-16 00:04:44 -05:00
|
|
|
expect(strategy).to receive(:full_host).and_return('http://example.com')
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
expect { strategy.call(make_env('/radical')) }.to raise_error('Callback Phase')
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.callback_url).to eq('http://example.com/radical')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'preserves the query parameters' do
|
2011-09-03 14:08:07 -04:00
|
|
|
@options = {:callback_path => '/radical'}
|
2013-07-09 04:08:41 -04:00
|
|
|
allow(strategy).to receive(:full_host).and_return('http://example.com')
|
2011-09-03 14:08:07 -04:00
|
|
|
begin
|
|
|
|
strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'id=5'))
|
2014-01-15 23:00:46 -05:00
|
|
|
rescue RuntimeError
|
|
|
|
end
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.callback_url).to eq('http://example.com/radical?id=5')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'custom prefix' do
|
2011-09-03 14:08:07 -04:00
|
|
|
before do
|
|
|
|
@options = {:path_prefix => '/wowzers'}
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'uses a custom prefix for request' do
|
|
|
|
expect { strategy.call(make_env('/wowzers/test')) }.to raise_error('Request Phase')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'uses a custom prefix for callback' do
|
|
|
|
expect { strategy.call(make_env('/wowzers/test/callback')) }.to raise_error('Callback Phase')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'callback_url' do
|
|
|
|
it 'uses a custom prefix' do
|
2014-01-16 00:04:44 -05:00
|
|
|
expect(strategy).to receive(:full_host).and_return('http://example.com')
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
expect { strategy.call(make_env('/wowzers/test')) }.to raise_error('Request Phase')
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.callback_url).to eq('http://example.com/wowzers/test/callback')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'preserves the query parameters' do
|
2013-07-09 04:08:41 -04:00
|
|
|
allow(strategy).to receive(:full_host).and_return('http://example.com')
|
2011-09-03 14:08:07 -04:00
|
|
|
begin
|
|
|
|
strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'id=5'))
|
2014-01-15 23:00:46 -05:00
|
|
|
rescue RuntimeError
|
|
|
|
end
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.callback_url).to eq('http://example.com/wowzers/test/callback?id=5')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'request method restriction' do
|
2011-09-03 14:08:07 -04:00
|
|
|
before do
|
|
|
|
OmniAuth.config.allowed_request_methods = [:post]
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'does not allow a request method of the wrong type' do
|
|
|
|
expect { strategy.call(make_env) }.not_to raise_error
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'allows a request method of the correct type' do
|
|
|
|
expect { strategy.call(make_env('/auth/test', 'REQUEST_METHOD' => 'POST')) }.to raise_error('Request Phase')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
2017-09-28 13:07:45 -04:00
|
|
|
OmniAuth.config.allowed_request_methods = %i[get post]
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'receiving an OPTIONS request' do
|
|
|
|
shared_examples_for 'an OPTIONS request' do
|
|
|
|
it 'responds with 200' do
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(response[0]).to eq(200)
|
2011-09-03 20:26:57 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'sets the Allow header properly' do
|
|
|
|
expect(response[1]['Allow']).to eq('GET, POST')
|
2011-09-03 20:26:57 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'to the request path' do
|
2011-09-03 20:26:57 -04:00
|
|
|
let(:response) { strategy.call(make_env('/auth/test', 'REQUEST_METHOD' => 'OPTIONS')) }
|
2014-01-15 23:00:46 -05:00
|
|
|
it_behaves_like 'an OPTIONS request'
|
2011-09-03 20:26:57 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'to the request path' do
|
2011-09-03 20:26:57 -04:00
|
|
|
let(:response) { strategy.call(make_env('/auth/test/callback', 'REQUEST_METHOD' => 'OPTIONS')) }
|
2014-01-15 23:00:46 -05:00
|
|
|
it_behaves_like 'an OPTIONS request'
|
2011-09-03 20:26:57 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'to some other path' do
|
|
|
|
it 'does not short-circuit the request' do
|
2011-09-03 20:26:57 -04:00
|
|
|
env = make_env('/other', 'REQUEST_METHOD' => 'OPTIONS')
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.call(env)).to eq(app.call(env))
|
2011-09-03 20:26:57 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-11-12 12:57:59 -05:00
|
|
|
context 'options mutation' do
|
|
|
|
before do
|
2015-11-13 00:27:17 -05:00
|
|
|
@options = {:dup => true}
|
2015-11-12 12:57:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'in request phase' do
|
|
|
|
it 'does not affect original options' do
|
2016-08-08 13:54:19 -04:00
|
|
|
@options[:test_option] = true
|
|
|
|
@options[:mutate_on_request] = proc { |options| options.delete(:test_option) }
|
2015-11-12 12:57:59 -05:00
|
|
|
expect { strategy.call(make_env) }.to raise_error('Request Phase')
|
|
|
|
expect(strategy.options).to have_key(:test_option)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not affect deep options' do
|
2016-08-08 13:54:19 -04:00
|
|
|
@options[:deep_option] = {:test_option => true}
|
|
|
|
@options[:mutate_on_request] = proc { |options| options[:deep_option].delete(:test_option) }
|
2015-11-12 12:57:59 -05:00
|
|
|
expect { strategy.call(make_env) }.to raise_error('Request Phase')
|
|
|
|
expect(strategy.options[:deep_option]).to have_key(:test_option)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'in callback phase' do
|
|
|
|
it 'does not affect original options' do
|
2016-08-08 13:54:19 -04:00
|
|
|
@options[:test_option] = true
|
|
|
|
@options[:mutate_on_callback] = proc { |options| options.delete(:test_option) }
|
2015-11-12 12:57:59 -05:00
|
|
|
expect { strategy.call(make_env('/auth/test/callback', 'REQUEST_METHOD' => 'POST')) }.to raise_error('Callback Phase')
|
|
|
|
expect(strategy.options).to have_key(:test_option)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not affect deep options' do
|
2016-08-08 13:54:19 -04:00
|
|
|
@options[:deep_option] = {:test_option => true}
|
|
|
|
@options[:mutate_on_callback] = proc { |options| options[:deep_option].delete(:test_option) }
|
2015-11-12 12:57:59 -05:00
|
|
|
expect { strategy.call(make_env('/auth/test/callback', 'REQUEST_METHOD' => 'POST')) }.to raise_error('Callback Phase')
|
|
|
|
expect(strategy.options[:deep_option]).to have_key(:test_option)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'test mode' do
|
2012-03-07 16:12:41 -05:00
|
|
|
let(:app) do
|
|
|
|
# In test mode, the underlying app shouldn't be called on request phase.
|
2014-05-30 14:42:00 -04:00
|
|
|
lambda { |_env| [404, {'Content-Type' => 'text/html'}, []] }
|
2012-03-07 16:12:41 -05:00
|
|
|
end
|
|
|
|
|
2011-09-03 14:08:07 -04:00
|
|
|
before do
|
|
|
|
OmniAuth.config.test_mode = true
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'short circuits the request phase entirely' do
|
2011-09-03 14:08:07 -04:00
|
|
|
response = strategy.call(make_env)
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(response[0]).to eq(302)
|
|
|
|
expect(response[1]['Location']).to eq('/auth/test/callback')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-10-28 12:38:23 -04:00
|
|
|
it "doesn't short circuit the request if request method is not allowed" do
|
2017-02-12 01:57:45 -05:00
|
|
|
response = strategy.call(make_env('/auth/test', 'REQUEST_METHOD' => 'DELETE'))
|
2014-10-28 12:38:23 -04:00
|
|
|
expect(response[0]).to eq(404)
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'is case insensitive on request path' do
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.call(make_env('/AUTH/Test'))[0]).to eq(302)
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'respects SCRIPT_NAME (a.k.a. BaseURI)' do
|
2011-09-03 14:08:07 -04:00
|
|
|
response = strategy.call(make_env('/auth/test', 'SCRIPT_NAME' => '/sub_uri'))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(response[1]['Location']).to eq('/sub_uri/auth/test/callback')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'redirects on failure' do
|
2011-12-13 00:54:59 -05:00
|
|
|
response = OmniAuth.config.on_failure.call(make_env('/auth/test', 'omniauth.error.type' => 'error'))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(response[0]).to eq(302)
|
|
|
|
expect(response[1]['Location']).to eq('/auth/failure?message=error')
|
2011-12-13 00:54:59 -05:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'respects SCRIPT_NAME (a.k.a. BaseURI) on failure' do
|
2011-12-13 00:54:59 -05:00
|
|
|
response = OmniAuth.config.on_failure.call(make_env('/auth/test', 'SCRIPT_NAME' => '/sub_uri', 'omniauth.error.type' => 'error'))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(response[0]).to eq(302)
|
|
|
|
expect(response[1]['Location']).to eq('/sub_uri/auth/failure?message=error')
|
2011-12-13 00:54:59 -05:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'is case insensitive on callback path' do
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.call(make_env('/AUTH/TeSt/CaLlBAck')).first).to eq(strategy.call(make_env('/auth/test/callback')).first)
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'maintains host and port' do
|
2020-02-28 22:27:14 -05:00
|
|
|
response = strategy.call(make_env('/auth/test', 'rack.url_scheme' => 'http', 'SERVER_NAME' => 'example.org', 'SERVER_PORT' => 9292))
|
|
|
|
expect(response[1]['Location']).to eq('http://example.org:9292/auth/test/callback')
|
2013-09-24 17:42:39 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'maintains query string parameters' do
|
2011-09-03 14:08:07 -04:00
|
|
|
response = strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'cheese=stilton'))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(response[1]['Location']).to eq('/auth/test/callback?cheese=stilton')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'does not short circuit requests outside of authentication' do
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.call(make_env('/'))).to eq(app.call(make_env('/')))
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'responds with the default hash if none is set' do
|
2012-01-11 09:58:29 -05:00
|
|
|
OmniAuth.config.mock_auth[:test] = nil
|
|
|
|
|
2011-09-03 14:08:07 -04:00
|
|
|
strategy.call make_env('/auth/test/callback')
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.env['omniauth.auth']['uid']).to eq('1234')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'responds with a provider-specific hash if one is set' do
|
2011-09-03 14:08:07 -04:00
|
|
|
OmniAuth.config.mock_auth[:test] = {
|
2015-12-18 22:14:29 -05:00
|
|
|
'uid' => 'abc'
|
2011-09-03 14:08:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
strategy.call make_env('/auth/test/callback')
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.env['omniauth.auth']['uid']).to eq('abc')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'simulates login failure if mocked data is set as a symbol' do
|
2011-09-03 14:08:07 -04:00
|
|
|
OmniAuth.config.mock_auth[:test] = :invalid_credentials
|
|
|
|
|
|
|
|
strategy.call make_env('/auth/test/callback')
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.env['omniauth.error.type']).to eq(:invalid_credentials)
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2017-10-02 12:57:39 -04:00
|
|
|
context 'omniauth.origin' do
|
|
|
|
context 'disabled' do
|
|
|
|
it 'does not set omniauth.origin' do
|
|
|
|
@options = {:origin_param => false}
|
|
|
|
strategy.call(make_env('/auth/test', 'HTTP_REFERER' => 'http://example.com/origin'))
|
|
|
|
expect(strategy.env['rack.session']['omniauth.origin']).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'default flow' do
|
|
|
|
it 'sets omniauth.origin to the HTTP_REFERER on the request phase by default' do
|
|
|
|
strategy.call(make_env('/auth/test', 'HTTP_REFERER' => 'http://example.com/origin'))
|
|
|
|
expect(strategy.env['rack.session']['omniauth.origin']).to eq('http://example.com/origin')
|
|
|
|
end
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2017-10-02 12:57:39 -04:00
|
|
|
it 'sets omniauth.origin from the params if provided' do
|
|
|
|
strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'origin=/foo'))
|
|
|
|
expect(strategy.env['rack.session']['omniauth.origin']).to eq('/foo')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'custom' do
|
|
|
|
it 'sets omniauth.origin from a custom param' do
|
|
|
|
@options = {:origin_param => 'return'}
|
|
|
|
strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'return=/foo'))
|
|
|
|
expect(strategy.env['rack.session']['omniauth.origin']).to eq('/foo')
|
|
|
|
end
|
|
|
|
end
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'turns omniauth.origin into an env variable on the callback phase' do
|
2011-09-03 14:08:07 -04:00
|
|
|
OmniAuth.config.mock_auth[:test] = {}
|
|
|
|
|
|
|
|
strategy.call(make_env('/auth/test/callback', 'rack.session' => {'omniauth.origin' => 'http://example.com/origin'}))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.env['omniauth.origin']).to eq('http://example.com/origin')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
2012-01-11 09:58:29 -05:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'executes callback hook on the callback phase' do
|
2013-03-01 13:12:09 -05:00
|
|
|
OmniAuth.config.mock_auth[:test] = {}
|
2013-09-02 21:05:18 -04:00
|
|
|
OmniAuth.config.before_callback_phase do |env|
|
2014-01-15 23:00:46 -05:00
|
|
|
env['foobar'] = 'baz'
|
2013-03-01 13:12:09 -05:00
|
|
|
end
|
|
|
|
strategy.call(make_env('/auth/test/callback', 'rack.session' => {'omniauth.origin' => 'http://example.com/origin'}))
|
|
|
|
expect(strategy.env['foobar']).to eq('baz')
|
|
|
|
end
|
|
|
|
|
2017-01-10 23:04:18 -05:00
|
|
|
it 'sets omniauth.params with query params on the request phase' do
|
2012-06-04 08:46:25 -04:00
|
|
|
OmniAuth.config.mock_auth[:test] = {}
|
|
|
|
|
|
|
|
strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'foo=bar'))
|
2014-01-15 23:00:46 -05:00
|
|
|
expect(strategy.env['rack.session']['omniauth.params']).to eq('foo' => 'bar')
|
2012-06-04 08:46:25 -04:00
|
|
|
end
|
|
|
|
|
2017-01-10 23:04:18 -05:00
|
|
|
it 'does not set body parameters of POST request on the request phase' do
|
|
|
|
OmniAuth.config.mock_auth[:test] = {}
|
|
|
|
|
|
|
|
props = {
|
|
|
|
'REQUEST_METHOD' => 'POST',
|
|
|
|
'rack.input' => StringIO.new('foo=bar')
|
|
|
|
}
|
|
|
|
strategy.call(make_env('/auth/test', props))
|
|
|
|
expect(strategy.env['rack.session']['omniauth.params']).to eq({})
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'executes request hook on the request phase' do
|
2013-03-01 13:12:09 -05:00
|
|
|
OmniAuth.config.mock_auth[:test] = {}
|
2013-09-02 21:05:18 -04:00
|
|
|
OmniAuth.config.before_request_phase do |env|
|
2014-01-15 23:00:46 -05:00
|
|
|
env['foobar'] = 'baz'
|
2013-03-01 13:12:09 -05:00
|
|
|
end
|
|
|
|
strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'foo=bar'))
|
|
|
|
expect(strategy.env['foobar']).to eq('baz')
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'turns omniauth.params into an env variable on the callback phase' do
|
2012-06-04 08:46:25 -04:00
|
|
|
OmniAuth.config.mock_auth[:test] = {}
|
|
|
|
|
|
|
|
strategy.call(make_env('/auth/test/callback', 'rack.session' => {'omniauth.params' => {'foo' => 'bar'}}))
|
2014-01-15 23:00:46 -05:00
|
|
|
expect(strategy.env['omniauth.params']).to eq('foo' => 'bar')
|
2012-06-04 08:46:25 -04:00
|
|
|
end
|
|
|
|
|
2011-10-26 02:21:38 -04:00
|
|
|
after do
|
|
|
|
OmniAuth.config.test_mode = false
|
|
|
|
end
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'custom full_host' do
|
2011-10-26 02:21:38 -04:00
|
|
|
before do
|
|
|
|
OmniAuth.config.test_mode = true
|
|
|
|
end
|
2012-01-11 09:58:29 -05:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'is the string when a string is there' do
|
2011-09-03 14:08:07 -04:00
|
|
|
OmniAuth.config.full_host = 'my.host.com'
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.full_host).to eq('my.host.com')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'runs the proc with the env when it is a proc' do
|
|
|
|
OmniAuth.config.full_host = proc { |env| env['HOST'] }
|
2011-09-03 14:08:07 -04:00
|
|
|
strategy.call(make_env('/auth/test', 'HOST' => 'my.host.net'))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.full_host).to eq('my.host.net')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
2012-01-11 09:58:29 -05:00
|
|
|
|
2013-02-13 14:12:50 -05:00
|
|
|
it "is based on the request if it's not a string nor a proc" do
|
|
|
|
OmniAuth.config.full_host = nil
|
|
|
|
strategy.call(make_env('/whatever', 'rack.url_scheme' => 'http', 'SERVER_NAME' => 'my.host.net', 'SERVER_PORT' => 80))
|
|
|
|
expect(strategy.full_host).to eq('http://my.host.net')
|
|
|
|
end
|
|
|
|
|
2014-01-16 00:04:44 -05:00
|
|
|
it 'honors HTTP_X_FORWARDED_PROTO if present' do
|
2013-02-13 14:12:50 -05:00
|
|
|
OmniAuth.config.full_host = nil
|
2014-01-15 23:00:46 -05:00
|
|
|
strategy.call(make_env('/whatever', 'HTTP_X_FORWARDED_PROTO' => 'https', 'rack.url_scheme' => 'http', 'SERVER_NAME' => 'my.host.net', 'SERVER_PORT' => 443))
|
2013-02-13 14:12:50 -05:00
|
|
|
expect(strategy.full_host).to eq('https://my.host.net')
|
|
|
|
end
|
|
|
|
|
2011-10-26 02:21:38 -04:00
|
|
|
after do
|
2013-09-24 17:42:39 -04:00
|
|
|
OmniAuth.config.full_host = nil
|
2011-10-26 02:21:38 -04:00
|
|
|
OmniAuth.config.test_mode = false
|
|
|
|
end
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'setup phase' do
|
2011-10-26 02:21:38 -04:00
|
|
|
before do
|
|
|
|
OmniAuth.config.test_mode = true
|
|
|
|
end
|
2012-01-11 09:58:29 -05:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'when options[:setup] = true' do
|
|
|
|
let(:strategy) do
|
|
|
|
ExampleStrategy.new(app, :setup => true)
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:app) do
|
|
|
|
lambda do |env|
|
|
|
|
env['omniauth.strategy'].options[:awesome] = 'sauce' if env['PATH_INFO'] == '/auth/test/setup'
|
|
|
|
[404, {}, 'Awesome']
|
|
|
|
end
|
|
|
|
end
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'calls through to /auth/:provider/setup' do
|
2011-09-03 14:08:07 -04:00
|
|
|
strategy.call(make_env('/auth/test'))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.options[:awesome]).to eq('sauce')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'does not call through on a non-omniauth endpoint' do
|
2011-09-03 14:08:07 -04:00
|
|
|
strategy.call(make_env('/somewhere/else'))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.options[:awesome]).not_to eq('sauce')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
context 'when options[:setup] is an app' do
|
2011-09-03 14:08:07 -04:00
|
|
|
let(:setup_proc) do
|
2014-01-15 23:00:46 -05:00
|
|
|
proc do |env|
|
2011-09-03 14:08:07 -04:00
|
|
|
env['omniauth.strategy'].options[:awesome] = 'sauce'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-09-29 18:03:20 -04:00
|
|
|
let(:strategy) { ExampleStrategy.new(app, :setup => setup_proc) }
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'does not call the app on a non-omniauth endpoint' do
|
2011-09-03 14:08:07 -04:00
|
|
|
strategy.call(make_env('/somehwere/else'))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.options[:awesome]).not_to eq('sauce')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2014-01-15 23:00:46 -05:00
|
|
|
it 'calls the rack app' do
|
2011-09-03 14:08:07 -04:00
|
|
|
strategy.call(make_env('/auth/test'))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.options[:awesome]).to eq('sauce')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
end
|
2012-01-11 09:58:29 -05:00
|
|
|
|
2011-10-26 02:21:38 -04:00
|
|
|
after do
|
|
|
|
OmniAuth.config.test_mode = false
|
|
|
|
end
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
2012-10-10 04:32:55 -04:00
|
|
|
end
|