2015-10-06 06:01:16 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
describe GenericCommitStatus do
|
2017-01-17 08:40:50 -05:00
|
|
|
let(:project) { create(:empty_project) }
|
|
|
|
let(:pipeline) { create(:ci_pipeline, project: project) }
|
|
|
|
let(:external_url) { 'http://example.gitlab.com/status' }
|
2016-12-14 04:21:16 -05:00
|
|
|
|
|
|
|
let(:generic_commit_status) do
|
2017-01-17 08:40:50 -05:00
|
|
|
create(:generic_commit_status, pipeline: pipeline,
|
|
|
|
target_url: external_url)
|
2016-12-14 04:21:16 -05:00
|
|
|
end
|
2015-10-06 06:01:16 -04:00
|
|
|
|
2017-01-18 06:02:44 -05:00
|
|
|
describe 'validations' do
|
|
|
|
it { is_expected.to validate_length_of(:target_url).is_at_most(255) }
|
|
|
|
it { is_expected.to allow_value(nil).for(:target_url) }
|
|
|
|
it { is_expected.to allow_value('http://gitlab.com/s').for(:target_url) }
|
|
|
|
it { is_expected.not_to allow_value('javascript:alert(1)').for(:target_url) }
|
|
|
|
end
|
|
|
|
|
2016-07-11 18:12:31 -04:00
|
|
|
describe '#context' do
|
2015-10-06 06:01:16 -04:00
|
|
|
subject { generic_commit_status.context }
|
2017-06-14 14:18:56 -04:00
|
|
|
|
|
|
|
before do
|
|
|
|
generic_commit_status.context = 'my_context'
|
|
|
|
end
|
2015-10-06 06:01:16 -04:00
|
|
|
|
|
|
|
it { is_expected.to eq(generic_commit_status.name) }
|
|
|
|
end
|
|
|
|
|
2016-07-11 18:12:31 -04:00
|
|
|
describe '#tags' do
|
2015-10-06 06:01:16 -04:00
|
|
|
subject { generic_commit_status.tags }
|
|
|
|
|
|
|
|
it { is_expected.to eq([:external]) }
|
|
|
|
end
|
|
|
|
|
2016-12-14 04:21:16 -05:00
|
|
|
describe '#detailed_status' do
|
|
|
|
let(:user) { create(:user) }
|
2017-01-17 08:40:50 -05:00
|
|
|
let(:status) { generic_commit_status.detailed_status(user) }
|
2016-12-14 04:21:16 -05:00
|
|
|
|
|
|
|
it 'returns detailed status object' do
|
2017-01-17 08:40:50 -05:00
|
|
|
expect(status).to be_a Gitlab::Ci::Status::Success
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user has ability to see datails' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
project.team << [user, :developer]
|
|
|
|
end
|
2017-01-17 08:40:50 -05:00
|
|
|
|
|
|
|
it 'details path points to an external URL' do
|
|
|
|
expect(status).to have_details
|
|
|
|
expect(status.details_path).to eq external_url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when user should not see details' do
|
|
|
|
it 'does not have details' do
|
|
|
|
expect(status).not_to have_details
|
|
|
|
end
|
2016-12-14 04:21:16 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-11 18:12:31 -04:00
|
|
|
describe 'set_default_values' do
|
2015-10-06 06:01:16 -04:00
|
|
|
before do
|
|
|
|
generic_commit_status.context = nil
|
|
|
|
generic_commit_status.stage = nil
|
|
|
|
generic_commit_status.save
|
|
|
|
end
|
|
|
|
|
2016-07-11 18:12:31 -04:00
|
|
|
describe '#context' do
|
2015-10-06 06:01:16 -04:00
|
|
|
subject { generic_commit_status.context }
|
|
|
|
|
2016-05-23 19:37:59 -04:00
|
|
|
it { is_expected.not_to be_nil }
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
|
|
|
|
2016-07-11 18:12:31 -04:00
|
|
|
describe '#stage' do
|
2015-10-06 06:01:16 -04:00
|
|
|
subject { generic_commit_status.stage }
|
|
|
|
|
2016-05-23 19:37:59 -04:00
|
|
|
it { is_expected.not_to be_nil }
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|