summaryrefslogtreecommitdiff
path: root/spec/services/snippets/bulk_destroy_service_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/snippets/bulk_destroy_service_spec.rb')
-rw-r--r--spec/services/snippets/bulk_destroy_service_spec.rb161
1 files changed, 161 insertions, 0 deletions
diff --git a/spec/services/snippets/bulk_destroy_service_spec.rb b/spec/services/snippets/bulk_destroy_service_spec.rb
new file mode 100644
index 00000000000..f03d7496f94
--- /dev/null
+++ b/spec/services/snippets/bulk_destroy_service_spec.rb
@@ -0,0 +1,161 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+describe Snippets::BulkDestroyService do
+ let_it_be(:project) { create(:project) }
+ let(:user) { create(:user) }
+ let!(:personal_snippet) { create(:personal_snippet, :repository, author: user) }
+ let!(:project_snippet) { create(:project_snippet, :repository, project: project, author: user) }
+ let(:snippets) { user.snippets }
+ let(:gitlab_shell) { Gitlab::Shell.new }
+ let(:service_user) { user }
+
+ before do
+ project.add_developer(user)
+ end
+
+ subject { described_class.new(service_user, snippets) }
+
+ describe '#execute' do
+ it 'deletes the snippets in bulk' do
+ response = nil
+
+ expect(Repositories::ShellDestroyService).to receive(:new).with(personal_snippet.repository).and_call_original
+ expect(Repositories::ShellDestroyService).to receive(:new).with(project_snippet.repository).and_call_original
+
+ aggregate_failures do
+ expect do
+ response = subject.execute
+ end.to change(Snippet, :count).by(-2)
+
+ expect(response).to be_success
+ expect(repository_exists?(personal_snippet)).to be_falsey
+ expect(repository_exists?(project_snippet)).to be_falsey
+ end
+ end
+
+ context 'when snippets is empty' do
+ let(:snippets) { Snippet.none }
+
+ it 'returns a ServiceResponse success response' do
+ response = subject.execute
+
+ expect(response).to be_success
+ expect(response.message).to eq 'No snippets found.'
+ end
+ end
+
+ shared_examples 'error is raised' do
+ it 'returns error' do
+ response = subject.execute
+
+ aggregate_failures do
+ expect(response).to be_error
+ expect(response.message).to eq error_message
+ end
+ end
+
+ it 'no record is deleted' do
+ expect do
+ subject.execute
+ end.not_to change(Snippet, :count)
+ end
+ end
+
+ context 'when user does not have access to remove the snippet' do
+ let(:service_user) { create(:user) }
+
+ it_behaves_like 'error is raised' do
+ let(:error_message) { "You don't have access to delete these snippets." }
+ end
+ end
+
+ context 'when an error is raised deleting the repository' do
+ before do
+ allow_next_instance_of(Repositories::DestroyService) do |instance|
+ allow(instance).to receive(:execute).and_return({ status: :error })
+ end
+ end
+
+ it_behaves_like 'error is raised' do
+ let(:error_message) { 'Failed to delete snippet repositories.' }
+ end
+
+ it 'tries to rollback the repository' do
+ expect(subject).to receive(:attempt_rollback_repositories)
+
+ subject.execute
+ end
+ end
+
+ context 'when an error is raised deleting the records' do
+ before do
+ allow(snippets).to receive(:destroy_all).and_raise(ActiveRecord::ActiveRecordError)
+ end
+
+ it_behaves_like 'error is raised' do
+ let(:error_message) { 'Failed to remove snippets.' }
+ end
+
+ it 'tries to rollback the repository' do
+ expect(subject).to receive(:attempt_rollback_repositories)
+
+ subject.execute
+ end
+ end
+
+ context 'when snippet does not have a repository attached' do
+ let!(:snippet_without_repo) { create(:personal_snippet, author: user) }
+
+ it 'does not schedule anything for the snippet without repository and return success' do
+ response = nil
+
+ expect(Repositories::ShellDestroyService).to receive(:new).with(personal_snippet.repository).and_call_original
+ expect(Repositories::ShellDestroyService).to receive(:new).with(project_snippet.repository).and_call_original
+
+ expect do
+ response = subject.execute
+ end.to change(Snippet, :count).by(-3)
+
+ expect(response).to be_success
+ end
+ end
+ end
+
+ describe '#attempt_rollback_repositories' do
+ before do
+ Repositories::DestroyService.new(personal_snippet.repository).execute
+ end
+
+ it 'rollbacks the repository' do
+ error_msg = personal_snippet.disk_path + "+#{personal_snippet.id}+deleted.git"
+ expect(repository_exists?(personal_snippet, error_msg)).to be_truthy
+
+ subject.__send__(:attempt_rollback_repositories)
+
+ aggregate_failures do
+ expect(repository_exists?(personal_snippet, error_msg)).to be_falsey
+ expect(repository_exists?(personal_snippet)).to be_truthy
+ end
+ end
+
+ context 'when an error is raised' do
+ before do
+ allow_next_instance_of(Repositories::DestroyRollbackService) do |instance|
+ allow(instance).to receive(:execute).and_return({ status: :error })
+ end
+ end
+
+ it 'logs the error' do
+ expect(Gitlab::AppLogger).to receive(:error).with(/\ARepository .* in path .* could not be rolled back\z/).twice
+
+ subject.__send__(:attempt_rollback_repositories)
+ end
+ end
+ end
+
+ def repository_exists?(snippet, path = snippet.disk_path + ".git")
+ gitlab_shell.repository_exists?(snippet.snippet_repository.shard_name, path)
+ end
+end