Welcome to mirror list, hosted at ThFree Co, Russian Federation.

common_spec.rb « pipeline « status « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3251d138b844edee196e6a88a196cb35f4693d1 (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
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Ci::Status::Pipeline::Common do
  let(:user) { create(:user) }
  let(:project) { create(:project, :private) }
  let(:pipeline) { create(:ci_pipeline, project: project) }

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

  describe '#has_action?' do
    it { is_expected.not_to have_action }
  end

  describe '#has_details?' do
    context 'when user has access to read pipeline' do
      before do
        project.add_developer(user)
      end

      it { is_expected.to have_details }
    end

    context 'when user does not have access to read pipeline' do
      it { is_expected.not_to have_details }
    end
  end

  describe '#details_path' do
    it 'links to the pipeline details page' do
      expect(subject.details_path)
        .to include "pipelines/#{pipeline.id}"
    end
  end
end