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

Increase builder code coverage

For some reason coveralls has decided that various changes in the
gemspec and Gemfile have decreased code coverage by .1%, so let's
go overboard and add a bunch of coverage for the builder.
This commit is contained in:
Bobby McDonald 2019-11-10 23:46:36 -05:00
parent 15942b6bee
commit b0a1c9894b
No known key found for this signature in database
GPG key ID: CAD931A49619329A

View file

@ -1,6 +1,20 @@
require 'helper'
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
describe '#provider' do
it 'translates a symbol to a constant' do
expect(OmniAuth::Strategies).to receive(:const_get).with('MyStrategy').and_return(Class.new)
@ -47,4 +61,70 @@ describe OmniAuth::Builder do
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
end