2016-11-03 09:22:19 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe BuildEntity do
|
2017-03-06 10:09:48 -05:00
|
|
|
let(:user) { create(:user) }
|
2017-06-01 15:34:44 -04:00
|
|
|
let(:build) { create(:ci_build, :failed) }
|
2017-05-31 04:37:19 -04:00
|
|
|
let(:project) { build.project }
|
2017-03-06 10:09:48 -05:00
|
|
|
let(:request) { double('request') }
|
|
|
|
|
|
|
|
before do
|
2017-05-09 00:15:34 -04:00
|
|
|
allow(request).to receive(:current_user).and_return(user)
|
2017-03-06 10:09:48 -05:00
|
|
|
end
|
2016-11-29 05:57:16 -05:00
|
|
|
|
2016-11-04 05:19:29 -04:00
|
|
|
let(:entity) do
|
2017-03-06 10:09:48 -05:00
|
|
|
described_class.new(build, request: request)
|
2016-11-03 09:22:19 -04:00
|
|
|
end
|
|
|
|
|
2016-11-04 05:19:29 -04:00
|
|
|
subject { entity.as_json }
|
|
|
|
|
2016-11-29 05:57:16 -05:00
|
|
|
it 'contains paths to build page and retry action' do
|
2017-06-02 14:32:37 -04:00
|
|
|
expect(subject).to include(:build_path, :retry_path)
|
|
|
|
expect(subject[:retry_path]).not_to be_nil
|
2016-11-29 05:57:16 -05:00
|
|
|
end
|
2016-11-03 09:22:19 -04:00
|
|
|
|
2016-11-29 05:57:16 -05:00
|
|
|
it 'does not contain sensitive information' do
|
|
|
|
expect(subject).not_to include(/token/)
|
|
|
|
expect(subject).not_to include(/variables/)
|
|
|
|
end
|
|
|
|
|
2017-03-17 12:25:17 -04:00
|
|
|
it 'contains whether it is playable' do
|
|
|
|
expect(subject[:playable]).to eq build.playable?
|
|
|
|
end
|
|
|
|
|
2016-11-29 05:57:16 -05:00
|
|
|
it 'contains timestamps' do
|
|
|
|
expect(subject).to include(:created_at, :updated_at)
|
|
|
|
end
|
2016-11-04 08:08:58 -04:00
|
|
|
|
2017-03-06 10:09:48 -05:00
|
|
|
it 'contains details' do
|
2017-03-11 05:56:05 -05:00
|
|
|
expect(subject).to include :status
|
|
|
|
expect(subject[:status]).to include :icon, :favicon, :text, :label
|
2017-03-06 10:09:48 -05:00
|
|
|
end
|
|
|
|
|
2016-11-29 05:57:16 -05:00
|
|
|
context 'when build is a regular job' do
|
|
|
|
it 'does not contain path to play action' do
|
|
|
|
expect(subject).not_to include(:play_path)
|
2016-11-04 08:08:58 -04:00
|
|
|
end
|
2017-04-06 06:58:13 -04:00
|
|
|
|
|
|
|
it 'is not a playable job' do
|
|
|
|
expect(subject[:playable]).to be false
|
|
|
|
end
|
2016-11-03 09:22:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when build is a manual action' do
|
|
|
|
let(:build) { create(:ci_build, :manual) }
|
|
|
|
|
2017-04-06 06:58:13 -04:00
|
|
|
context 'when user is allowed to trigger action' do
|
|
|
|
before do
|
2017-05-31 04:37:19 -04:00
|
|
|
project.add_developer(user)
|
|
|
|
|
|
|
|
create(:protected_branch, :developers_can_merge,
|
|
|
|
name: 'master', project: project)
|
2017-04-06 06:58:13 -04:00
|
|
|
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
|
2016-11-03 09:22:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|