summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/status/pipeline/factory_spec.rb
blob: 939ad2edf04d9527b057a30a9f934380952bd5b0 (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
require 'spec_helper'

describe Gitlab::Ci::Status::Pipeline::Factory do
  subject do
    described_class.new(pipeline)
  end

  let(:status) do
    subject.fabricate!
  end

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

        it "fabricates a core status #{core_status}" do
          expect(status).to be_a(
            Gitlab::Ci::Status.const_get(core_status.capitalize))
        end

        it 'extends core status with common stage 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
  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 'fabricates extended "success with warnings" status' do
      expect(status)
        .to be_a Gitlab::Ci::Status::Pipeline::SuccessWithWarnings
    end

    it 'extends core status with common stage methods' do
      expect(status).to have_details
    end
  end
end