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

124 lines
3.0 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
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
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: 'master', project: 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
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
end
end
end