2016-03-23 06:24:18 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2016-08-10 08:12:31 -04:00
|
|
|
describe Gitlab::Badge::Build::Status do
|
2016-03-23 06:24:18 -04:00
|
|
|
let(:project) { create(:project) }
|
|
|
|
let(:sha) { project.commit.sha }
|
2016-04-01 07:03:14 -04:00
|
|
|
let(:branch) { 'master' }
|
|
|
|
let(:badge) { described_class.new(project, branch) }
|
2016-03-23 06:24:18 -04:00
|
|
|
|
2016-08-11 05:16:14 -04:00
|
|
|
describe '#entity' do
|
|
|
|
it 'always says build' do
|
|
|
|
expect(badge.entity).to eq 'build'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#template' do
|
|
|
|
it 'returns badge template' do
|
|
|
|
expect(badge.template.key_text).to eq 'build'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-28 08:35:02 -04:00
|
|
|
describe '#metadata' do
|
|
|
|
it 'returns badge metadata' do
|
|
|
|
expect(badge.metadata.image_url)
|
|
|
|
.to include 'badges/master/build.svg'
|
2016-04-01 07:03:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-29 02:55:49 -04:00
|
|
|
context 'build exists' do
|
2016-06-01 07:11:28 -04:00
|
|
|
let!(:build) { create_build(project, sha, branch) }
|
2016-03-29 02:55:49 -04:00
|
|
|
|
|
|
|
context 'build success' do
|
|
|
|
before { build.success! }
|
|
|
|
|
2016-07-28 08:58:53 -04:00
|
|
|
describe '#status' do
|
|
|
|
it 'is successful' do
|
|
|
|
expect(badge.status).to eq 'success'
|
|
|
|
end
|
2016-03-29 02:55:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'build failed' do
|
|
|
|
before { build.drop! }
|
2016-03-23 06:24:18 -04:00
|
|
|
|
2016-07-28 08:58:53 -04:00
|
|
|
describe '#status' do
|
|
|
|
it 'failed' do
|
|
|
|
expect(badge.status).to eq 'failed'
|
|
|
|
end
|
2016-03-29 02:55:49 -04:00
|
|
|
end
|
|
|
|
end
|
2016-08-09 07:33:19 -04:00
|
|
|
|
|
|
|
context 'when outdated pipeline for given ref exists' do
|
|
|
|
before do
|
|
|
|
build.success!
|
|
|
|
|
|
|
|
old_build = create_build(project, '11eeffdd', branch)
|
|
|
|
old_build.drop!
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not take outdated pipeline into account' do
|
|
|
|
expect(badge.status).to eq 'success'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when multiple pipelines exist for given sha' do
|
|
|
|
before do
|
|
|
|
build.drop!
|
|
|
|
|
|
|
|
new_build = create_build(project, sha, branch)
|
|
|
|
new_build.success!
|
|
|
|
end
|
|
|
|
|
2016-11-24 04:00:37 -05:00
|
|
|
it 'does not take outdated pipeline into account' do
|
|
|
|
expect(badge.status).to eq 'success'
|
2016-08-09 07:33:19 -04:00
|
|
|
end
|
|
|
|
end
|
2016-03-29 02:55:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'build does not exist' do
|
2016-07-28 08:58:53 -04:00
|
|
|
describe '#status' do
|
|
|
|
it 'is unknown' do
|
|
|
|
expect(badge.status).to eq 'unknown'
|
|
|
|
end
|
2016-03-23 06:24:18 -04:00
|
|
|
end
|
|
|
|
end
|
2016-03-29 02:55:49 -04:00
|
|
|
|
2016-06-01 07:11:28 -04:00
|
|
|
def create_build(project, sha, branch)
|
2016-08-11 09:22:35 -04:00
|
|
|
pipeline = create(:ci_empty_pipeline,
|
|
|
|
project: project,
|
|
|
|
sha: sha,
|
|
|
|
ref: branch)
|
2016-06-01 07:11:28 -04:00
|
|
|
|
2016-07-19 07:23:14 -04:00
|
|
|
create(:ci_build, pipeline: pipeline, stage: 'notify')
|
2016-06-01 07:11:28 -04:00
|
|
|
end
|
2016-03-23 06:24:18 -04:00
|
|
|
end
|