debian-mirror-gitlab/spec/lib/gitlab/shell_spec.rb

736 lines
24 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
2016-09-29 09:46:39 +05:30
require 'stringio'
2014-09-02 18:07:02 +05:30
2017-09-10 17:25:29 +05:30
describe Gitlab::Shell do
2018-03-17 18:26:18 +05:30
set(:project) { create(:project, :repository) }
let(:repository) { project.repository }
2017-09-10 17:25:29 +05:30
let(:gitlab_shell) { described_class.new }
let(:popen_vars) { { 'GIT_TERMINAL_PROMPT' => ENV['GIT_TERMINAL_PROMPT'] } }
2018-03-17 18:26:18 +05:30
let(:gitlab_projects) { double('gitlab_projects') }
let(:timeout) { Gitlab.config.gitlab_shell.git_timeout }
2014-09-02 18:07:02 +05:30
before do
2015-09-11 14:41:01 +05:30
allow(Project).to receive(:find).and_return(project)
2018-03-17 18:26:18 +05:30
allow(gitlab_shell).to receive(:gitlab_projects)
2018-05-09 12:01:36 +05:30
.with(project.repository_storage, project.disk_path + '.git')
2018-03-17 18:26:18 +05:30
.and_return(gitlab_projects)
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
it { is_expected.to respond_to :add_key }
it { is_expected.to respond_to :remove_key }
2018-05-09 12:01:36 +05:30
it { is_expected.to respond_to :create_repository }
2015-04-26 12:48:37 +05:30
it { is_expected.to respond_to :remove_repository }
it { is_expected.to respond_to :fork_repository }
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
it { expect(gitlab_shell.url_to_repo('diaspora')).to eq(Gitlab.config.gitlab_shell.ssh_path_prefix + "diaspora.git") }
2015-10-24 18:46:33 +05:30
2016-11-03 12:29:30 +05:30
describe 'memoized secret_token' do
2016-08-24 12:49:21 +05:30
let(:secret_file) { 'tmp/tests/.secret_shell_test' }
let(:link_file) { 'tmp/tests/shell-secret-test/.gitlab_shell_secret' }
before do
allow(Gitlab.config.gitlab_shell).to receive(:secret_file).and_return(secret_file)
2016-11-03 12:29:30 +05:30
allow(Gitlab.config.gitlab_shell).to receive(:path).and_return('tmp/tests/shell-secret-test')
2016-08-24 12:49:21 +05:30
FileUtils.mkdir('tmp/tests/shell-secret-test')
2017-09-10 17:25:29 +05:30
described_class.ensure_secret_token!
2016-08-24 12:49:21 +05:30
end
after do
FileUtils.rm_rf('tmp/tests/shell-secret-test')
FileUtils.rm_rf(secret_file)
end
it 'creates and links the secret token file' do
2017-09-10 17:25:29 +05:30
secret_token = described_class.secret_token
2016-11-03 12:29:30 +05:30
2016-08-24 12:49:21 +05:30
expect(File.exist?(secret_file)).to be(true)
2016-11-03 12:29:30 +05:30
expect(File.read(secret_file).chomp).to eq(secret_token)
2016-08-24 12:49:21 +05:30
expect(File.symlink?(link_file)).to be(true)
expect(File.readlink(link_file)).to eq(secret_file)
end
end
2016-09-29 09:46:39 +05:30
describe '#add_key' do
2018-03-17 18:26:18 +05:30
context 'when authorized_keys_enabled is true' do
it 'removes trailing garbage' do
allow(gitlab_shell).to receive(:gitlab_shell_keys_path).and_return(:gitlab_shell_keys_path)
expect(gitlab_shell).to receive(:gitlab_shell_fast_execute).with(
[:gitlab_shell_keys_path, 'add-key', 'key-123', 'ssh-rsa foobar']
)
gitlab_shell.add_key('key-123', 'ssh-rsa foobar trailing garbage')
end
end
context 'when authorized_keys_enabled is false' do
before do
stub_application_setting(authorized_keys_enabled: false)
end
it 'does nothing' do
expect(gitlab_shell).not_to receive(:gitlab_shell_fast_execute)
gitlab_shell.add_key('key-123', 'ssh-rsa foobar trailing garbage')
end
end
context 'when authorized_keys_enabled is nil' do
before do
stub_application_setting(authorized_keys_enabled: nil)
end
it 'removes trailing garbage' do
allow(gitlab_shell).to receive(:gitlab_shell_keys_path).and_return(:gitlab_shell_keys_path)
expect(gitlab_shell).to receive(:gitlab_shell_fast_execute).with(
[:gitlab_shell_keys_path, 'add-key', 'key-123', 'ssh-rsa foobar']
)
2016-09-29 09:46:39 +05:30
2018-03-17 18:26:18 +05:30
gitlab_shell.add_key('key-123', 'ssh-rsa foobar trailing garbage')
end
end
end
describe '#batch_add_keys' do
context 'when authorized_keys_enabled is true' do
it 'instantiates KeyAdder' do
expect_any_instance_of(Gitlab::Shell::KeyAdder).to receive(:add_key).with('key-123', 'ssh-rsa foobar')
gitlab_shell.batch_add_keys do |adder|
adder.add_key('key-123', 'ssh-rsa foobar')
end
end
end
context 'when authorized_keys_enabled is false' do
before do
stub_application_setting(authorized_keys_enabled: false)
end
it 'does nothing' do
expect_any_instance_of(Gitlab::Shell::KeyAdder).not_to receive(:add_key)
gitlab_shell.batch_add_keys do |adder|
adder.add_key('key-123', 'ssh-rsa foobar')
end
end
end
context 'when authorized_keys_enabled is nil' do
before do
stub_application_setting(authorized_keys_enabled: nil)
end
it 'instantiates KeyAdder' do
expect_any_instance_of(Gitlab::Shell::KeyAdder).to receive(:add_key).with('key-123', 'ssh-rsa foobar')
gitlab_shell.batch_add_keys do |adder|
adder.add_key('key-123', 'ssh-rsa foobar')
end
end
end
end
describe '#remove_key' do
context 'when authorized_keys_enabled is true' do
it 'removes trailing garbage' do
allow(gitlab_shell).to receive(:gitlab_shell_keys_path).and_return(:gitlab_shell_keys_path)
expect(gitlab_shell).to receive(:gitlab_shell_fast_execute).with(
[:gitlab_shell_keys_path, 'rm-key', 'key-123', 'ssh-rsa foobar']
)
gitlab_shell.remove_key('key-123', 'ssh-rsa foobar')
end
end
context 'when authorized_keys_enabled is false' do
before do
stub_application_setting(authorized_keys_enabled: false)
end
it 'does nothing' do
expect(gitlab_shell).not_to receive(:gitlab_shell_fast_execute)
gitlab_shell.remove_key('key-123', 'ssh-rsa foobar')
end
end
context 'when authorized_keys_enabled is nil' do
before do
stub_application_setting(authorized_keys_enabled: nil)
end
it 'removes trailing garbage' do
allow(gitlab_shell).to receive(:gitlab_shell_keys_path).and_return(:gitlab_shell_keys_path)
expect(gitlab_shell).to receive(:gitlab_shell_fast_execute).with(
[:gitlab_shell_keys_path, 'rm-key', 'key-123', 'ssh-rsa foobar']
)
gitlab_shell.remove_key('key-123', 'ssh-rsa foobar')
end
end
context 'when key content is not given' do
it 'calls rm-key with only one argument' do
allow(gitlab_shell).to receive(:gitlab_shell_keys_path).and_return(:gitlab_shell_keys_path)
expect(gitlab_shell).to receive(:gitlab_shell_fast_execute).with(
[:gitlab_shell_keys_path, 'rm-key', 'key-123']
)
gitlab_shell.remove_key('key-123')
end
end
end
describe '#remove_all_keys' do
context 'when authorized_keys_enabled is true' do
it 'removes trailing garbage' do
allow(gitlab_shell).to receive(:gitlab_shell_keys_path).and_return(:gitlab_shell_keys_path)
expect(gitlab_shell).to receive(:gitlab_shell_fast_execute).with([:gitlab_shell_keys_path, 'clear'])
gitlab_shell.remove_all_keys
end
end
context 'when authorized_keys_enabled is false' do
before do
stub_application_setting(authorized_keys_enabled: false)
end
it 'does nothing' do
expect(gitlab_shell).not_to receive(:gitlab_shell_fast_execute)
gitlab_shell.remove_all_keys
end
end
context 'when authorized_keys_enabled is nil' do
before do
stub_application_setting(authorized_keys_enabled: nil)
end
it 'removes trailing garbage' do
allow(gitlab_shell).to receive(:gitlab_shell_keys_path).and_return(:gitlab_shell_keys_path)
expect(gitlab_shell).to receive(:gitlab_shell_fast_execute).with(
[:gitlab_shell_keys_path, 'clear']
)
gitlab_shell.remove_all_keys
end
end
end
describe '#remove_keys_not_found_in_db' do
context 'when keys are in the file that are not in the DB' do
before do
gitlab_shell.remove_all_keys
gitlab_shell.add_key('key-1234', 'ssh-rsa ASDFASDF')
gitlab_shell.add_key('key-9876', 'ssh-rsa ASDFASDF')
@another_key = create(:key) # this one IS in the DB
end
it 'removes the keys' do
expect(find_in_authorized_keys_file(1234)).to be_truthy
expect(find_in_authorized_keys_file(9876)).to be_truthy
expect(find_in_authorized_keys_file(@another_key.id)).to be_truthy
gitlab_shell.remove_keys_not_found_in_db
expect(find_in_authorized_keys_file(1234)).to be_falsey
expect(find_in_authorized_keys_file(9876)).to be_falsey
expect(find_in_authorized_keys_file(@another_key.id)).to be_truthy
end
end
context 'when keys there are duplicate keys in the file that are not in the DB' do
before do
gitlab_shell.remove_all_keys
gitlab_shell.add_key('key-1234', 'ssh-rsa ASDFASDF')
gitlab_shell.add_key('key-1234', 'ssh-rsa ASDFASDF')
end
it 'removes the keys' do
expect(find_in_authorized_keys_file(1234)).to be_truthy
gitlab_shell.remove_keys_not_found_in_db
expect(find_in_authorized_keys_file(1234)).to be_falsey
end
it 'does not run remove more than once per key (in a batch)' do
expect(gitlab_shell).to receive(:remove_key).with('key-1234').once
gitlab_shell.remove_keys_not_found_in_db
end
end
context 'when keys there are duplicate keys in the file that ARE in the DB' do
before do
gitlab_shell.remove_all_keys
@key = create(:key)
gitlab_shell.add_key(@key.shell_id, @key.key)
end
it 'does not remove the key' do
gitlab_shell.remove_keys_not_found_in_db
expect(find_in_authorized_keys_file(@key.id)).to be_truthy
end
it 'does not need to run a SELECT query for that batch, on account of that key' do
expect_any_instance_of(ActiveRecord::Relation).not_to receive(:pluck)
gitlab_shell.remove_keys_not_found_in_db
end
end
unless ENV['CI'] # Skip in CI, it takes 1 minute
context 'when the first batch can be skipped, but the next batch has keys that are not in the DB' do
before do
gitlab_shell.remove_all_keys
100.times { |i| create(:key) } # first batch is all in the DB
gitlab_shell.add_key('key-1234', 'ssh-rsa ASDFASDF')
end
it 'removes the keys not in the DB' do
expect(find_in_authorized_keys_file(1234)).to be_truthy
gitlab_shell.remove_keys_not_found_in_db
expect(find_in_authorized_keys_file(1234)).to be_falsey
end
end
end
end
describe '#batch_read_key_ids' do
context 'when there are keys in the authorized_keys file' do
before do
gitlab_shell.remove_all_keys
(1..4).each do |i|
gitlab_shell.add_key("key-#{i}", "ssh-rsa ASDFASDF#{i}")
end
end
it 'iterates over the key IDs in the file, in batches' do
loop_count = 0
first_batch = [1, 2]
second_batch = [3, 4]
gitlab_shell.batch_read_key_ids(batch_size: 2) do |batch|
expected = (loop_count == 0 ? first_batch : second_batch)
expect(batch).to eq(expected)
loop_count += 1
end
end
end
end
describe '#list_key_ids' do
context 'when there are keys in the authorized_keys file' do
before do
gitlab_shell.remove_all_keys
(1..4).each do |i|
gitlab_shell.add_key("key-#{i}", "ssh-rsa ASDFASDF#{i}")
end
end
it 'outputs the key IDs in the file, separated by newlines' do
ids = []
gitlab_shell.list_key_ids do |io|
io.each do |line|
ids << line
end
end
expect(ids).to eq(%W{1\n 2\n 3\n 4\n})
end
end
context 'when there are no keys in the authorized_keys file' do
before do
gitlab_shell.remove_all_keys
end
it 'outputs nothing, not even an empty string' do
ids = []
gitlab_shell.list_key_ids do |io|
io.each do |line|
ids << line
end
end
expect(ids).to eq([])
end
2016-09-29 09:46:39 +05:30
end
end
2017-09-10 17:25:29 +05:30
describe Gitlab::Shell::KeyAdder do
2015-10-24 18:46:33 +05:30
describe '#add_key' do
2016-09-29 09:46:39 +05:30
it 'removes trailing garbage' do
io = spy(:io)
2015-10-24 18:46:33 +05:30
adder = described_class.new(io)
2016-09-29 09:46:39 +05:30
adder.add_key('key-42', "ssh-rsa foo bar\tbaz")
expect(io).to have_received(:puts).with("key-42\tssh-rsa foo")
end
2017-08-17 22:00:37 +05:30
it 'handles multiple spaces in the key' do
io = spy(:io)
adder = described_class.new(io)
adder.add_key('key-42', "ssh-rsa foo")
expect(io).to have_received(:puts).with("key-42\tssh-rsa foo")
end
2016-09-29 09:46:39 +05:30
it 'raises an exception if the key contains a tab' do
expect do
described_class.new(StringIO.new).add_key('key-42', "ssh-rsa\tfoobar")
end.to raise_error(Gitlab::Shell::Error)
end
2015-10-24 18:46:33 +05:30
2016-09-29 09:46:39 +05:30
it 'raises an exception if the key contains a newline' do
expect do
described_class.new(StringIO.new).add_key('key-42', "ssh-rsa foobar\nssh-rsa pawned")
end.to raise_error(Gitlab::Shell::Error)
2015-10-24 18:46:33 +05:30
end
end
end
2017-08-17 22:00:37 +05:30
describe 'projects commands' do
2018-03-17 18:26:18 +05:30
let(:gitlab_shell_path) { File.expand_path('tmp/tests/gitlab-shell') }
let(:projects_path) { File.join(gitlab_shell_path, 'bin/gitlab-projects') }
let(:gitlab_shell_hooks_path) { File.join(gitlab_shell_path, 'hooks') }
2017-08-17 22:00:37 +05:30
before do
2018-03-17 18:26:18 +05:30
allow(Gitlab.config.gitlab_shell).to receive(:path).and_return(gitlab_shell_path)
allow(Gitlab.config.gitlab_shell).to receive(:hooks_path).and_return(gitlab_shell_hooks_path)
2017-08-17 22:00:37 +05:30
allow(Gitlab.config.gitlab_shell).to receive(:git_timeout).and_return(800)
end
2018-05-09 12:01:36 +05:30
describe '#create_repository' do
shared_examples '#create_repository' do
2018-03-17 18:26:18 +05:30
let(:repository_storage) { 'default' }
2018-05-09 12:01:36 +05:30
let(:repository_storage_path) { Gitlab.config.repositories.storages[repository_storage].legacy_disk_path }
2018-03-17 18:26:18 +05:30
let(:repo_name) { 'project/path' }
let(:created_path) { File.join(repository_storage_path, repo_name + '.git') }
after do
FileUtils.rm_rf(created_path)
end
it 'creates a repository' do
2018-05-09 12:01:36 +05:30
expect(gitlab_shell.create_repository(repository_storage, repo_name)).to be_truthy
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(File.stat(created_path).mode & 0o777).to eq(0o770)
hooks_path = File.join(created_path, 'hooks')
expect(File.lstat(hooks_path)).to be_symlink
expect(File.realpath(hooks_path)).to eq(gitlab_shell_hooks_path)
end
it 'returns false when the command fails' do
FileUtils.mkdir_p(File.dirname(created_path))
# This file will block the creation of the repo's .git directory. That
2018-05-09 12:01:36 +05:30
# should cause #create_repository to fail.
2018-03-17 18:26:18 +05:30
FileUtils.touch(created_path)
2018-05-09 12:01:36 +05:30
expect(gitlab_shell.create_repository(repository_storage, repo_name)).to be_falsy
2018-03-17 18:26:18 +05:30
end
2017-08-17 22:00:37 +05:30
end
2018-03-17 18:26:18 +05:30
context 'with gitaly' do
2018-05-09 12:01:36 +05:30
it_behaves_like '#create_repository'
2018-03-17 18:26:18 +05:30
end
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
context 'without gitaly', :skip_gitaly_mock do
2018-05-09 12:01:36 +05:30
it_behaves_like '#create_repository'
2017-09-10 17:25:29 +05:30
end
end
describe '#remove_repository' do
2018-03-27 19:54:05 +05:30
let!(:project) { create(:project, :repository, :legacy_storage) }
2018-03-17 18:26:18 +05:30
let(:disk_path) { "#{project.disk_path}.git" }
2017-09-10 17:25:29 +05:30
it 'returns true when the command succeeds' do
2018-03-17 18:26:18 +05:30
expect(gitlab_shell.exists?(project.repository_storage_path, disk_path)).to be(true)
expect(gitlab_shell.remove_repository(project.repository_storage_path, project.disk_path)).to be(true)
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
expect(gitlab_shell.exists?(project.repository_storage_path, disk_path)).to be(false)
2017-09-10 17:25:29 +05:30
end
2018-03-17 18:26:18 +05:30
it 'keeps the namespace directory' do
gitlab_shell.remove_repository(project.repository_storage_path, project.disk_path)
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
expect(gitlab_shell.exists?(project.repository_storage_path, disk_path)).to be(false)
expect(gitlab_shell.exists?(project.repository_storage_path, project.disk_path.gsub(project.name, ''))).to be(true)
2017-09-10 17:25:29 +05:30
end
end
describe '#mv_repository' do
2018-03-17 18:26:18 +05:30
let!(:project2) { create(:project, :repository) }
2017-09-10 17:25:29 +05:30
it 'returns true when the command succeeds' do
2018-03-17 18:26:18 +05:30
old_path = project2.disk_path
new_path = "project/new_path"
expect(gitlab_shell.exists?(project2.repository_storage_path, "#{old_path}.git")).to be(true)
expect(gitlab_shell.exists?(project2.repository_storage_path, "#{new_path}.git")).to be(false)
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
expect(gitlab_shell.mv_repository(project2.repository_storage_path, old_path, new_path)).to be_truthy
expect(gitlab_shell.exists?(project2.repository_storage_path, "#{old_path}.git")).to be(false)
expect(gitlab_shell.exists?(project2.repository_storage_path, "#{new_path}.git")).to be(true)
2017-09-10 17:25:29 +05:30
end
it 'returns false when the command fails' do
2018-03-17 18:26:18 +05:30
expect(gitlab_shell.mv_repository(project2.repository_storage_path, project2.disk_path, '')).to be_falsy
expect(gitlab_shell.exists?(project2.repository_storage_path, "#{project2.disk_path}.git")).to be(true)
2017-09-10 17:25:29 +05:30
end
end
describe '#fork_repository' do
2018-03-17 18:26:18 +05:30
subject do
gitlab_shell.fork_repository(
2018-05-09 12:01:36 +05:30
project.repository_storage,
2018-03-17 18:26:18 +05:30
project.disk_path,
2018-05-09 12:01:36 +05:30
'nfs-file05',
2018-03-17 18:26:18 +05:30
'fork/path'
)
end
2017-09-10 17:25:29 +05:30
it 'returns true when the command succeeds' do
2018-05-09 12:01:36 +05:30
expect(gitlab_projects).to receive(:fork_repository).with('nfs-file05', 'fork/path.git') { true }
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
is_expected.to be_truthy
2017-09-10 17:25:29 +05:30
end
it 'return false when the command fails' do
2018-05-09 12:01:36 +05:30
expect(gitlab_projects).to receive(:fork_repository).with('nfs-file05', 'fork/path.git') { false }
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
is_expected.to be_falsy
2017-09-10 17:25:29 +05:30
end
end
2018-03-17 18:26:18 +05:30
shared_examples 'fetch_remote' do |gitaly_on|
2018-03-27 19:54:05 +05:30
def fetch_remote(ssh_auth = nil, prune = true)
gitlab_shell.fetch_remote(repository.raw_repository, 'remote-name', ssh_auth: ssh_auth, prune: prune)
2017-09-10 17:25:29 +05:30
end
2018-03-17 18:26:18 +05:30
def expect_gitlab_projects(fail = false, options = {})
expect(gitlab_projects).to receive(:fetch_remote).with(
'remote-name',
timeout,
options
).and_return(!fail)
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
allow(gitlab_projects).to receive(:output).and_return('error') if fail
end
def expect_gitaly_call(fail, options = {})
receive_fetch_remote =
if fail
receive(:fetch_remote).and_raise(GRPC::NotFound)
else
receive(:fetch_remote).and_return(true)
end
expect_any_instance_of(Gitlab::GitalyClient::RepositoryService).to receive_fetch_remote
end
if gitaly_on
def expect_call(fail, options = {})
expect_gitaly_call(fail, options)
end
else
def expect_call(fail, options = {})
expect_gitlab_projects(fail, options)
end
2017-09-10 17:25:29 +05:30
end
def build_ssh_auth(opts = {})
defaults = {
ssh_import?: true,
ssh_key_auth?: false,
ssh_known_hosts: nil,
ssh_private_key: nil
}
double(:ssh_auth, defaults.merge(opts))
end
it 'returns true when the command succeeds' do
2018-03-27 19:54:05 +05:30
expect_call(false, force: false, tags: true, prune: true)
2017-09-10 17:25:29 +05:30
expect(fetch_remote).to be_truthy
end
2018-03-27 19:54:05 +05:30
it 'returns true when the command succeeds' do
expect_call(false, force: false, tags: true, prune: false)
expect(fetch_remote(nil, false)).to be_truthy
end
2017-09-10 17:25:29 +05:30
it 'raises an exception when the command fails' do
2018-03-27 19:54:05 +05:30
expect_call(true, force: false, tags: true, prune: true)
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
expect { fetch_remote }.to raise_error(Gitlab::Shell::Error)
end
it 'allows forced and no_tags to be changed' do
2018-03-27 19:54:05 +05:30
expect_call(false, force: true, tags: false, prune: true)
2018-03-17 18:26:18 +05:30
2018-03-27 19:54:05 +05:30
result = gitlab_shell.fetch_remote(repository.raw_repository, 'remote-name', forced: true, no_tags: true, prune: true)
2018-03-17 18:26:18 +05:30
expect(result).to be_truthy
2017-09-10 17:25:29 +05:30
end
context 'SSH auth' do
it 'passes the SSH key if specified' do
2018-03-27 19:54:05 +05:30
expect_call(false, force: false, tags: true, prune: true, ssh_key: 'foo')
2017-09-10 17:25:29 +05:30
ssh_auth = build_ssh_auth(ssh_key_auth?: true, ssh_private_key: 'foo')
expect(fetch_remote(ssh_auth)).to be_truthy
end
it 'does not pass an empty SSH key' do
2018-03-27 19:54:05 +05:30
expect_call(false, force: false, tags: true, prune: true)
2017-09-10 17:25:29 +05:30
ssh_auth = build_ssh_auth(ssh_key_auth: true, ssh_private_key: '')
expect(fetch_remote(ssh_auth)).to be_truthy
end
it 'does not pass the key unless SSH key auth is to be used' do
2018-03-27 19:54:05 +05:30
expect_call(false, force: false, tags: true, prune: true)
2017-09-10 17:25:29 +05:30
ssh_auth = build_ssh_auth(ssh_key_auth: false, ssh_private_key: 'foo')
expect(fetch_remote(ssh_auth)).to be_truthy
end
it 'passes the known_hosts data if specified' do
2018-03-27 19:54:05 +05:30
expect_call(false, force: false, tags: true, prune: true, known_hosts: 'foo')
2017-09-10 17:25:29 +05:30
ssh_auth = build_ssh_auth(ssh_known_hosts: 'foo')
expect(fetch_remote(ssh_auth)).to be_truthy
end
it 'does not pass empty known_hosts data' do
2018-03-27 19:54:05 +05:30
expect_call(false, force: false, tags: true, prune: true)
2017-09-10 17:25:29 +05:30
ssh_auth = build_ssh_auth(ssh_known_hosts: '')
expect(fetch_remote(ssh_auth)).to be_truthy
end
it 'does not pass known_hosts data unless SSH is to be used' do
2018-03-27 19:54:05 +05:30
expect_call(false, force: false, tags: true, prune: true)
2017-09-10 17:25:29 +05:30
ssh_auth = build_ssh_auth(ssh_import?: false, ssh_known_hosts: 'foo')
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
expect(fetch_remote(ssh_auth)).to be_truthy
end
2017-08-17 22:00:37 +05:30
end
end
2018-03-17 18:26:18 +05:30
describe '#fetch_remote local', :skip_gitaly_mock do
it_should_behave_like 'fetch_remote', false
end
describe '#fetch_remote gitaly' do
it_should_behave_like 'fetch_remote', true
context 'gitaly call' do
let(:remote_name) { 'remote-name' }
let(:ssh_auth) { double(:ssh_auth) }
subject do
gitlab_shell.fetch_remote(repository.raw_repository, remote_name,
forced: true, no_tags: true, ssh_auth: ssh_auth)
end
it 'passes the correct params to the gitaly service' do
expect(repository.gitaly_repository_client).to receive(:fetch_remote)
2018-03-27 19:54:05 +05:30
.with(remote_name, ssh_auth: ssh_auth, forced: true, no_tags: true, prune: true, timeout: timeout)
2018-03-17 18:26:18 +05:30
subject
end
end
end
2017-08-17 22:00:37 +05:30
describe '#import_repository' do
2018-03-17 18:26:18 +05:30
let(:import_url) { 'https://gitlab.com/gitlab-org/gitlab-ce.git' }
2017-08-17 22:00:37 +05:30
it 'returns true when the command succeeds' do
2018-03-17 18:26:18 +05:30
expect(gitlab_projects).to receive(:import_project).with(import_url, timeout) { true }
2017-08-17 22:00:37 +05:30
2018-05-09 12:01:36 +05:30
result = gitlab_shell.import_repository(project.repository_storage, project.disk_path, import_url)
2018-03-17 18:26:18 +05:30
expect(result).to be_truthy
2017-08-17 22:00:37 +05:30
end
it 'raises an exception when the command fails' do
2018-03-17 18:26:18 +05:30
allow(gitlab_projects).to receive(:output) { 'error' }
expect(gitlab_projects).to receive(:import_project) { false }
expect do
2018-05-09 12:01:36 +05:30
gitlab_shell.import_repository(project.repository_storage, project.disk_path, import_url)
2018-03-17 18:26:18 +05:30
end.to raise_error(Gitlab::Shell::Error, "error")
end
end
end
describe 'namespace actions' do
subject { described_class.new }
2018-05-09 12:01:36 +05:30
let(:storage_path) { Gitlab.config.repositories.storages.default.legacy_disk_path }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
describe '#add_namespace' do
it 'creates a namespace' do
subject.add_namespace(storage_path, "mepmep")
expect(subject.exists?(storage_path, "mepmep")).to be(true)
end
end
describe '#exists?' do
context 'when the namespace does not exist' do
it 'returns false' do
expect(subject.exists?(storage_path, "non-existing")).to be(false)
end
end
context 'when the namespace exists' do
it 'returns true' do
subject.add_namespace(storage_path, "mepmep")
expect(subject.exists?(storage_path, "mepmep")).to be(true)
end
2017-08-17 22:00:37 +05:30
end
end
2018-03-17 18:26:18 +05:30
describe '#remove' do
it 'removes the namespace' do
subject.add_namespace(storage_path, "mepmep")
subject.rm_namespace(storage_path, "mepmep")
expect(subject.exists?(storage_path, "mepmep")).to be(false)
end
end
describe '#mv_namespace' do
it 'renames the namespace' do
subject.add_namespace(storage_path, "mepmep")
subject.mv_namespace(storage_path, "mepmep", "2mep")
expect(subject.exists?(storage_path, "mepmep")).to be(false)
expect(subject.exists?(storage_path, "2mep")).to be(true)
end
end
end
def find_in_authorized_keys_file(key_id)
gitlab_shell.batch_read_key_ids do |ids|
return true if ids.include?(key_id)
end
false
2017-08-17 22:00:37 +05:30
end
2014-09-02 18:07:02 +05:30
end