Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-10-19 15:57:54 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-10-19 15:57:54 +0300
commit419c53ec62de6e97a517abd5fdd4cbde3a942a34 (patch)
tree1f43a548b46bca8a5fb8fe0c31cef1883d49c5b6 /spec/lib/gitlab/shell_spec.rb
parent1da20d9135b3ad9e75e65b028bffc921aaf8deb7 (diff)
Add latest changes from gitlab-org/gitlab@16-5-stable-eev16.5.0-rc42
Diffstat (limited to 'spec/lib/gitlab/shell_spec.rb')
-rw-r--r--spec/lib/gitlab/shell_spec.rb81
1 files changed, 0 insertions, 81 deletions
diff --git a/spec/lib/gitlab/shell_spec.rb b/spec/lib/gitlab/shell_spec.rb
index 049b8d4ed86..22220efaa05 100644
--- a/spec/lib/gitlab/shell_spec.rb
+++ b/spec/lib/gitlab/shell_spec.rb
@@ -13,8 +13,6 @@ RSpec.describe Gitlab::Shell do
described_class.instance_variable_set(:@secret_token, nil)
end
- it { is_expected.to respond_to :remove_repository }
-
describe '.secret_token' do
let(:secret_file) { 'tmp/tests/.secret_shell_test' }
let(:link_file) { 'tmp/tests/shell-secret-test/.gitlab_shell_secret' }
@@ -74,67 +72,11 @@ RSpec.describe Gitlab::Shell do
end
end
- describe 'projects commands' do
- let(:gitlab_shell_path) { File.expand_path('tmp/tests/gitlab-shell') }
- let(:projects_path) { File.join(gitlab_shell_path, 'bin/gitlab-projects') }
-
- before do
- allow(Gitlab.config.gitlab_shell).to receive(:path).and_return(gitlab_shell_path)
- allow(Gitlab.config.gitlab_shell).to receive(:git_timeout).and_return(800)
- end
-
- describe '#remove_repository' do
- let!(:project) { create(:project, :repository, :legacy_storage) }
- let(:disk_path) { "#{project.disk_path}.git" }
-
- it 'returns true when the command succeeds' do
- expect(project.repository.raw).to exist
-
- expect(gitlab_shell.remove_repository(project.repository_storage, project.disk_path)).to be(true)
-
- expect(project.repository.raw).not_to exist
- end
- end
-
- describe '#mv_repository' do
- let!(:project2) { create(:project, :repository) }
-
- it 'returns true when the command succeeds' do
- old_repo = project2.repository.raw
- new_path = "project/new_path"
- new_repo = Gitlab::Git::Repository.new(project2.repository_storage, "#{new_path}.git", nil, nil)
-
- expect(old_repo).to exist
- expect(new_repo).not_to exist
-
- expect(gitlab_shell.mv_repository(project2.repository_storage, project2.disk_path, new_path)).to be_truthy
-
- expect(old_repo).not_to exist
- expect(new_repo).to exist
- end
-
- it 'returns false when the command fails' do
- expect(gitlab_shell.mv_repository(project2.repository_storage, project2.disk_path, '')).to be_falsy
- expect(project2.repository.raw).to exist
- end
- end
- end
-
describe 'namespace actions' do
subject { described_class.new }
let(:storage) { Gitlab.config.repositories.storages.each_key.first }
- describe '#add_namespace' do
- it 'creates a namespace' do
- Gitlab::GitalyClient::NamespaceService.allow do
- subject.add_namespace(storage, "mepmep")
-
- expect(Gitlab::GitalyClient::NamespaceService.new(storage).exists?("mepmep")).to be(true)
- end
- end
- end
-
describe '#repository_exists?' do
context 'when the repository does not exist' do
it 'returns false' do
@@ -150,28 +92,5 @@ RSpec.describe Gitlab::Shell do
end
end
end
-
- describe '#remove' do
- it 'removes the namespace' do
- Gitlab::GitalyClient::NamespaceService.allow do
- subject.add_namespace(storage, "mepmep")
- subject.rm_namespace(storage, "mepmep")
-
- expect(Gitlab::GitalyClient::NamespaceService.new(storage).exists?("mepmep")).to be(false)
- end
- end
- end
-
- describe '#mv_namespace' do
- it 'renames the namespace' do
- Gitlab::GitalyClient::NamespaceService.allow do
- subject.add_namespace(storage, "mepmep")
- subject.mv_namespace(storage, "mepmep", "2mep")
-
- expect(Gitlab::GitalyClient::NamespaceService.new(storage).exists?("mepmep")).to be(false)
- expect(Gitlab::GitalyClient::NamespaceService.new(storage).exists?("2mep")).to be(true)
- end
- end
- end
end
end