1
0
Fork 0
mirror of https://github.com/omniauth/omniauth.git synced 2022-11-09 12:31:49 -05:00
omniauth--omniauth/spec/omniauth/builder_spec.rb

131 lines
3.2 KiB
Ruby
Raw Normal View History

2013-02-25 19:05:37 -05:00
require 'helper'
2011-09-03 14:08:07 -04:00
describe OmniAuth::Builder do
describe '#initialize' do
let(:app) { lambda { |_env| [200, {}, []] } }
let(:prok) { proc {} }
let(:builder) { OmniAuth::Builder }
it 'calls original when rack 1.4' do
allow(Rack).to receive(:release).and_return('1.4.0')
expect(builder).to receive(:new).with(app).and_call_original
builder.new(app)
end
end
2014-01-15 23:00:46 -05:00
describe '#provider' do
it 'translates a symbol to a constant' do
2014-01-16 00:04:44 -05:00
expect(OmniAuth::Strategies).to receive(:const_get).with('MyStrategy').and_return(Class.new)
2011-09-03 14:08:07 -04:00
OmniAuth::Builder.new(nil) do
provider :my_strategy
end
end
2014-01-15 23:00:46 -05:00
it 'accepts a class' do
class ExampleClass; end
2011-09-03 14:08:07 -04:00
2014-01-15 23:00:46 -05:00
expect do
OmniAuth::Builder.new(nil) do
provider ::ExampleClass
end
2014-01-15 23:00:46 -05:00
end.not_to raise_error
2011-09-03 14:08:07 -04:00
end
it "raises a helpful LoadError message if it can't find the class" do
2014-01-15 23:00:46 -05:00
expect do
OmniAuth::Builder.new(nil) do
provider :lorax
end
2014-01-15 23:00:46 -05:00
end.to raise_error(LoadError, 'Could not find matching strategy for :lorax. You may need to install an additional gem (such as omniauth-lorax).')
end
2011-09-03 14:08:07 -04:00
end
2014-01-15 23:00:46 -05:00
describe '#options' do
it 'merges provided options in' do
k = Class.new
b = OmniAuth::Builder.new(nil)
2014-01-16 00:04:44 -05:00
expect(b).to receive(:use).with(k, :foo => 'bar', :baz => 'tik')
b.options :foo => 'bar'
b.provider k, :baz => 'tik'
end
2014-01-15 23:00:46 -05:00
it 'adds an argument if no options are provided' do
k = Class.new
b = OmniAuth::Builder.new(nil)
2014-01-16 00:04:44 -05:00
expect(b).to receive(:use).with(k, :foo => 'bar')
b.options :foo => 'bar'
b.provider k
end
end
describe '#on_failure' do
it 'passes the block to the config' do
prok = proc {}
OmniAuth::Builder.new(nil).on_failure(&prok)
expect(OmniAuth.config.on_failure).to eq(prok)
end
end
describe '#before_options_phase' do
it 'passes the block to the config' do
prok = proc {}
OmniAuth::Builder.new(nil).before_options_phase(&prok)
expect(OmniAuth.config.before_options_phase).to eq(prok)
end
end
describe '#before_request_phase' do
it 'passes the block to the config' do
prok = proc {}
OmniAuth::Builder.new(nil).before_request_phase(&prok)
expect(OmniAuth.config.before_request_phase).to eq(prok)
end
end
describe '#before_callback_phase' do
it 'passes the block to the config' do
prok = proc {}
OmniAuth::Builder.new(nil).before_callback_phase(&prok)
expect(OmniAuth.config.before_callback_phase).to eq(prok)
end
end
describe '#configure' do
it 'passes the block to the config' do
prok = proc {}
allow(OmniAuth).to receive(:configure).and_call_original
OmniAuth::Builder.new(nil).configure(&prok)
expect(OmniAuth).to have_received(:configure) do |&block|
expect(block).to eq(prok)
end
end
end
describe '#call' do
it 'passes env to to_app.call' do
app = lambda { |_env| [200, {}, []] }
builder = OmniAuth::Builder.new(app)
env = {'REQUEST_METHOD' => 'GET', 'PATH_INFO' => '/some/path'}
allow(app).to receive(:call).and_call_original
builder.call(env)
expect(app).to have_received(:call).with(env)
end
end
2011-09-03 14:08:07 -04:00
end