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

144 lines
5.1 KiB
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# frozen_string_literal: true
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
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::Shell do
2020-04-08 14:13:33 +05:30
let_it_be(:project) { create(:project, :repository) }
2018-03-17 18:26:18 +05:30
let(:repository) { project.repository }
2017-09-10 17:25:29 +05:30
let(:gitlab_shell) { described_class.new }
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
it { is_expected.to respond_to :remove_repository }
2014-09-02 18:07:02 +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
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') }
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)
2017-08-17 22:00:37 +05:30
allow(Gitlab.config.gitlab_shell).to receive(:git_timeout).and_return(800)
end
2017-09-10 17:25:29 +05:30
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
2019-12-26 22:10:19 +05:30
expect(TestEnv.storage_dir_exists?(project.repository_storage, disk_path)).to be(true)
2018-03-17 18:26:18 +05:30
2018-10-15 14:42:47 +05:30
expect(gitlab_shell.remove_repository(project.repository_storage, project.disk_path)).to be(true)
2017-09-10 17:25:29 +05:30
2019-12-26 22:10:19 +05:30
expect(TestEnv.storage_dir_exists?(project.repository_storage, 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
2018-10-15 14:42:47 +05:30
gitlab_shell.remove_repository(project.repository_storage, project.disk_path)
2017-09-10 17:25:29 +05:30
2019-12-26 22:10:19 +05:30
expect(TestEnv.storage_dir_exists?(project.repository_storage, disk_path)).to be(false)
expect(TestEnv.storage_dir_exists?(project.repository_storage, 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"
2019-12-26 22:10:19 +05:30
expect(TestEnv.storage_dir_exists?(project2.repository_storage, "#{old_path}.git")).to be(true)
expect(TestEnv.storage_dir_exists?(project2.repository_storage, "#{new_path}.git")).to be(false)
2017-09-10 17:25:29 +05:30
2018-10-15 14:42:47 +05:30
expect(gitlab_shell.mv_repository(project2.repository_storage, old_path, new_path)).to be_truthy
2018-03-17 18:26:18 +05:30
2019-12-26 22:10:19 +05:30
expect(TestEnv.storage_dir_exists?(project2.repository_storage, "#{old_path}.git")).to be(false)
expect(TestEnv.storage_dir_exists?(project2.repository_storage, "#{new_path}.git")).to be(true)
2017-09-10 17:25:29 +05:30
end
it 'returns false when the command fails' do
2018-10-15 14:42:47 +05:30
expect(gitlab_shell.mv_repository(project2.repository_storage, project2.disk_path, '')).to be_falsy
2019-12-26 22:10:19 +05:30
expect(TestEnv.storage_dir_exists?(project2.repository_storage, "#{project2.disk_path}.git")).to be(true)
2017-09-10 17:25:29 +05:30
end
end
2018-03-17 18:26:18 +05:30
end
describe 'namespace actions' do
subject { described_class.new }
2019-12-21 20:55:43 +05:30
2020-03-13 15:44:24 +05:30
let(:storage) { Gitlab.config.repositories.storages.each_key.first }
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
2019-12-26 22:10:19 +05:30
Gitlab::GitalyClient::NamespaceService.allow { subject.add_namespace(storage, "mepmep") }
2018-03-17 18:26:18 +05:30
2019-12-26 22:10:19 +05:30
expect(TestEnv.storage_dir_exists?(storage, "mepmep")).to be(true)
2018-03-17 18:26:18 +05:30
end
end
2019-12-26 22:10:19 +05:30
describe '#repository_exists?' do
context 'when the repository does not exist' do
2018-03-17 18:26:18 +05:30
it 'returns false' do
2019-12-26 22:10:19 +05:30
expect(subject.repository_exists?(storage, "non-existing.git")).to be(false)
2018-03-17 18:26:18 +05:30
end
end
2019-12-26 22:10:19 +05:30
context 'when the repository exists' do
2018-03-17 18:26:18 +05:30
it 'returns true' do
2019-12-26 22:10:19 +05:30
project = create(:project, :repository, :legacy_storage)
2018-03-17 18:26:18 +05:30
2019-12-26 22:10:19 +05:30
expect(subject.repository_exists?(storage, project.repository.disk_path + ".git")).to be(true)
2018-03-17 18:26:18 +05:30
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
2019-12-26 22:10:19 +05:30
Gitlab::GitalyClient::NamespaceService.allow do
subject.add_namespace(storage, "mepmep")
subject.rm_namespace(storage, "mepmep")
end
2018-03-17 18:26:18 +05:30
2019-12-26 22:10:19 +05:30
expect(TestEnv.storage_dir_exists?(storage, "mepmep")).to be(false)
2018-03-17 18:26:18 +05:30
end
end
describe '#mv_namespace' do
it 'renames the namespace' do
2019-12-26 22:10:19 +05:30
Gitlab::GitalyClient::NamespaceService.allow do
subject.add_namespace(storage, "mepmep")
subject.mv_namespace(storage, "mepmep", "2mep")
end
2018-03-17 18:26:18 +05:30
2019-12-26 22:10:19 +05:30
expect(TestEnv.storage_dir_exists?(storage, "mepmep")).to be(false)
expect(TestEnv.storage_dir_exists?(storage, "2mep")).to be(true)
2018-03-17 18:26:18 +05:30
end
end
end
2014-09-02 18:07:02 +05:30
end