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

create_artifact_service_spec.rb « pipelines « ci « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f177889ed3f8b79706fb63ed6eb24c78ee8c1fd (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
# 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 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