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

54 lines
1.3 KiB
Ruby
Raw Normal View History

require 'spec_helper'
describe BuildEntity do
2017-03-06 15:09:48 +00:00
let(:user) { create(:user) }
let(:build) { create(:ci_build) }
2017-03-06 15:09:48 +00:00
let(:request) { double('request') }
before do
allow(request).to receive(:user).and_return(user)
end
2016-11-04 09:19:29 +00:00
let(:entity) do
2017-03-06 15:09:48 +00:00
described_class.new(build, request: request)
end
2016-11-04 09:19:29 +00:00
subject { entity.as_json }
it 'contains paths to build page and retry action' do
expect(subject).to include(:build_path, :retry_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 build.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
context 'when build is a regular job' do
it 'does not contain path to play action' do
expect(subject).not_to include(:play_path)
end
end
context 'when build is a manual action' do
let(:build) { create(:ci_build, :manual) }
it 'contains path to play action' do
expect(subject).to include(:play_path)
end
end
end