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

shell_destroy_service_spec.rb « repositories « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65168a1784a6a2dddde37c479360699cfc8ac29c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

require 'spec_helper'

RSpec.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