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

describe Gitlab::Ci::Status::Pipeline::SuccessWithWarnings do
  subject do
    described_class.new(double('status'))
  end

  describe '#test' do
    it { expect(subject.text).to eq 'passed' }
  end

  describe '#label' do
    it { expect(subject.label).to eq 'passed with warnings' }
  end

  describe '#icon' do
    it { expect(subject.icon).to eq 'icon_status_warning' }
  end

  describe '#group' do
    it { expect(subject.group).to eq 'success_with_warnings' }
  end

  describe '.matches?' do
    context 'when pipeline is successful' do
      let(:pipeline) do
        create(:ci_pipeline, status: :success)
      end

      context 'when pipeline has warnings' do
        before do
          allow(pipeline).to receive(:has_warnings?).and_return(true)
        end

        it 'is a correct match' do
          expect(described_class.matches?(pipeline, double)).to eq true
        end
      end

      context 'when pipeline does not have warnings' do
        it 'does not match' do
          expect(described_class.matches?(pipeline, double)).to eq false
        end
      end
    end

    context 'when pipeline is not successful' do
      let(:pipeline) do
        create(:ci_pipeline, status: :skipped)
      end

      context 'when pipeline has warnings' do
        before do
          allow(pipeline).to receive(:has_warnings?).and_return(true)
        end

        it 'does not match' do
          expect(described_class.matches?(pipeline, double)).to eq false
        end
      end

      context 'when pipeline does not have warnings' do
        it 'does not match' do
          expect(described_class.matches?(pipeline, double)).to eq false
        end
      end
    end
  end
end