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

coverage_report_worker_spec.rb « pipeline_artifacts « ci « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b594f661a9a442879dff944a6768a4b774d0a9ed (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Ci::PipelineArtifacts::CoverageReportWorker, feature_category: :code_testing do
  describe '#perform' do
    let(:pipeline_id) { pipeline.id }

    subject { described_class.new.perform(pipeline_id) }

    context 'when pipeline exists' do
      let(:pipeline) { create(:ci_pipeline, :success) }

      it 'calls the pipeline coverage report service' do
        expect_next_instance_of(::Ci::PipelineArtifacts::CoverageReportService, pipeline) do |service|
          expect(service).to receive(:execute)
        end

        subject
      end
    end

    context 'when the pipeline is part of a hierarchy' do
      let_it_be(:root_ancestor_pipeline) { create(:ci_pipeline, :success) }
      let_it_be(:pipeline) { create(:ci_pipeline, :success, child_of: root_ancestor_pipeline) }
      let_it_be(:another_child_pipeline) { create(:ci_pipeline, :success, child_of: root_ancestor_pipeline) }

      context 'when all pipelines is complete' do
        it 'calls the pipeline coverage report service on the root ancestor pipeline' do
          expect_next_instance_of(::Ci::PipelineArtifacts::CoverageReportService, root_ancestor_pipeline) do |service|
            expect(service).to receive(:execute)
          end

          subject
        end
      end

      context 'when the pipeline hierarchy has incomplete pipeline' do
        before do
          another_child_pipeline.update!(status: :running)
        end

        it 'does not call pipeline coverage report service' do
          expect(Ci::PipelineArtifacts::CoverageReportService).not_to receive(:new)

          subject
        end
      end
    end

    context 'when pipeline does not exist' do
      let(:pipeline_id) { non_existing_record_id }

      it 'does not call pipeline create artifact service' do
        expect(Ci::PipelineArtifacts::CoverageReportService).not_to receive(:new)

        subject
      end
    end
  end
end