BigW Consortium Gitlab

pipeline_details_entity_spec.rb 3.67 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
require 'spec_helper'

describe PipelineDetailsEntity do
  set(:user) { create(:user) }
  let(:request) { double('request') }

  it 'inherrits from PipelineEntity' do
    expect(described_class).to be < PipelineEntity
  end

  before do
12 13
    stub_not_protect_default_branch

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
    allow(request).to receive(:current_user).and_return(user)
  end

  let(:entity) do
    described_class.represent(pipeline, request: request)
  end

  describe '#as_json' do
    subject { entity.as_json }

    context 'when pipeline is empty' do
      let(:pipeline) { create(:ci_empty_pipeline) }

      it 'contains details' do
        expect(subject).to include :details
        expect(subject[:details])
          .to include :duration, :finished_at
        expect(subject[:details])
          .to include :stages, :artifacts, :manual_actions
        expect(subject[:details][:status]).to include :icon, :favicon, :text, :label
      end

      it 'contains flags' do
        expect(subject).to include :flags
        expect(subject[:flags])
39
          .to include :latest, :stuck,
40 41 42 43 44
                      :yaml_errors, :retryable, :cancelable
      end
    end

    context 'when pipeline is retryable' do
45
      let(:project) { create(:project) }
46 47 48 49 50 51 52 53 54 55

      let(:pipeline) do
        create(:ci_pipeline, status: :success, project: project)
      end

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

      context 'user has ability to retry pipeline' do
56
        before do
57
          project.add_developer(user)
58
        end
59 60 61 62 63 64 65 66 67 68 69 70 71 72

        it 'retryable flag is true' do
          expect(subject[:flags][:retryable]).to eq true
        end
      end

      context 'user does not have ability to retry pipeline' do
        it 'retryable flag is false' do
          expect(subject[:flags][:retryable]).to eq false
        end
      end
    end

    context 'when pipeline is cancelable' do
73
      let(:project) { create(:project) }
74 75 76 77 78 79 80 81 82 83

      let(:pipeline) do
        create(:ci_pipeline, status: :running, project: project)
      end

      before do
        create(:ci_build, :pending, pipeline: pipeline)
      end

      context 'user has ability to cancel pipeline' do
84
        before do
85
          project.add_developer(user)
86
        end
87 88 89 90 91 92 93 94 95 96 97 98 99

        it 'cancelable flag is true' do
          expect(subject[:flags][:cancelable]).to eq true
        end
      end

      context 'user does not have ability to cancel pipeline' do
        it 'cancelable flag is false' do
          expect(subject[:flags][:cancelable]).to eq false
        end
      end
    end

100 101
    context 'when pipeline has commit statuses' do
      let(:pipeline) { create(:ci_empty_pipeline) }
102

103 104 105 106 107 108 109 110 111 112 113
      before do
        create(:generic_commit_status, pipeline: pipeline)
      end

      it 'contains stages' do
        expect(subject).to include(:details)
        expect(subject[:details]).to include(:stages)
        expect(subject[:details][:stages].first).to include(name: 'external')
      end
    end

114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
    context 'when pipeline has YAML errors' do
      let(:pipeline) do
        create(:ci_pipeline, config: { rspec: { invalid: :value } })
      end

      it 'contains information about error' do
        expect(subject[:yaml_errors]).to be_present
      end

      it 'contains flag that indicates there are errors' do
        expect(subject[:flags][:yaml_errors]).to be true
      end
    end

    context 'when pipeline does not have YAML errors' do
      let(:pipeline) { create(:ci_empty_pipeline) }

      it 'does not contain field that normally holds an error' do
        expect(subject).not_to have_key(:yaml_errors)
      end

      it 'contains flag that indicates there are no errors' do
        expect(subject[:flags][:yaml_errors]).to be false
      end
    end
  end
end