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

delete_service_spec.rb « job_artifacts « ci « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 78e8be48255d4f8cab972acbf4f2c83f102df32d (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Ci::JobArtifacts::DeleteService do
  let_it_be(:build, reload: true) do
    create(:ci_build, :artifacts, :trace_artifact, artifacts_expire_at: 100.days.from_now)
  end

  subject(:service) { described_class.new(build) }

  describe '#execute' do
    it 'is successful' do
      result = service.execute

      expect(result).to be_success
      expect(result[:destroyed_artifacts_count]).to be(2)
    end

    it 'deletes erasable artifacts' do
      expect { service.execute }.to change { build.job_artifacts.erasable.count }.from(2).to(0)
    end

    it 'does not delete trace' do
      expect { service.execute }.not_to change { build.has_trace? }.from(true)
    end

    context 'when project is undergoing stats refresh' do
      before do
        allow(build.project).to receive(:refreshing_build_artifacts_size?).and_return(true)
      end

      it 'logs a warning' do
        expect(Gitlab::ProjectStatsRefreshConflictsLogger)
          .to receive(:warn_artifact_deletion_during_stats_refresh)
                .with(method: 'Ci::JobArtifacts::DeleteService#execute', project_id: build.project_id)

        service.execute
      end

      it 'returns an error response with the correct message and reason' do
        result = service.execute

        expect(result).to be_error
        expect(result[:message]).to be('Action temporarily disabled. ' \
          'The project this job belongs to is undergoing stats refresh.')
        expect(result[:reason]).to be(:project_stats_refresh)
      end
    end

    context 'when an error response is received from DestroyBatchService' do
      before do
        allow_next_instance_of(Ci::JobArtifacts::DestroyBatchService) do |service|
          allow(service).to receive(:execute).and_return({ status: :error, message: 'something went wrong' })
        end
      end

      it 'returns an error response with the correct message' do
        result = service.execute

        expect(result).to be_error
        expect(result[:message]).to be('something went wrong')
      end
    end
  end
end