summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/status/pipeline/factory_spec.rb
blob: 8a36cd1b65826b5e8eace36a1c70d9f39c244dd6 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Ci::Status::Pipeline::Factory do
  let(:user) { create(:user) }
  let(:project) { pipeline.project }
  let(:status) { factory.fabricate! }
  let(:factory) { described_class.new(pipeline, user) }

  before do
    project.add_developer(user)
  end

  context 'when pipeline has a core status' do
    (HasStatus::AVAILABLE_STATUSES - HasStatus::BLOCKED_STATUS).each do |simple_status|
      context "when core status is #{simple_status}" do
        let(:pipeline) { create(:ci_pipeline, status: simple_status) }

        let(:expected_status) do
          Gitlab::Ci::Status.const_get(simple_status.capitalize)
        end

        it "matches correct core status for #{simple_status}" do
          expect(factory.core_status).to be_a expected_status
        end

        it 'does not match extended statuses' do
          expect(factory.extended_statuses).to be_empty
        end

        it "fabricates a core status #{simple_status}" do
          expect(status).to be_a expected_status
        end

        it 'extends core status with common pipeline methods' do
          expect(status).to have_details
          expect(status).not_to have_action
          expect(status.details_path)
            .to include "pipelines/#{pipeline.id}"
        end
      end
    end

    context "when core status is manual" do
      let(:pipeline) { create(:ci_pipeline, status: :manual) }

      it "matches manual core status" do
        expect(factory.core_status)
          .to be_a Gitlab::Ci::Status::Manual
      end

      it 'matches a correct extended statuses' do
        expect(factory.extended_statuses)
          .to eq [Gitlab::Ci::Status::Pipeline::Blocked]
      end

      it 'extends core status with common pipeline methods' do
        expect(status).to have_details
        expect(status).not_to have_action
        expect(status.details_path)
          .to include "pipelines/#{pipeline.id}"
      end
    end

    context "when core status is scheduled" do
      let(:pipeline) { create(:ci_pipeline, status: :scheduled) }

      it "matches scheduled core status" do
        expect(factory.core_status)
          .to be_a Gitlab::Ci::Status::Scheduled
      end

      it 'matches a correct extended statuses' do
        expect(factory.extended_statuses)
          .to eq [Gitlab::Ci::Status::Pipeline::Delayed]
      end

      it 'extends core status with common pipeline methods' do
        expect(status).to have_details
        expect(status).not_to have_action
        expect(status.details_path)
          .to include "pipelines/#{pipeline.id}"
      end
    end
  end

  context 'when pipeline has warnings' do
    let(:pipeline) do
      create(:ci_pipeline, status: :success)
    end

    before do
      create(:ci_build, :allowed_to_fail, :failed, pipeline: pipeline)
    end

    it 'matches correct core status' do
      expect(factory.core_status).to be_a Gitlab::Ci::Status::Success
    end

    it 'matches correct extended statuses' do
      expect(factory.extended_statuses)
        .to eq [Gitlab::Ci::Status::SuccessWarning]
    end

    it 'fabricates extended "success with warnings" status' do
      expect(status).to be_a Gitlab::Ci::Status::SuccessWarning
    end

    it 'extends core status with common pipeline method' do
      expect(status).to have_details
      expect(status.details_path).to include "pipelines/#{pipeline.id}"
    end
  end
end