debian-mirror-gitlab/spec/services/repositories/destroy_rollback_service_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

86 lines
2.5 KiB
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Repositories::DestroyRollbackService do
2020-03-13 15:44:24 +05:30
let_it_be(:user) { create(:user) }
2021-09-30 23:02:18 +05:30
2020-03-13 15:44:24 +05:30
let!(:project) { create(:project, :repository, namespace: user.namespace) }
let(:repository) { project.repository }
let(:path) { repository.disk_path }
let(:remove_path) { "#{path}+#{project.id}#{described_class::DELETED_FLAG}" }
subject { described_class.new(repository).execute }
before do
# Dont run sidekiq to check if renamed repository exists
Sidekiq::Testing.fake! { destroy_project(project, user) }
end
it 'moves the repository from the +deleted folder' do
expect(project.gitlab_shell.repository_exists?(project.repository_storage, remove_path + '.git')).to be_truthy
expect(project.gitlab_shell.repository_exists?(project.repository_storage, path + '.git')).to be_falsey
subject
expect(project.gitlab_shell.repository_exists?(project.repository_storage, remove_path + '.git')).to be_falsey
expect(project.gitlab_shell.repository_exists?(project.repository_storage, path + '.git')).to be_truthy
end
it 'logs the successful action' do
expect(Gitlab::AppLogger).to receive(:info)
subject
end
it 'flushes the repository cache' do
expect(repository).to receive(:before_delete)
subject
end
it 'returns success and does not perform any action if repository path does not exist' do
expect(repository).to receive(:disk_path).and_return('foo')
expect(repository).not_to receive(:before_delete)
2022-05-07 20:08:51 +05:30
expect(subject[:status]).to eq :success
end
2020-03-13 15:44:24 +05:30
2022-05-07 20:08:51 +05:30
it 'gracefully handles exception if the repository does not exist on disk' do
expect(repository).to receive(:before_delete).and_raise(Gitlab::Git::Repository::NoRepository)
expect(subject[:status]).to eq :success
2020-03-13 15:44:24 +05:30
end
context 'when move operation cannot be performed' do
let(:service) { described_class.new(repository) }
before do
2022-05-07 20:08:51 +05:30
expect(service).to receive(:mv_repository).and_return(false)
2020-03-13 15:44:24 +05:30
end
it 'returns error' do
result = service.execute
expect(result[:status]).to eq :error
end
it 'logs the error' do
expect(Gitlab::AppLogger).to receive(:error)
service.execute
end
2022-05-07 20:08:51 +05:30
context 'when repository does not exist' do
it 'returns success' do
allow(service).to receive(:repo_exists?).and_return(true, false)
expect(service.execute[:status]).to eq :success
end
end
2020-03-13 15:44:24 +05:30
end
def destroy_project(project, user)
Projects::DestroyService.new(project, user, {}).execute
end
end