2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Gitlab::Ci::Status::Build::Common do
|
2017-08-17 22:00:37 +05:30
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:build) { create(:ci_build) }
|
|
|
|
let(:project) { build.project }
|
|
|
|
|
|
|
|
subject do
|
|
|
|
Gitlab::Ci::Status::Core
|
|
|
|
.new(build, 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 build' 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 build' do
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
2021-04-29 21:17:54 +05:30
|
|
|
project.update!(public_builds: false)
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
it { is_expected.not_to have_details }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#details_path' do
|
|
|
|
it 'links to the build details page' do
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(subject.details_path).to include "jobs/#{build.id}"
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
describe '#illustration' do
|
|
|
|
it 'provides a fallback empty state illustration' do
|
|
|
|
expect(subject.illustration).not_to be_empty
|
|
|
|
end
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|