2017-11-09 18:39:20 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Gitlab::Auth::UserAuthFinders do
|
|
|
|
include described_class
|
|
|
|
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:env) do
|
|
|
|
{
|
|
|
|
'rack.input' => ''
|
|
|
|
}
|
|
|
|
end
|
2018-11-28 14:06:02 -05:00
|
|
|
let(:request) { Rack::Request.new(env) }
|
2017-11-09 18:39:20 -05:00
|
|
|
|
|
|
|
def set_param(key, value)
|
|
|
|
request.update_param(key, value)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#find_user_from_warden' do
|
|
|
|
context 'with CSRF token' do
|
|
|
|
before do
|
|
|
|
allow(Gitlab::RequestForgeryProtection).to receive(:verified?).and_return(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with invalid credentials' do
|
|
|
|
it 'returns nil' do
|
|
|
|
expect(find_user_from_warden).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with valid credentials' do
|
|
|
|
it 'returns the user' do
|
|
|
|
env['warden'] = double("warden", authenticate: user)
|
|
|
|
|
|
|
|
expect(find_user_from_warden).to eq user
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without CSRF token' do
|
|
|
|
it 'returns nil' do
|
|
|
|
allow(Gitlab::RequestForgeryProtection).to receive(:verified?).and_return(false)
|
|
|
|
env['warden'] = double("warden", authenticate: user)
|
|
|
|
|
|
|
|
expect(find_user_from_warden).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-31 10:01:04 -04:00
|
|
|
describe '#find_user_from_feed_token' do
|
2017-11-09 18:39:20 -05:00
|
|
|
context 'when the request format is atom' do
|
|
|
|
before do
|
2018-11-28 14:06:02 -05:00
|
|
|
env['SCRIPT_NAME'] = 'url.atom'
|
2017-11-09 18:39:20 -05:00
|
|
|
env['HTTP_ACCEPT'] = 'application/atom+xml'
|
|
|
|
end
|
|
|
|
|
2018-05-31 10:01:04 -04:00
|
|
|
context 'when feed_token param is provided' do
|
|
|
|
it 'returns user if valid feed_token' do
|
|
|
|
set_param(:feed_token, user.feed_token)
|
2017-11-09 18:39:20 -05:00
|
|
|
|
2018-11-28 14:06:02 -05:00
|
|
|
expect(find_user_from_feed_token(:rss)).to eq user
|
2018-05-31 10:01:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil if feed_token is blank' do
|
2018-11-28 14:06:02 -05:00
|
|
|
expect(find_user_from_feed_token(:rss)).to be_nil
|
2018-05-31 10:01:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns exception if invalid feed_token' do
|
|
|
|
set_param(:feed_token, 'invalid_token')
|
2017-11-09 18:39:20 -05:00
|
|
|
|
2018-11-28 14:06:02 -05:00
|
|
|
expect { find_user_from_feed_token(:rss) }.to raise_error(Gitlab::Auth::UnauthorizedError)
|
2018-05-31 10:01:04 -04:00
|
|
|
end
|
2017-11-09 18:39:20 -05:00
|
|
|
end
|
|
|
|
|
2018-05-31 10:01:04 -04:00
|
|
|
context 'when rss_token param is provided' do
|
|
|
|
it 'returns user if valid rssd_token' do
|
|
|
|
set_param(:rss_token, user.feed_token)
|
2017-11-09 18:39:20 -05:00
|
|
|
|
2018-11-28 14:06:02 -05:00
|
|
|
expect(find_user_from_feed_token(:rss)).to eq user
|
2018-05-31 10:01:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil if rss_token is blank' do
|
2018-11-28 14:06:02 -05:00
|
|
|
expect(find_user_from_feed_token(:rss)).to be_nil
|
2018-05-31 10:01:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns exception if invalid rss_token' do
|
|
|
|
set_param(:rss_token, 'invalid_token')
|
|
|
|
|
2018-11-28 14:06:02 -05:00
|
|
|
expect { find_user_from_feed_token(:rss) }.to raise_error(Gitlab::Auth::UnauthorizedError)
|
2018-05-31 10:01:04 -04:00
|
|
|
end
|
2017-11-09 18:39:20 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the request format is not atom' do
|
|
|
|
it 'returns nil' do
|
2018-11-28 14:06:02 -05:00
|
|
|
env['SCRIPT_NAME'] = 'json'
|
|
|
|
|
2018-05-31 10:01:04 -04:00
|
|
|
set_param(:feed_token, user.feed_token)
|
2017-11-09 18:39:20 -05:00
|
|
|
|
2018-11-28 14:06:02 -05:00
|
|
|
expect(find_user_from_feed_token(:rss)).to be_nil
|
2017-11-09 18:39:20 -05:00
|
|
|
end
|
|
|
|
end
|
2018-01-15 04:09:21 -05:00
|
|
|
|
|
|
|
context 'when the request format is empty' do
|
|
|
|
it 'the method call does not modify the original value' do
|
2018-11-28 14:06:02 -05:00
|
|
|
env['SCRIPT_NAME'] = 'url.atom'
|
|
|
|
|
2018-06-16 15:20:58 -04:00
|
|
|
env.delete('action_dispatch.request.formats')
|
2018-01-15 04:09:21 -05:00
|
|
|
|
2018-11-28 14:06:02 -05:00
|
|
|
find_user_from_feed_token(:rss)
|
2018-01-15 04:09:21 -05:00
|
|
|
|
|
|
|
expect(env['action_dispatch.request.formats']).to be_nil
|
|
|
|
end
|
|
|
|
end
|
2017-11-09 18:39:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#find_user_from_access_token' do
|
|
|
|
let(:personal_access_token) { create(:personal_access_token, user: user) }
|
|
|
|
|
2018-11-28 14:06:02 -05:00
|
|
|
before do
|
|
|
|
env['SCRIPT_NAME'] = 'url.atom'
|
|
|
|
end
|
|
|
|
|
2017-11-09 18:39:20 -05:00
|
|
|
it 'returns nil if no access_token present' do
|
2018-11-28 14:06:02 -05:00
|
|
|
expect(find_user_from_access_token).to be_nil
|
2017-11-09 18:39:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when validate_access_token! returns valid' do
|
|
|
|
it 'returns user' do
|
|
|
|
env[Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_HEADER] = personal_access_token.token
|
|
|
|
|
|
|
|
expect(find_user_from_access_token).to eq user
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns exception if token has no user' do
|
|
|
|
env[Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_HEADER] = personal_access_token.token
|
|
|
|
allow_any_instance_of(PersonalAccessToken).to receive(:user).and_return(nil)
|
|
|
|
|
2017-11-16 11:03:19 -05:00
|
|
|
expect { find_user_from_access_token }.to raise_error(Gitlab::Auth::UnauthorizedError)
|
2017-11-09 18:39:20 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-28 14:06:02 -05:00
|
|
|
describe '#find_user_from_web_access_token' do
|
|
|
|
let(:personal_access_token) { create(:personal_access_token, user: user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
env[Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_HEADER] = personal_access_token.token
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns exception if token has no user' do
|
|
|
|
allow_any_instance_of(PersonalAccessToken).to receive(:user).and_return(nil)
|
|
|
|
|
|
|
|
expect { find_user_from_access_token }.to raise_error(Gitlab::Auth::UnauthorizedError)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'no feed or API requests' do
|
|
|
|
it 'returns nil if the request is not RSS' do
|
|
|
|
expect(find_user_from_web_access_token(:rss)).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil if the request is not ICS' do
|
|
|
|
expect(find_user_from_web_access_token(:ics)).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil if the request is not API' do
|
|
|
|
expect(find_user_from_web_access_token(:api)).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the user for RSS requests' do
|
|
|
|
env['SCRIPT_NAME'] = 'url.atom'
|
|
|
|
|
|
|
|
expect(find_user_from_web_access_token(:rss)).to eq(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the user for ICS requests' do
|
|
|
|
env['SCRIPT_NAME'] = 'url.ics'
|
|
|
|
|
|
|
|
expect(find_user_from_web_access_token(:ics)).to eq(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the user for API requests' do
|
|
|
|
env['SCRIPT_NAME'] = '/api/endpoint'
|
|
|
|
|
|
|
|
expect(find_user_from_web_access_token(:api)).to eq(user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-09 18:39:20 -05:00
|
|
|
describe '#find_personal_access_token' do
|
|
|
|
let(:personal_access_token) { create(:personal_access_token, user: user) }
|
|
|
|
|
2018-11-28 14:06:02 -05:00
|
|
|
before do
|
|
|
|
env['SCRIPT_NAME'] = 'url.atom'
|
|
|
|
end
|
|
|
|
|
2017-11-09 18:39:20 -05:00
|
|
|
context 'passed as header' do
|
|
|
|
it 'returns token if valid personal_access_token' do
|
|
|
|
env[Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_HEADER] = personal_access_token.token
|
|
|
|
|
|
|
|
expect(find_personal_access_token).to eq personal_access_token
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'passed as param' do
|
|
|
|
it 'returns token if valid personal_access_token' do
|
|
|
|
set_param(Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_PARAM, personal_access_token.token)
|
|
|
|
|
|
|
|
expect(find_personal_access_token).to eq personal_access_token
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil if no personal_access_token' do
|
|
|
|
expect(find_personal_access_token).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns exception if invalid personal_access_token' do
|
|
|
|
env[Gitlab::Auth::UserAuthFinders::PRIVATE_TOKEN_HEADER] = 'invalid_token'
|
|
|
|
|
2017-11-16 11:03:19 -05:00
|
|
|
expect { find_personal_access_token }.to raise_error(Gitlab::Auth::UnauthorizedError)
|
2017-11-09 18:39:20 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#find_oauth_access_token' do
|
|
|
|
let(:application) { Doorkeeper::Application.create!(name: 'MyApp', redirect_uri: 'https://app.com', owner: user) }
|
|
|
|
let(:token) { Doorkeeper::AccessToken.create!(application_id: application.id, resource_owner_id: user.id, scopes: 'api') }
|
|
|
|
|
|
|
|
context 'passed as header' do
|
|
|
|
it 'returns token if valid oauth_access_token' do
|
|
|
|
env['HTTP_AUTHORIZATION'] = "Bearer #{token.token}"
|
|
|
|
|
|
|
|
expect(find_oauth_access_token.token).to eq token.token
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'passed as param' do
|
|
|
|
it 'returns user if valid oauth_access_token' do
|
|
|
|
set_param(:access_token, token.token)
|
|
|
|
|
|
|
|
expect(find_oauth_access_token.token).to eq token.token
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil if no oauth_access_token' do
|
|
|
|
expect(find_oauth_access_token).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns exception if invalid oauth_access_token' do
|
|
|
|
env['HTTP_AUTHORIZATION'] = "Bearer invalid_token"
|
|
|
|
|
2017-11-16 11:03:19 -05:00
|
|
|
expect { find_oauth_access_token }.to raise_error(Gitlab::Auth::UnauthorizedError)
|
2017-11-09 18:39:20 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#validate_access_token!' do
|
|
|
|
let(:personal_access_token) { create(:personal_access_token, user: user) }
|
|
|
|
|
|
|
|
it 'returns nil if no access_token present' do
|
|
|
|
expect(validate_access_token!).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'token is not valid' do
|
|
|
|
before do
|
|
|
|
allow_any_instance_of(described_class).to receive(:access_token).and_return(personal_access_token)
|
|
|
|
end
|
|
|
|
|
2017-11-16 11:03:19 -05:00
|
|
|
it 'returns Gitlab::Auth::ExpiredError if token expired' do
|
2017-11-09 18:39:20 -05:00
|
|
|
personal_access_token.expires_at = 1.day.ago
|
|
|
|
|
2017-11-16 11:03:19 -05:00
|
|
|
expect { validate_access_token! }.to raise_error(Gitlab::Auth::ExpiredError)
|
2017-11-09 18:39:20 -05:00
|
|
|
end
|
|
|
|
|
2017-11-16 11:03:19 -05:00
|
|
|
it 'returns Gitlab::Auth::RevokedError if token revoked' do
|
2017-11-09 18:39:20 -05:00
|
|
|
personal_access_token.revoke!
|
|
|
|
|
2017-11-16 11:03:19 -05:00
|
|
|
expect { validate_access_token! }.to raise_error(Gitlab::Auth::RevokedError)
|
2017-11-09 18:39:20 -05:00
|
|
|
end
|
|
|
|
|
2017-11-16 11:03:19 -05:00
|
|
|
it 'returns Gitlab::Auth::InsufficientScopeError if invalid token scope' do
|
|
|
|
expect { validate_access_token!(scopes: [:sudo]) }.to raise_error(Gitlab::Auth::InsufficientScopeError)
|
2017-11-09 18:39:20 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|