omniauth--omniauth/spec/omniauth/failure_endpoint_spec.rb

70 lines
2.3 KiB
Ruby
Raw Normal View History

2013-02-26 00:05:37 +00:00
require 'helper'
describe OmniAuth::FailureEndpoint do
2014-01-16 04:00:46 +00:00
subject { OmniAuth::FailureEndpoint }
2014-01-16 04:00:46 +00:00
context 'raise-out environment' do
before do
@rack_env = ENV['RACK_ENV']
ENV['RACK_ENV'] = 'test'
2013-09-01 18:16:35 +00:00
@default = OmniAuth.config.failure_raise_out_environments
OmniAuth.config.failure_raise_out_environments = ['test']
end
2014-01-16 04:00:46 +00:00
it 'raises out the error' do
2012-04-12 00:13:22 +00:00
expect do
2014-01-16 04:00:46 +00:00
subject.call('omniauth.error' => StandardError.new('Blah'))
end.to raise_error(StandardError, 'Blah')
end
2014-01-16 04:00:46 +00:00
it 'raises out an OmniAuth::Error if no omniauth.error is set' do
expect { subject.call('omniauth.error.type' => 'example') }.to raise_error(OmniAuth::Error, 'example')
end
after do
ENV['RACK_ENV'] = @rack_env
2013-06-20 21:17:16 +00:00
OmniAuth.config.failure_raise_out_environments = @default
end
end
2014-01-16 04:00:46 +00:00
context 'non-raise-out environment' do
let(:env) do
{'omniauth.error.type' => 'invalid_request', 'omniauth.error.strategy' => ExampleStrategy.new({})}
end
2014-01-16 04:00:46 +00:00
it 'is a redirect' do
status, = *subject.call(env)
expect(status).to eq(302)
end
2014-01-16 04:00:46 +00:00
it 'includes the SCRIPT_NAME' do
_, head, = *subject.call(env.merge('SCRIPT_NAME' => '/random'))
expect(head['Location']).to eq('/random/auth/failure?message=invalid_request&strategy=test')
end
it 'respects the globally configured path prefix' do
2013-07-09 08:08:41 +00:00
allow(OmniAuth.config).to receive(:path_prefix).and_return('/boo')
_, head, = *subject.call(env)
2014-01-16 04:00:46 +00:00
expect(head['Location']).to eq('/boo/failure?message=invalid_request&strategy=test')
end
it 'respects the custom path prefix configured on the strategy' do
env['omniauth.error.strategy'] = ExampleStrategy.new({}, path_prefix: "/some/custom/path")
_, head, = *subject.call(env)
expect(head['Location']).to eq('/some/custom/path/failure?message=invalid_request&strategy=test')
end
2014-01-16 04:00:46 +00:00
it 'includes the origin (escaped) if one is provided' do
2016-08-08 17:54:19 +00:00
env['omniauth.origin'] = '/origin-example'
_, head, = *subject.call(env)
expect(head['Location']).to be_include('&origin=%2Forigin-example')
end
it 'escapes the message key' do
_, head = *subject.call(env.merge('omniauth.error.type' => 'Connection refused!'))
expect(head['Location']).to be_include('message=Connection+refused%21')
end
end
end