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:
Diffstat (limited to 'spec/services/repositories/shell_destroy_service_spec.rb')
-rw-r--r--spec/services/repositories/shell_destroy_service_spec.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/spec/services/repositories/shell_destroy_service_spec.rb b/spec/services/repositories/shell_destroy_service_spec.rb
new file mode 100644
index 00000000000..9419977f6fe
--- /dev/null
+++ b/spec/services/repositories/shell_destroy_service_spec.rb
@@ -0,0 +1,25 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+describe Repositories::ShellDestroyService do
+ let_it_be(:user) { create(:user) }
+ let!(:project) { create(:project, :repository, namespace: user.namespace) }
+ let(:path) { project.repository.disk_path }
+ let(:remove_path) { "#{path}+#{project.id}#{described_class::DELETED_FLAG}" }
+
+ it 'returns success if the repository is nil' do
+ expect(GitlabShellWorker).not_to receive(:perform_in)
+
+ result = described_class.new(nil).execute
+
+ expect(result[:status]).to eq :success
+ end
+
+ it 'schedules the repository deletion' do
+ expect(GitlabShellWorker).to receive(:perform_in)
+ .with(described_class::REPO_REMOVAL_DELAY, :remove_repository, project.repository_storage, remove_path)
+
+ described_class.new(project.repository).execute
+ end
+end