gitlab-org--gitlab-foss/spec/serializers/job_entity_spec.rb

155 lines
3.9 KiB
Ruby
Raw Normal View History

require 'spec_helper'
2017-06-07 09:36:41 +00:00
describe JobEntity do
2017-03-06 15:09:48 +00:00
let(:user) { create(:user) }
2017-06-07 09:36:41 +00:00
let(:job) { create(:ci_build) }
let(:project) { job.project }
2017-03-06 15:09:48 +00:00
let(:request) { double('request') }
before do
stub_not_protect_default_branch
2017-05-09 04:15:34 +00:00
allow(request).to receive(:current_user).and_return(user)
project.add_developer(user)
2017-03-06 15:09:48 +00:00
end
2016-11-04 09:19:29 +00:00
let(:entity) do
2017-06-07 09:36:41 +00:00
described_class.new(job, request: request)
end
2016-11-04 09:19:29 +00:00
subject { entity.as_json }
2017-06-07 09:36:41 +00:00
it 'contains paths to job page action' do
expect(subject).to include(:build_path)
end
it 'does not contain sensitive information' do
expect(subject).not_to include(/token/)
expect(subject).not_to include(/variables/)
end
it 'contains whether it is playable' do
2017-06-07 09:36:41 +00:00
expect(subject[:playable]).to eq job.playable?
end
it 'contains timestamps' do
expect(subject).to include(:created_at, :updated_at)
end
2017-03-06 15:09:48 +00:00
it 'contains details' do
expect(subject).to include :status
expect(subject[:status]).to include :icon, :favicon, :text, :label, :tooltip
2017-03-06 15:09:48 +00:00
end
2017-06-07 10:32:16 +00:00
context 'when job is retryable' do
before do
2017-06-07 09:36:41 +00:00
job.update(status: :failed)
end
it 'contains cancel path' do
expect(subject).to include(:retry_path)
end
end
2017-06-07 10:32:16 +00:00
context 'when job is cancelable' do
before do
2017-06-07 09:36:41 +00:00
job.update(status: :running)
end
it 'contains cancel path' do
expect(subject).to include(:cancel_path)
end
end
2017-06-07 09:36:41 +00:00
context 'when job is a regular job' do
it 'does not contain path to play action' do
expect(subject).not_to include(:play_path)
end
it 'is not a playable build' do
expect(subject[:playable]).to be false
end
end
2017-06-07 09:36:41 +00:00
context 'when job is a manual action' do
let(:job) { create(:ci_build, :manual) }
context 'when user is allowed to trigger action' do
before do
project.add_developer(user)
create(:protected_branch, :developers_can_merge,
name: job.ref, project: job.project)
end
it 'contains path to play action' do
expect(subject).to include(:play_path)
end
it 'is a playable action' do
expect(subject[:playable]).to be true
end
end
context 'when user is not allowed to trigger action' do
2017-07-03 21:58:28 +00:00
before do
allow(job.project).to receive(:empty_repo?).and_return(false)
create(:protected_branch, :no_one_can_push,
name: job.ref, project: job.project)
2017-07-03 21:58:28 +00:00
end
it 'does not contain path to play action' do
expect(subject).not_to include(:play_path)
end
it 'is not a playable action' do
expect(subject[:playable]).to be false
end
end
end
2017-06-07 09:36:41 +00:00
context 'when job is generic commit status' do
let(:job) { create(:generic_commit_status, target_url: 'http://google.com') }
it 'contains paths to target action' do
expect(subject).to include(:build_path)
end
it 'does not contain paths to other action paths' do
expect(subject).not_to include(:retry_path, :cancel_path, :play_path)
end
it 'contains timestamps' do
expect(subject).to include(:created_at, :updated_at)
end
it 'contains details' do
expect(subject).to include :status
expect(subject[:status]).to include :icon, :favicon, :text, :label, :tooltip
end
end
context 'when job failed' do
let(:job) { create(:ci_build, :script_failure) }
describe 'status' do
it 'should contain the failure reason inside label' do
expect(subject[:status]).to include :icon, :favicon, :text, :label, :tooltip
expect(subject[:status][:label]).to eq('failed')
expect(subject[:status][:tooltip]).to eq('failed <br> (script failure)')
end
end
end
context 'when job passed' do
let(:job) { create(:ci_build, :success) }
describe 'status' do
it 'should not contain the failure reason inside label' do
expect(subject[:status][:label]).to eq('passed')
end
2017-06-07 09:36:41 +00:00
end
end
end