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

67 lines
1.6 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
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
2019-03-02 22:35:43 +05:30
Gitlab::Ci::Status::Success
2017-08-17 22:00:37 +05:30
.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
2019-03-02 22:35:43 +05:30
context 'when description is nil' do
let(:external_description) { nil }
it 'uses core status label' do
expect(subject.label).to eq('passed')
end
end
context 'when description is empty string' do
let(:external_description) { '' }
it 'uses core status label' do
expect(subject.label).to eq('passed')
end
end
2017-09-10 17:25:29 +05:30
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
2018-03-17 18:26:18 +05:30
project.add_developer(user)
2017-09-10 17:25:29 +05:30
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