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' => {},
|
|
|
|
'rack.input' => StringIO.new('test=true')
|
|
|
|
}.merge(props)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe OmniAuth::Strategy do
|
|
|
|
let(:app){ lambda{|env| [404, {}, ['Awesome']]}}
|
2011-09-28 13:41:06 -04:00
|
|
|
let(:fresh_strategy){ c = Class.new; c.send :include, OmniAuth::Strategy; c}
|
2011-09-26 12:44:17 -04:00
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe ".configure" do
|
2011-09-26 12:44:17 -04:00
|
|
|
subject { klass = Class.new; klass.send :include, OmniAuth::Strategy; klass }
|
2013-03-14 12:38:21 -04:00
|
|
|
context "when block is passed" do
|
|
|
|
it "allows for default options setting" do
|
|
|
|
subject.configure do |c|
|
|
|
|
c.wakka = 'doo'
|
|
|
|
end
|
|
|
|
expect(subject.default_options["wakka"]).to eq("doo")
|
|
|
|
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
|
|
|
|
expect(subject.default_options["abc"]).to eq("123")
|
2011-09-26 12:44:17 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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}
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(subject.default_options['abc']).to eq({'def' => 123, 'hgi' => 456})
|
2011-09-27 20:52:43 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe "#skip_info?" do
|
|
|
|
it "is true if options.skip_info is true" do
|
|
|
|
expect(ExampleStrategy.new(app, :skip_info => true)).to be_skip_info
|
2011-09-27 20:52:43 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "is false if options.skip_info is false" do
|
|
|
|
expect(ExampleStrategy.new(app, :skip_info => false)).not_to be_skip_info
|
2011-09-27 20:52:43 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "is false by default" do
|
|
|
|
expect(ExampleStrategy.new(app)).not_to be_skip_info
|
2011-09-27 20:52:43 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "is true if options.skip_info is a callable that evaluates to truthy" do
|
2011-09-27 20:52:43 -04:00
|
|
|
instance = ExampleStrategy.new(app, :skip_info => lambda{|uid| uid})
|
|
|
|
instance.should_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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe ".option" do
|
2011-09-26 13:11:41 -04:00
|
|
|
subject { klass = Class.new; klass.send :include, OmniAuth::Strategy; klass }
|
2012-10-10 04:32:55 -04:00
|
|
|
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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe ".args" do
|
2011-09-27 14:18:08 -04:00
|
|
|
subject{ c = Class.new; c.send :include, OmniAuth::Strategy; c }
|
2012-10-10 04:32:55 -04:00
|
|
|
it "sets args to the specified argument if there is one" do
|
2011-09-27 14:18:08 -04:00
|
|
|
subject.args [:abc, :def]
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(subject.args).to eq([:abc, :def])
|
2011-09-27 14:18:08 -04:00
|
|
|
end
|
2011-09-28 11:26:27 -04:00
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "is inheritable" do
|
2011-09-28 11:26:27 -04:00
|
|
|
subject.args [:abc, :def]
|
|
|
|
c = Class.new(subject)
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(c.args).to eq([:abc, :def])
|
2011-09-28 11:26:27 -04:00
|
|
|
end
|
2011-09-27 14:18:08 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
context "fetcher procs" do
|
2011-09-28 13:41:06 -04:00
|
|
|
subject{ fresh_strategy }
|
2011-09-30 11:36:57 -04:00
|
|
|
%w(uid info credentials extra).each do |fetcher|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe ".#{fetcher}" do
|
|
|
|
it "sets and retrieve a proc" do
|
|
|
|
proc = lambda{ "Hello" }
|
|
|
|
subject.send(fetcher, &proc)
|
|
|
|
expect(subject.send(fetcher)).to eq(proc)
|
|
|
|
end
|
2011-09-28 13:41:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
context "fetcher stacks" do
|
2011-09-28 13:41:06 -04:00
|
|
|
subject{ fresh_strategy }
|
|
|
|
%w(uid info credentials extra).each do |fetcher|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe ".#{fetcher}_stack" do
|
|
|
|
it "is an array of called ancestral procs" do
|
|
|
|
fetchy = Proc.new{ "Hello" }
|
|
|
|
subject.send(fetcher, &fetchy)
|
|
|
|
expect(subject.send("#{fetcher}_stack", subject.new(app))).to eq(["Hello"])
|
|
|
|
end
|
2011-09-28 13:41:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-09-30 11:36:57 -04:00
|
|
|
%w(request_phase).each do |abstract_method|
|
2012-10-10 04:32:55 -04:00
|
|
|
context "#{abstract_method}" do
|
|
|
|
it "raises a NotImplementedError" do
|
|
|
|
strat = Class.new
|
|
|
|
strat.send :include, OmniAuth::Strategy
|
|
|
|
expect{strat.new(app).send(abstract_method) }.to raise_error(NotImplementedError)
|
|
|
|
end
|
2011-09-27 15:59:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
let(:instance){ subject.new(app) }
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "calls through to uid and info" do
|
2011-09-27 15:59:26 -04:00
|
|
|
instance.should_receive :uid
|
|
|
|
instance.should_receive :info
|
|
|
|
instance.auth_hash
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "returns an AuthHash" do
|
2011-09-27 15:59:26 -04:00
|
|
|
instance.stub!(:uid).and_return('123')
|
|
|
|
instance.stub!(:info).and_return(:name => 'Hal Awesome')
|
|
|
|
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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe "#initialize" do
|
|
|
|
context "options extraction" do
|
|
|
|
it "is the last argument if the last argument is a Hash" do
|
|
|
|
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
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "is the default options if any are provided" do
|
2011-09-26 12:44:17 -04:00
|
|
|
ExampleStrategy.stub!(: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
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
context "custom args" do
|
2011-09-27 14:18:08 -04:00
|
|
|
subject{ c = Class.new; c.send :include, OmniAuth::Strategy; c }
|
2012-10-10 04:32:55 -04:00
|
|
|
it "sets options based on the arguments if they are supplied" do
|
2011-09-27 14:18:08 -04:00
|
|
|
subject.args [:abc, :def]
|
|
|
|
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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe "#call" do
|
|
|
|
it "duplicates and calls" do
|
|
|
|
klass = Class.new
|
|
|
|
klass.send :include, OmniAuth::Strategy
|
|
|
|
instance = klass.new(app)
|
|
|
|
instance.should_receive(:dup).and_return(instance)
|
|
|
|
instance.call({'rack.session' => {}})
|
|
|
|
end
|
2011-09-27 15:59:26 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe "#inspect" do
|
|
|
|
it "returns the class name" do
|
|
|
|
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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe "#redirect" do
|
|
|
|
it "uses javascript if :iframe is true" do
|
2011-09-27 15:59:26 -04:00
|
|
|
response = ExampleStrategy.new(app, :iframe => true).redirect("http://abc.com")
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(response.last.body.first).to be_include("top.location.href")
|
2011-09-27 15:59:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe "#callback_phase" do
|
2011-09-27 15:59:26 -04:00
|
|
|
subject{ k = Class.new; k.send :include, OmniAuth::Strategy; k.new(app) }
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "sets the auth hash" do
|
2011-09-27 15:59:26 -04:00
|
|
|
env = make_env
|
|
|
|
subject.stub!(:env).and_return(env)
|
|
|
|
subject.stub!(:auth_hash).and_return("AUTH HASH")
|
|
|
|
subject.callback_phase
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(env['omniauth.auth']).to eq("AUTH HASH")
|
2011-09-27 15:59:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe "#full_host" do
|
2011-09-26 23:44:52 -04:00
|
|
|
let(:strategy){ ExampleStrategy.new(app, {}) }
|
2012-10-10 04:32:55 -04:00
|
|
|
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))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect{strategy.full_host }.not_to raise_error
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe "#uid" do
|
2011-09-28 13:41:06 -04:00
|
|
|
subject{ fresh_strategy }
|
2012-10-10 04:32:55 -04:00
|
|
|
it "is the current class's uid if one exists" do
|
2011-09-28 13:41:06 -04:00
|
|
|
subject.uid{ "Hi" }
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(subject.new(app).uid).to eq("Hi")
|
2011-09-28 13:41:06 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "inherits if it can" do
|
2011-09-28 13:41:06 -04:00
|
|
|
subject.uid{ "Hi" }
|
|
|
|
c = Class.new(subject)
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(c.new(app).uid).to eq("Hi")
|
2011-09-28 13:41:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
%w(info credentials extra).each do |fetcher|
|
|
|
|
subject{ fresh_strategy }
|
2012-10-10 04:32:55 -04:00
|
|
|
it "is the current class's proc call if one exists" do
|
2011-09-28 13:41:06 -04:00
|
|
|
subject.send(fetcher){ {:abc => 123} }
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(subject.new(app).send(fetcher)).to eq({:abc => 123})
|
2011-09-28 13:41:06 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "inherits by merging with preference for the latest class" do
|
2011-09-28 13:41:06 -04:00
|
|
|
subject.send(fetcher){ {:abc => 123, :def => 456} }
|
|
|
|
c = Class.new(subject)
|
|
|
|
c.send(fetcher){ {:abc => 789} }
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(c.new(app).send(fetcher)).to eq({:abc => 789, :def => 456})
|
2011-09-28 13:41:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
describe "#call" do
|
2013-01-10 12:20:16 -05:00
|
|
|
before(:all) do
|
|
|
|
@options = nil
|
|
|
|
end
|
|
|
|
|
2011-09-26 23:44:52 -04:00
|
|
|
let(:strategy){ ExampleStrategy.new(app, @options || {}) }
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
context "omniauth.origin" 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')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -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')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "is set on the failure env" do
|
2011-09-03 14:08:07 -04:00
|
|
|
OmniAuth.config.should_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
|
|
|
|
|
|
|
|
context "with script_name" do
|
2012-10-10 04:32:55 -04:00
|
|
|
it "is set on the request phase, containing full path" do
|
2011-09-03 14:08:07 -04:00
|
|
|
env = {'HTTP_REFERER' => 'http://example.com/sub_uri/origin', 'SCRIPT_NAME' => '/sub_uri' }
|
2012-10-10 04:32:55 -04:00
|
|
|
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')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "is turned into an env variable on the callback phase, containing full path" do
|
2011-09-03 14:08:07 -04:00
|
|
|
env = {
|
|
|
|
'rack.session' => {'omniauth.origin' => 'http://example.com/sub_uri/origin'},
|
|
|
|
'SCRIPT_NAME' => '/sub_uri'
|
|
|
|
}
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
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')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
context "callback_url" do
|
|
|
|
it "uses the default callback_path" do
|
2011-09-03 14:08:07 -04:00
|
|
|
strategy.should_receive(:full_host).and_return('http://example.com')
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "preserves the query parameters" do
|
2011-09-03 14:08:07 -04:00
|
|
|
strategy.stub(:full_host).and_return('http://example.com')
|
|
|
|
begin
|
|
|
|
strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'id=5'))
|
|
|
|
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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "consider script name" do
|
2011-09-03 14:08:07 -04:00
|
|
|
strategy.stub(:full_host).and_return('http://example.com')
|
|
|
|
begin
|
|
|
|
strategy.call(make_env('/auth/test', 'SCRIPT_NAME' => '/sub_uri'))
|
|
|
|
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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
context ":form option" do
|
|
|
|
it "calls through to the supplied form option if one exists" do
|
2011-10-03 15:24:39 -04:00
|
|
|
strategy.options.form = lambda{|env| "Called me!"}
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.call(make_env('/auth/test'))).to eq("Called me!")
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
context "dynamic paths" do
|
|
|
|
it "runs the request phase if the custom request path evaluator is truthy" do
|
2012-04-12 17:44:35 -04:00
|
|
|
@options = {:request_path => lambda{|env| true}}
|
2012-10-10 04:32:55 -04:00
|
|
|
expect{strategy.call(make_env('/asoufibasfi')) }.to raise_error("Request Phase")
|
2012-04-12 17:44:35 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "runs the callback phase if the custom callback path evaluator is truthy" do
|
2012-04-12 17:44:35 -04:00
|
|
|
@options = {:callback_path => lambda{|env| true}}
|
2012-10-10 04:32:55 -04:00
|
|
|
expect{strategy.call(make_env('/asoufiasod')) }.to raise_error("Callback Phase")
|
2012-04-12 17:44:35 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "provides a custom callback path if request_path evals to a string" do
|
2012-04-12 17:44:35 -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
|
2012-04-12 17:44:35 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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'}
|
2012-10-10 04:32:55 -04:00
|
|
|
expect{strategy.call(make_env('/awesome')) }.to raise_error("Request Phase")
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "uses a custom callback_path if one is provided" do
|
2011-09-03 14:08:07 -04:00
|
|
|
@options = {:callback_path => '/radical'}
|
2012-10-10 04:32:55 -04:00
|
|
|
expect{strategy.call(make_env('/radical')) }.to raise_error("Callback Phase")
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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'}
|
|
|
|
strategy.should_receive(:full_host).and_return('http://example.com')
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "preserves the query parameters" do
|
2011-09-03 14:08:07 -04:00
|
|
|
@options = {:callback_path => '/radical'}
|
|
|
|
strategy.stub(:full_host).and_return('http://example.com')
|
|
|
|
begin
|
|
|
|
strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'id=5'))
|
|
|
|
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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
context "custom prefix" do
|
2011-09-03 14:08:07 -04:00
|
|
|
before do
|
|
|
|
@options = {:path_prefix => '/wowzers'}
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
context "callback_url" do
|
|
|
|
it "uses a custom prefix" do
|
2011-09-03 14:08:07 -04:00
|
|
|
strategy.should_receive(:full_host).and_return('http://example.com')
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "preserves the query parameters" do
|
2011-09-03 14:08:07 -04:00
|
|
|
strategy.stub(:full_host).and_return('http://example.com')
|
|
|
|
begin
|
|
|
|
strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'id=5'))
|
|
|
|
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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
context "request method restriction" do
|
2011-09-03 14:08:07 -04:00
|
|
|
before do
|
|
|
|
OmniAuth.config.allowed_request_methods = [:post]
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
OmniAuth.config.allowed_request_methods = [:get, :post]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
context "receiving an OPTIONS request" do
|
2011-09-03 20:26:57 -04:00
|
|
|
shared_examples_for "an OPTIONS request" do
|
2012-10-10 04:32:55 -04:00
|
|
|
it "responds with 200" do
|
|
|
|
expect(response[0]).to eq(200)
|
2011-09-03 20:26:57 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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')) }
|
2012-10-10 04:32:55 -04:00
|
|
|
it_behaves_like "an OPTIONS request"
|
2011-09-03 20:26:57 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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')) }
|
2012-10-10 04:32:55 -04:00
|
|
|
it_behaves_like "an OPTIONS request"
|
2011-09-03 20:26:57 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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.
|
|
|
|
lambda { |env| [404, {"Content-Type" => "text/html"}, []] }
|
|
|
|
end
|
|
|
|
|
2011-09-03 14:08:07 -04:00
|
|
|
before do
|
|
|
|
OmniAuth.config.test_mode = true
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "is case insensitive on request path" do
|
|
|
|
expect(strategy.call(make_env('/AUTH/Test'))[0]).to eq(302)
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "is case insensitive on callback path" do
|
|
|
|
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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "does not short circuit requests outside of authentication" do
|
|
|
|
expect(strategy.call(make_env('/'))).to eq(app.call(make_env('/')))
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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] = {
|
|
|
|
'uid' => 'abc'
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "sets omniauth.origin on the request phase" do
|
2011-09-03 14:08:07 -04:00
|
|
|
strategy.call(make_env('/auth/test', 'HTTP_REFERER' => 'http://example.com/origin'))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.env['rack.session']['omniauth.origin']).to eq('http://example.com/origin')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "sets omniauth.origin from the params if provided" do
|
2011-09-03 14:08:07 -04:00
|
|
|
strategy.call(make_env('/auth/test', 'QUERY_STRING' => 'origin=/foo'))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.env['rack.session']['omniauth.origin']).to eq('/foo')
|
2011-09-03 14:08:07 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "sets omniauth.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'))
|
2012-10-10 04:32:55 -04:00
|
|
|
expect(strategy.env['rack.session']['omniauth.params']).to eq({'foo' => 'bar'})
|
2012-06-04 08:46:25 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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'}}))
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
it "runs the proc with the env when it is a proc" do
|
2011-09-03 14:08:07 -04:00
|
|
|
OmniAuth.config.full_host = Proc.new{|env| env['HOST']}
|
|
|
|
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
|
|
|
|
|
|
|
|
it "should honor HTTP_X_FORWARDED_PROTO if present" do
|
|
|
|
OmniAuth.config.full_host = nil
|
|
|
|
strategy.call(make_env('/whatever', 'HTTP_X_FORWARDED_PROTO' => 'https','rack.url_scheme' => 'http', 'SERVER_NAME' => 'my.host.net', 'SERVER_PORT' => 443))
|
|
|
|
expect(strategy.full_host).to eq('https://my.host.net')
|
|
|
|
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
|
|
|
|
end
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
context "when options[:setup] = true" do
|
2011-09-26 23:44:52 -04:00
|
|
|
let(:strategy){ ExampleStrategy.new(app, :setup => true) }
|
2011-09-03 14:08:07 -04:00
|
|
|
let(:app){lambda{|env| env['omniauth.strategy'].options[:awesome] = 'sauce' if env['PATH_INFO'] == '/auth/test/setup'; [404, {}, 'Awesome'] }}
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04:00
|
|
|
context "when options[:setup] is an app" do
|
2011-09-03 14:08:07 -04:00
|
|
|
let(:setup_proc) do
|
|
|
|
Proc.new do |env|
|
|
|
|
env['omniauth.strategy'].options[:awesome] = 'sauce'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-09-26 23:44:52 -04:00
|
|
|
let(:strategy){ ExampleStrategy.new(app, :setup => setup_proc) }
|
2011-09-03 14:08:07 -04:00
|
|
|
|
2012-10-10 04:32:55 -04: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
|
|
|
|
|
2012-10-10 04:32:55 -04: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
|