2016-11-03 09:22:19 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe BuildEntity do
|
2016-11-04 05:19:29 -04:00
|
|
|
let(:entity) do
|
|
|
|
described_class.new(build, request: double)
|
2016-11-03 09:22:19 -04:00
|
|
|
end
|
|
|
|
|
2016-11-04 05:19:29 -04:00
|
|
|
subject { entity.as_json }
|
|
|
|
|
2016-11-03 09:22:19 -04:00
|
|
|
context 'when build is a regular job' do
|
|
|
|
let(:build) { create(:ci_build) }
|
|
|
|
|
|
|
|
it 'contains url to build page and retry action' do
|
|
|
|
expect(subject).to include(:build_url, :retry_url)
|
|
|
|
expect(subject).not_to include(:play_url)
|
|
|
|
end
|
2016-11-04 08:08:58 -04:00
|
|
|
|
|
|
|
it 'does not contain sensitive information' do
|
|
|
|
expect(subject).not_to include(/token/)
|
|
|
|
expect(subject).not_to include(/variables/)
|
|
|
|
end
|
2016-11-03 09:22:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when build is a manual action' do
|
|
|
|
let(:build) { create(:ci_build, :manual) }
|
|
|
|
|
|
|
|
it 'contains url to play action' do
|
|
|
|
expect(subject).to include(:play_url)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|