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: 62a755eb44a63dd22c0bef8af79fbabffe94a09b (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
# 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
    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 statistics 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
    end
  end
end