summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/status/bridge/common_spec.rb
blob: 30e6ad234a0e8aa73cdc3ff9b247c23197136bcd (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Ci::Status::Bridge::Common do
  let_it_be(:user) { create(:user) }
  let_it_be(:bridge) { create(:ci_bridge) }
  let_it_be(:downstream_pipeline) { create(:ci_pipeline) }

  before_all do
    create(:ci_sources_pipeline,
      source_pipeline: bridge.pipeline,
      source_project: bridge.pipeline.project,
      source_job: bridge,
      pipeline: downstream_pipeline,
      project: downstream_pipeline.project)
  end

  subject do
    Gitlab::Ci::Status::Core
      .new(bridge, user)
      .extend(described_class)
  end

  describe '#details_path' do
    context 'when user has access to read downstream pipeline' do
      before do
        downstream_pipeline.project.add_developer(user)
      end

      it { expect(subject).to have_details }
      it { expect(subject.details_path).to include "jobs/#{bridge.id}" }

      context 'with ci_retry_downstream_pipeline ff disabled' do
        before do
          stub_feature_flags(ci_retry_downstream_pipeline: false)
        end

        it { expect(subject.details_path).to include "pipelines/#{downstream_pipeline.id}" }
      end
    end

    context 'when user does not have access to read downstream pipeline' do
      it { expect(subject).not_to have_details }
      it { expect(subject.details_path).to be_nil }
    end
  end
end