summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/status/stage/common_spec.rb
blob: 6ec35f8da7ed2b8e8b4789ddcc28b6f0c99b2347 (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
require 'spec_helper'

describe Gitlab::Ci::Status::Stage::Common do
  let(:user) { create(:user) }
  let(:project) { create(:project) }
  let(:pipeline) { create(:ci_empty_pipeline, project: project) }

  let(:stage) do
    build(:ci_stage, pipeline: pipeline, name: 'test')
  end

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

  it 'does not have action' do
    expect(subject).not_to have_action
  end

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

  context 'when user has permission to read pipeline' do
    before do
      project.add_master(user)
    end

    it 'has details' do
      expect(subject).to have_details
    end
  end

  context 'when user does not have permission to read pipeline' do
    it 'does not have details' do
      expect(subject).not_to have_details
    end
  end
end