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

describe Gitlab::Ci::Status::External::Common do
  let(:user) { create(:user) }
  let(:project) { external_status.project }
  let(:external_target_url) { 'http://example.gitlab.com/status' }

  let(:external_status) do
    create(:generic_commit_status, target_url: external_target_url)
  end

  subject do
    Gitlab::Ci::Status::Core
      .new(external_status, 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 commit status' do
      before { project.team << [user, :developer] }

      it { is_expected.to have_details }
    end

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

  describe '#details_path' do
    it 'links to the external target URL' do
      expect(subject.details_path).to eq external_target_url
    end
  end
end