2018-12-17 01:17:39 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-19 10:34:32 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2018-12-17 01:17:39 -05:00
|
|
|
describe Gitlab::LfsToken, :clean_gitlab_redis_shared_state do
|
2016-09-28 12:02:31 -04:00
|
|
|
describe '#token' do
|
2019-02-10 22:23:35 -05:00
|
|
|
shared_examples 'a valid LFS token' do
|
2018-12-17 01:17:39 -05:00
|
|
|
it 'returns a computed token' do
|
|
|
|
token = lfs_token.token
|
2016-09-19 10:34:32 -04:00
|
|
|
|
|
|
|
expect(token).not_to be_nil
|
|
|
|
expect(token).to be_a String
|
2018-12-17 01:17:39 -05:00
|
|
|
expect(described_class.new(actor).token_valid?(token)).to be_truthy
|
2016-09-19 10:34:32 -04:00
|
|
|
end
|
2018-12-17 01:17:39 -05:00
|
|
|
end
|
2016-09-19 10:34:32 -04:00
|
|
|
|
2018-12-17 01:17:39 -05:00
|
|
|
context 'when the actor is a user' do
|
|
|
|
let(:actor) { create(:user, username: 'test_user_lfs_1') }
|
|
|
|
let(:lfs_token) { described_class.new(actor) }
|
2018-10-23 06:15:56 -04:00
|
|
|
|
2019-02-10 22:23:35 -05:00
|
|
|
it_behaves_like 'a valid LFS token'
|
2018-12-17 01:17:39 -05:00
|
|
|
|
|
|
|
it 'returns the correct username' do
|
|
|
|
expect(lfs_token.actor_name).to eq(actor.username)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the correct token type' do
|
|
|
|
expect(lfs_token.type).to eq(:lfs_token)
|
2016-09-19 10:34:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-17 01:17:39 -05:00
|
|
|
context 'when the actor is a key' do
|
|
|
|
let(:user) { create(:user, username: 'test_user_lfs_2') }
|
|
|
|
let(:actor) { create(:key, user: user) }
|
|
|
|
let(:lfs_token) { described_class.new(actor) }
|
|
|
|
|
2019-02-10 22:23:35 -05:00
|
|
|
it_behaves_like 'a valid LFS token'
|
2016-09-19 10:34:32 -04:00
|
|
|
|
|
|
|
it 'returns the correct username' do
|
2018-12-17 01:17:39 -05:00
|
|
|
expect(lfs_token.actor_name).to eq(user.username)
|
2016-09-19 10:34:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the correct token type' do
|
2018-12-17 01:17:39 -05:00
|
|
|
expect(lfs_token.type).to eq(:lfs_token)
|
2016-09-19 10:34:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the actor is a deploy key' do
|
2018-12-17 01:17:39 -05:00
|
|
|
let(:actor_id) { 1 }
|
2016-09-19 10:34:32 -04:00
|
|
|
let(:actor) { create(:deploy_key) }
|
2018-12-17 01:17:39 -05:00
|
|
|
let(:project) { create(:project) }
|
|
|
|
let(:lfs_token) { described_class.new(actor) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(actor).to receive(:id).and_return(actor_id)
|
|
|
|
end
|
2016-09-19 10:34:32 -04:00
|
|
|
|
2019-02-10 22:23:35 -05:00
|
|
|
it_behaves_like 'a valid LFS token'
|
2016-09-19 10:34:32 -04:00
|
|
|
|
|
|
|
it 'returns the correct username' do
|
2018-12-17 01:17:39 -05:00
|
|
|
expect(lfs_token.actor_name).to eq("lfs+deploy-key-#{actor_id}")
|
2016-09-19 10:34:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the correct token type' do
|
2018-12-17 01:17:39 -05:00
|
|
|
expect(lfs_token.type).to eq(:lfs_deploy_token)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the actor is invalid' do
|
|
|
|
it 'raises an exception' do
|
|
|
|
expect { described_class.new('invalid') }.to raise_error('Bad Actor')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#token_valid?' do
|
|
|
|
let(:actor) { create(:user, username: 'test_user_lfs_1') }
|
|
|
|
let(:lfs_token) { described_class.new(actor) }
|
|
|
|
|
2019-05-21 11:04:09 -04:00
|
|
|
context 'where the token is invalid' do
|
|
|
|
context "because it's junk" do
|
|
|
|
it 'returns false' do
|
|
|
|
expect(lfs_token.token_valid?('junk')).to be_falsey
|
2018-12-17 01:17:39 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-21 11:04:09 -04:00
|
|
|
context "because it's been fiddled with" do
|
|
|
|
it 'returns false' do
|
|
|
|
fiddled_token = lfs_token.token.tap { |token| token[0] = 'E' }
|
|
|
|
expect(lfs_token.token_valid?(fiddled_token)).to be_falsey
|
2018-12-17 01:17:39 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-21 11:04:09 -04:00
|
|
|
context "because it was generated with a different secret" do
|
|
|
|
it 'returns false' do
|
|
|
|
different_actor = create(:user, username: 'test_user_lfs_2')
|
|
|
|
different_secret_token = described_class.new(different_actor).token
|
|
|
|
expect(lfs_token.token_valid?(different_secret_token)).to be_falsey
|
2018-12-17 01:17:39 -05:00
|
|
|
end
|
2019-05-21 11:04:09 -04:00
|
|
|
end
|
2018-12-17 01:17:39 -05:00
|
|
|
|
2019-05-21 11:04:09 -04:00
|
|
|
context "because it's expired" do
|
|
|
|
it 'returns false' do
|
|
|
|
expired_token = lfs_token.token
|
|
|
|
# Needs to be at least 1860 seconds, because the default expiry is
|
|
|
|
# 1800 seconds with an additional 60 second leeway.
|
|
|
|
Timecop.freeze(Time.now + 1865) do
|
|
|
|
expect(lfs_token.token_valid?(expired_token)).to be_falsey
|
2018-12-17 01:17:39 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'where the token is valid' do
|
|
|
|
it 'returns true' do
|
2019-05-21 11:04:09 -04:00
|
|
|
expect(lfs_token.token_valid?(lfs_token.token)).to be_truthy
|
2018-12-17 01:17:39 -05:00
|
|
|
end
|
2016-09-19 10:34:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-12-04 23:22:03 -05:00
|
|
|
|
|
|
|
describe '#deploy_key_pushable?' do
|
|
|
|
let(:lfs_token) { described_class.new(actor) }
|
|
|
|
|
|
|
|
context 'when actor is not a DeployKey' do
|
|
|
|
let(:actor) { create(:user) }
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
|
|
|
|
it 'returns false' do
|
|
|
|
expect(lfs_token.deploy_key_pushable?(project)).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when actor is a DeployKey' do
|
|
|
|
let(:deploy_keys_project) { create(:deploy_keys_project, can_push: can_push) }
|
|
|
|
let(:project) { deploy_keys_project.project }
|
|
|
|
let(:actor) { deploy_keys_project.deploy_key }
|
|
|
|
|
|
|
|
context 'but the DeployKey cannot push to the project' do
|
|
|
|
let(:can_push) { false }
|
|
|
|
|
|
|
|
it 'returns false' do
|
|
|
|
expect(lfs_token.deploy_key_pushable?(project)).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'and the DeployKey can push to the project' do
|
|
|
|
let(:can_push) { true }
|
|
|
|
|
|
|
|
it 'returns true' do
|
|
|
|
expect(lfs_token.deploy_key_pushable?(project)).to be_truthy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#type' do
|
|
|
|
let(:lfs_token) { described_class.new(actor) }
|
|
|
|
|
|
|
|
context 'when actor is not a User' do
|
|
|
|
let(:actor) { create(:deploy_key) }
|
|
|
|
|
|
|
|
it 'returns false' do
|
|
|
|
expect(lfs_token.type).to eq(:lfs_deploy_token)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when actor is a User' do
|
|
|
|
let(:actor) { create(:user) }
|
|
|
|
|
|
|
|
it 'returns false' do
|
|
|
|
expect(lfs_token.type).to eq(:lfs_token)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-02-10 22:34:10 -05:00
|
|
|
|
2019-02-10 23:05:00 -05:00
|
|
|
describe '#authentication_payload' do
|
|
|
|
it 'returns a Hash designed for gitlab-shell' do
|
|
|
|
actor = create(:user)
|
|
|
|
lfs_token = described_class.new(actor)
|
|
|
|
repo_http_path = 'http://localhost/user/repo.git'
|
|
|
|
authentication_payload = lfs_token.authentication_payload(repo_http_path)
|
|
|
|
|
|
|
|
expect(authentication_payload[:username]).to eq(actor.username)
|
|
|
|
expect(authentication_payload[:repository_http_path]).to eq(repo_http_path)
|
|
|
|
expect(authentication_payload[:lfs_token]).to be_a String
|
|
|
|
expect(authentication_payload[:expires_in]).to eq(described_class::DEFAULT_EXPIRE_TIME)
|
2019-02-10 22:34:10 -05:00
|
|
|
end
|
|
|
|
end
|
2016-09-19 10:34:32 -04:00
|
|
|
end
|