debian-mirror-gitlab/spec/lib/gitlab/ci/status/external/common_spec.rb

49 lines
1.2 KiB
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
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' }
2017-09-10 17:25:29 +05:30
let(:external_description) { 'my description' }
2017-08-17 22:00:37 +05:30
let(:external_status) do
2017-09-10 17:25:29 +05:30
create(:generic_commit_status, target_url: external_target_url, description: external_description)
2017-08-17 22:00:37 +05:30
end
subject do
Gitlab::Ci::Status::Core
.new(external_status, user)
.extend(described_class)
end
2017-09-10 17:25:29 +05:30
describe '#label' do
it 'returns description' do
expect(subject.label).to eq external_description
end
end
2017-08-17 22:00:37 +05:30
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
2017-09-10 17:25:29 +05:30
before do
project.team << [user, :developer]
end
2017-08-17 22:00:37 +05:30
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