debian-mirror-gitlab/spec/serializers/job_entity_spec.rb

222 lines
5.9 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
require 'spec_helper'
describe JobEntity do
let(:user) { create(:user) }
let(:job) { create(:ci_build) }
let(:project) { job.project }
let(:request) { double('request') }
before do
stub_not_protect_default_branch
allow(request).to receive(:current_user).and_return(user)
project.add_developer(user)
end
let(:entity) do
described_class.new(job, request: request)
end
subject { entity.as_json }
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
expect(subject[:playable]).to eq job.playable?
end
it 'contains timestamps' do
expect(subject).to include(:created_at, :updated_at)
end
it 'contains details' do
expect(subject).to include :status
2018-05-09 12:01:36 +05:30
expect(subject[:status]).to include :icon, :favicon, :text, :label, :tooltip
2017-09-10 17:25:29 +05:30
end
context 'when job is retryable' do
before do
job.update(status: :failed)
end
it 'contains cancel path' do
expect(subject).to include(:retry_path)
end
end
context 'when job is cancelable' do
before do
job.update(status: :running)
end
it 'contains cancel path' do
expect(subject).to include(:cancel_path)
end
end
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
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
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)
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
2018-12-05 23:21:45 +05:30
context 'when job is scheduled' do
let(:job) { create(:ci_build, :scheduled) }
it 'contains path to unschedule action' do
expect(subject).to include(:unschedule_path)
end
it 'contains scheduled_at' do
2018-12-13 13:39:08 +05:30
expect(subject[:scheduled]).to be_truthy
2018-12-05 23:21:45 +05:30
expect(subject[:scheduled_at]).to eq(job.scheduled_at)
end
end
2017-09-10 17:25:29 +05:30
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
2018-05-09 12:01:36 +05:30
expect(subject[:status]).to include :icon, :favicon, :text, :label, :tooltip
end
end
context 'when job failed' do
2018-11-08 19:23:39 +05:30
let(:job) { create(:ci_build, :api_failure) }
2018-05-09 12:01:36 +05:30
2018-10-15 14:42:47 +05:30
it 'contains details' do
expect(subject[:status]).to include :icon, :favicon, :text, :label, :tooltip
end
it 'states that it failed' do
2020-01-01 13:55:28 +05:30
expect(subject[:status][:label]).to eq(s_('CiStatusLabel|failed'))
2018-10-15 14:42:47 +05:30
end
2019-07-07 11:18:12 +05:30
it 'indicates the failure reason on tooltip' do
2020-01-01 13:55:28 +05:30
expect(subject[:status][:tooltip]).to eq("#{s_('CiStatusLabel|failed')} - (API failure)")
2018-10-15 14:42:47 +05:30
end
2019-07-07 11:18:12 +05:30
it 'includes a callout message with a verbose output' do
2018-11-08 19:23:39 +05:30
expect(subject[:callout_message]).to eq('There has been an API failure, please try again')
2018-10-15 14:42:47 +05:30
end
2019-07-07 11:18:12 +05:30
it 'states that it is not recoverable' do
2018-11-08 19:23:39 +05:30
expect(subject[:recoverable]).to be_truthy
2018-10-15 14:42:47 +05:30
end
end
context 'when job is allowed to fail' do
2018-11-08 19:23:39 +05:30
let(:job) { create(:ci_build, :allowed_to_fail, :api_failure) }
2018-10-15 14:42:47 +05:30
it 'contains details' do
expect(subject[:status]).to include :icon, :favicon, :text, :label, :tooltip
end
it 'states that it failed' do
expect(subject[:status][:label]).to eq('failed (allowed to fail)')
end
2019-07-07 11:18:12 +05:30
it 'indicates the failure reason on tooltip' do
2020-01-01 13:55:28 +05:30
expect(subject[:status][:tooltip]).to eq("#{s_('CiStatusLabel|failed')} - (API failure) (allowed to fail)")
2018-10-15 14:42:47 +05:30
end
2019-07-07 11:18:12 +05:30
it 'includes a callout message with a verbose output' do
2018-11-08 19:23:39 +05:30
expect(subject[:callout_message]).to eq('There has been an API failure, please try again')
2018-10-15 14:42:47 +05:30
end
2019-07-07 11:18:12 +05:30
it 'states that it is not recoverable' do
2018-11-08 19:23:39 +05:30
expect(subject[:recoverable]).to be_truthy
end
end
context 'when the job failed with a script failure' do
let(:job) { create(:ci_build, :failed, :script_failure) }
2019-07-07 11:18:12 +05:30
it 'does not include callout message or recoverable keys' do
2018-11-08 19:23:39 +05:30
expect(subject).not_to include('callout_message')
expect(subject).not_to include('recoverable')
2018-10-15 14:42:47 +05:30
end
end
context 'when job failed and is recoverable' do
let(:job) { create(:ci_build, :api_failure) }
2019-07-07 11:18:12 +05:30
it 'states it is recoverable' do
2018-10-15 14:42:47 +05:30
expect(subject[:recoverable]).to be_truthy
2018-05-09 12:01:36 +05:30
end
end
context 'when job passed' do
let(:job) { create(:ci_build, :success) }
2019-07-07 11:18:12 +05:30
it 'does not include callout message or recoverable keys' do
2018-10-15 14:42:47 +05:30
expect(subject).not_to include('callout_message')
expect(subject).not_to include('recoverable')
2017-09-10 17:25:29 +05:30
end
end
end