gitlab-org--gitlab-foss/spec/models/ci/pipeline_spec.rb

388 lines
10 KiB
Ruby
Raw Normal View History

2015-08-26 01:42:46 +00:00
require 'spec_helper'
describe Ci::Pipeline, models: true do
2015-12-04 11:55:23 +00:00
let(:project) { FactoryGirl.create :empty_project }
2016-08-11 16:37:50 +00:00
let(:pipeline) { FactoryGirl.create :ci_empty_pipeline, status: 'created', project: project }
2015-08-26 01:42:46 +00:00
2015-12-04 11:55:23 +00:00
it { is_expected.to belong_to(:project) }
2016-07-15 13:42:29 +00:00
it { is_expected.to belong_to(:user) }
2016-03-10 10:06:33 +00:00
it { is_expected.to have_many(:statuses) }
2015-10-06 10:01:16 +00:00
it { is_expected.to have_many(:trigger_requests) }
2015-09-10 13:52:52 +00:00
it { is_expected.to have_many(:builds) }
2016-07-15 13:42:29 +00:00
2015-09-10 13:52:52 +00:00
it { is_expected.to validate_presence_of :sha }
2016-04-16 20:43:40 +00:00
it { is_expected.to validate_presence_of :status }
2015-08-26 01:42:46 +00:00
2015-09-10 13:52:52 +00:00
it { is_expected.to respond_to :git_author_name }
it { is_expected.to respond_to :git_author_email }
it { is_expected.to respond_to :short_sha }
2015-08-26 01:42:46 +00:00
it { is_expected.to delegate_method(:stages).to(:statuses) }
2016-07-11 22:12:31 +00:00
describe '#valid_commit_sha' do
2015-08-26 01:42:46 +00:00
context 'commit.sha can not start with 00000000' do
before do
pipeline.sha = '0' * 40
pipeline.valid_commit_sha
2015-08-26 01:42:46 +00:00
end
it('commit errors should not be empty') { expect(pipeline.errors).not_to be_empty }
2015-08-26 01:42:46 +00:00
end
end
2016-07-11 22:12:31 +00:00
describe '#short_sha' do
subject { pipeline.short_sha }
2015-08-26 01:42:46 +00:00
2015-09-10 13:52:52 +00:00
it 'has 8 items' do
expect(subject.size).to eq(8)
end
it { expect(pipeline.sha).to start_with(subject) }
2015-08-26 01:42:46 +00:00
end
2016-07-11 22:12:31 +00:00
describe '#retried' do
subject { pipeline.retried }
2015-10-06 10:01:16 +00:00
before do
@build1 = FactoryGirl.create :ci_build, pipeline: pipeline, name: 'deploy'
@build2 = FactoryGirl.create :ci_build, pipeline: pipeline, name: 'deploy'
2015-10-06 10:01:16 +00:00
end
it 'returns old builds' do
is_expected.to contain_exactly(@build1)
2015-10-06 10:01:16 +00:00
end
end
2015-08-26 01:42:46 +00:00
describe "#finished_at" do
let(:pipeline) { FactoryGirl.create :ci_pipeline }
2015-08-26 01:42:46 +00:00
it "returns finished_at of latest build" do
build = FactoryGirl.create :ci_build, pipeline: pipeline, finished_at: Time.now - 60
FactoryGirl.create :ci_build, pipeline: pipeline, finished_at: Time.now - 120
pipeline.reload_status!
2015-08-26 01:42:46 +00:00
expect(pipeline.finished_at.to_i).to eq(build.finished_at.to_i)
2015-08-26 01:42:46 +00:00
end
it "returns nil if there is no finished build" do
FactoryGirl.create :ci_not_started_build, pipeline: pipeline
pipeline.reload_status!
2015-08-26 01:42:46 +00:00
expect(pipeline.finished_at).to be_nil
2015-08-26 01:42:46 +00:00
end
end
describe "coverage" do
2015-12-04 11:55:23 +00:00
let(:project) { FactoryGirl.create :empty_project, build_coverage_regex: "/.*/" }
let(:pipeline) { FactoryGirl.create :ci_empty_pipeline, project: project }
2015-08-26 01:42:46 +00:00
it "calculates average when there are two builds with coverage" do
FactoryGirl.create :ci_build, name: "rspec", coverage: 30, pipeline: pipeline
FactoryGirl.create :ci_build, name: "rubocop", coverage: 40, pipeline: pipeline
expect(pipeline.coverage).to eq("35.00")
2015-08-26 01:42:46 +00:00
end
it "calculates average when there are two builds with coverage and one with nil" do
FactoryGirl.create :ci_build, name: "rspec", coverage: 30, pipeline: pipeline
FactoryGirl.create :ci_build, name: "rubocop", coverage: 40, pipeline: pipeline
FactoryGirl.create :ci_build, pipeline: pipeline
expect(pipeline.coverage).to eq("35.00")
2015-08-26 01:42:46 +00:00
end
it "calculates average when there are two builds with coverage and one is retried" do
FactoryGirl.create :ci_build, name: "rspec", coverage: 30, pipeline: pipeline
FactoryGirl.create :ci_build, name: "rubocop", coverage: 30, pipeline: pipeline
FactoryGirl.create :ci_build, name: "rubocop", coverage: 40, pipeline: pipeline
expect(pipeline.coverage).to eq("35.00")
2015-08-26 01:42:46 +00:00
end
it "calculates average when there is one build without coverage" do
FactoryGirl.create :ci_build, pipeline: pipeline
expect(pipeline.coverage).to be_nil
2015-08-26 01:42:46 +00:00
end
end
2016-04-16 20:43:40 +00:00
describe '#retryable?' do
subject { pipeline.retryable? }
2016-04-16 20:43:40 +00:00
context 'no failed builds' do
before do
FactoryGirl.create :ci_build, name: "rspec", pipeline: pipeline, status: 'success'
2016-04-16 20:43:40 +00:00
end
it 'be not retryable' do
is_expected.to be_falsey
end
end
context 'with failed builds' do
before do
FactoryGirl.create :ci_build, name: "rspec", pipeline: pipeline, status: 'running'
FactoryGirl.create :ci_build, name: "rubocop", pipeline: pipeline, status: 'failed'
2016-04-16 20:43:40 +00:00
end
it 'be retryable' do
is_expected.to be_truthy
end
end
end
describe '#stages' do
let(:pipeline2) { FactoryGirl.create :ci_pipeline, project: project }
subject { CommitStatus.where(pipeline: [pipeline, pipeline2]).stages }
2016-04-16 20:43:40 +00:00
before do
FactoryGirl.create :ci_build, pipeline: pipeline2, stage: 'test', stage_idx: 1
FactoryGirl.create :ci_build, pipeline: pipeline, stage: 'build', stage_idx: 0
2016-04-16 20:43:40 +00:00
end
it 'return all stages' do
is_expected.to eq(%w(build test))
end
end
describe '#reload_status!' do
let(:pipeline) { create :ci_empty_pipeline, project: project }
2016-04-16 20:43:40 +00:00
context 'dependent objects' do
let(:commit_status) { create :commit_status, :pending, pipeline: pipeline }
it 'executes reload_status! after succeeding dependent object' do
expect(pipeline).to receive(:reload_status!).and_return(true)
2016-04-16 20:43:40 +00:00
commit_status.success
2016-04-16 20:43:40 +00:00
end
end
context 'updates' do
2016-04-18 11:45:23 +00:00
let(:current) { Time.now.change(usec: 0) }
let(:build) { FactoryGirl.create :ci_build, pipeline: pipeline, started_at: current - 120, finished_at: current - 60 }
2016-04-16 20:43:40 +00:00
before do
build
pipeline.reload_status!
2016-04-16 20:43:40 +00:00
end
[:status, :started_at, :finished_at, :duration].each do |param|
it "#{param}" do
expect(pipeline.send(param)).to eq(build.send(param))
2016-04-16 20:43:40 +00:00
end
end
end
end
2016-04-18 11:35:43 +00:00
describe '#branch?' do
subject { pipeline.branch? }
2016-04-18 11:35:43 +00:00
context 'is not a tag' do
before do
pipeline.tag = false
2016-04-18 11:35:43 +00:00
end
it 'return true when tag is set to false' do
is_expected.to be_truthy
end
end
context 'is not a tag' do
before do
pipeline.tag = true
2016-04-18 11:35:43 +00:00
end
it 'return false when tag is set to true' do
is_expected.to be_falsey
end
end
end
describe '#manual_actions' do
subject { pipeline.manual_actions }
it 'when none defined' do
is_expected.to be_empty
end
context 'when action defined' do
let!(:manual) { create(:ci_build, :manual, pipeline: pipeline, name: 'deploy') }
it 'returns one action' do
is_expected.to contain_exactly(manual)
end
context 'there are multiple of the same name' do
let!(:manual2) { create(:ci_build, :manual, pipeline: pipeline, name: 'deploy') }
it 'returns latest one' do
is_expected.to contain_exactly(manual2)
end
end
end
end
2016-07-14 14:58:05 +00:00
describe '#has_warnings?' do
subject { pipeline.has_warnings? }
context 'build which is allowed to fail fails' do
before do
2016-07-14 14:58:05 +00:00
create :ci_build, :success, pipeline: pipeline, name: 'rspec'
create :ci_build, :allowed_to_fail, :failed, pipeline: pipeline, name: 'rubocop'
end
it 'returns true' do
is_expected.to be_truthy
end
end
context 'build which is allowed to fail succeeds' do
before do
2016-07-14 14:58:05 +00:00
create :ci_build, :success, pipeline: pipeline, name: 'rspec'
create :ci_build, :allowed_to_fail, :success, pipeline: pipeline, name: 'rubocop'
end
it 'returns false' do
is_expected.to be_falsey
end
end
2016-07-14 14:58:05 +00:00
context 'build is retried and succeeds' do
before do
create :ci_build, :success, pipeline: pipeline, name: 'rubocop'
create :ci_build, :failed, pipeline: pipeline, name: 'rspec'
create :ci_build, :success, pipeline: pipeline, name: 'rspec'
end
it 'returns false' do
is_expected.to be_falsey
end
end
end
describe '#status' do
let!(:build) { create(:ci_build, :created, pipeline: pipeline, name: 'test') }
subject { pipeline.reload.status }
context 'on queuing' do
before { build.queue }
it { is_expected.to eq('pending') }
end
context 'on run' do
before do
build.queue
build.run
end
it { is_expected.to eq('running') }
end
context 'on drop' do
before do
build.drop
end
it { is_expected.to eq('failed') }
end
context 'on success' do
before do
build.success
end
it { is_expected.to eq('success') }
end
context 'on cancel' do
before do
build.cancel
end
it { is_expected.to eq('canceled') }
end
end
describe '#execute_hooks' do
2016-08-11 16:37:50 +00:00
let!(:build_a) { create_build('a') }
let!(:build_b) { create_build('b') }
let!(:hook) do
create(:project_hook, project: project, pipeline_events: enabled)
end
before do
ProjectWebHookWorker.drain
end
context 'with pipeline hooks enabled' do
let(:enabled) { true }
2016-08-11 16:37:50 +00:00
before do
WebMock.stub_request(:post, hook.url)
end
context 'with multiple builds' do
2016-08-11 16:37:50 +00:00
context 'when build is queued' do
before do
build_a.queue
build_b.queue
end
2016-08-11 16:37:50 +00:00
it 'receive a pending event once' do
expect(WebMock).to requested('pending').once
end
end
2016-08-11 16:37:50 +00:00
context 'when build is run' do
before do
build_a.queue
build_a.run
build_b.queue
build_b.run
end
2016-08-11 16:37:50 +00:00
it 'receive a running event once' do
expect(WebMock).to requested('running').once
end
end
2016-08-11 16:37:50 +00:00
context 'when all builds succeed' do
before do
build_a.success
build_b.success
end
it 'receive a success event once' do
expect(WebMock).to requested('success').once
end
end
2016-08-11 16:37:50 +00:00
def requested(status)
have_requested(:post, hook.url).with do |req|
json_body = JSON.parse(req.body)
json_body['object_attributes']['status'] == status &&
json_body['builds'].length == 2
end
end
end
end
context 'with pipeline hooks disabled' do
let(:enabled) { false }
2016-08-11 16:37:50 +00:00
before do
build_a.queue
build_b.queue
end
it 'did not execute pipeline_hook after touched' do
expect(WebMock).not_to have_requested(:post, hook.url)
end
end
2016-08-11 16:37:50 +00:00
def create_build(name)
create(:ci_build, :created, pipeline: pipeline, name: name)
end
end
2015-08-26 01:42:46 +00:00
end