summaryrefslogtreecommitdiff
path: root/spec/services/ci/pipelines/create_artifact_service_spec.rb
blob: d5e9cf83a6d0dfbe8f1ecb057bb36d9ae96681c7 (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
67
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ::Ci::Pipelines::CreateArtifactService do
  describe '#execute' do
    subject { described_class.new.execute(pipeline) }

    context 'when pipeline has coverage reports' do
      let(:pipeline) { create(:ci_pipeline, :with_coverage_reports) }

      context 'when pipeline is finished' do
        it 'creates a pipeline artifact' do
          subject

          expect(Ci::PipelineArtifact.count).to eq(1)
        end

        it 'persists the default file name' do
          subject

          file = Ci::PipelineArtifact.first.file

          expect(file.filename).to eq('code_coverage.json')
        end

        it 'sets expire_at to 1 week' do
          freeze_time do
            subject

            pipeline_artifact = Ci::PipelineArtifact.first

            expect(pipeline_artifact.expire_at).to eq(1.week.from_now)
          end
        end
      end

      context 'when feature is disabled' do
        it 'does not create a pipeline artifact' do
          stub_feature_flags(coverage_report_view: false)

          subject

          expect(Ci::PipelineArtifact.count).to eq(0)
        end
      end

      context 'when pipeline artifact has already been created' do
        it 'do not raise an error and do not persist the same artifact twice' do
          expect { 2.times { described_class.new.execute(pipeline) } }.not_to raise_error(ActiveRecord::RecordNotUnique)

          expect(Ci::PipelineArtifact.count).to eq(1)
        end
      end
    end

    context 'when pipeline is running and coverage report does not exist' do
      let(:pipeline) { create(:ci_pipeline, :running) }

      it 'does not persist data' do
        subject

        expect(Ci::PipelineArtifact.count).to eq(0)
      end
    end
  end
end