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

404 lines
14 KiB
Ruby
Raw Normal View History

2015-08-25 21:42:46 -04:00
require 'spec_helper'
describe Ci::Pipeline, models: true do
2015-12-04 06:55:23 -05:00
let(:project) { FactoryGirl.create :empty_project }
let(:commit) { FactoryGirl.create :ci_commit, project: project }
2015-08-25 21:42:46 -04:00
2015-12-04 06:55:23 -05:00
it { is_expected.to belong_to(:project) }
2016-03-10 05:06:33 -05:00
it { is_expected.to have_many(:statuses) }
2015-10-06 06:01:16 -04:00
it { is_expected.to have_many(:trigger_requests) }
2015-09-10 09:52:52 -04:00
it { is_expected.to have_many(:builds) }
it { is_expected.to validate_presence_of :sha }
2016-04-16 16:43:40 -04:00
it { is_expected.to validate_presence_of :status }
2015-08-25 21:42:46 -04:00
2015-09-10 09:52:52 -04: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-25 21:42:46 -04:00
describe :valid_commit_sha do
context 'commit.sha can not start with 00000000' do
before do
commit.sha = '0' * 40
commit.valid_commit_sha
end
2015-09-10 09:52:52 -04:00
it('commit errors should not be empty') { expect(commit.errors).not_to be_empty }
2015-08-25 21:42:46 -04:00
end
end
describe :short_sha do
subject { commit.short_sha }
2015-09-10 09:52:52 -04:00
it 'has 8 items' do
expect(subject.size).to eq(8)
end
it { expect(commit.sha).to start_with(subject) }
2015-08-25 21:42:46 -04:00
end
describe :create_next_builds do
2015-10-05 06:02:26 -04:00
end
2015-10-06 06:01:16 -04:00
describe :retried do
subject { commit.retried }
before do
2016-06-03 06:29:00 -04:00
@commit1 = FactoryGirl.create :ci_build, pipeline: commit, name: 'deploy'
@commit2 = FactoryGirl.create :ci_build, pipeline: commit, name: 'deploy'
2015-10-06 06:01:16 -04:00
end
it 'returns old builds' do
is_expected.to contain_exactly(@commit1)
end
end
2015-10-05 06:02:26 -04:00
describe :create_builds do
2016-04-11 10:55:40 -04:00
let!(:commit) { FactoryGirl.create :ci_commit, project: project, ref: 'master', tag: false }
2015-10-05 06:02:26 -04:00
def create_builds(trigger_request = nil)
2016-04-11 10:55:40 -04:00
commit.create_builds(nil, trigger_request)
2015-08-25 21:42:46 -04:00
end
def create_next_builds
commit.create_next_builds(commit.builds.order(:id).last)
2015-10-05 06:02:26 -04:00
end
it 'creates builds' do
expect(create_builds).to be_truthy
commit.builds.update_all(status: "success")
expect(commit.builds.count(:all)).to eq(2)
2015-08-25 21:42:46 -04:00
2015-10-05 06:02:26 -04:00
expect(create_next_builds).to be_truthy
commit.builds.update_all(status: "success")
expect(commit.builds.count(:all)).to eq(4)
2015-08-25 21:42:46 -04:00
2015-10-05 06:02:26 -04:00
expect(create_next_builds).to be_truthy
commit.builds.update_all(status: "success")
expect(commit.builds.count(:all)).to eq(5)
2015-08-25 21:42:46 -04:00
2015-10-05 06:02:26 -04:00
expect(create_next_builds).to be_falsey
2015-08-25 21:42:46 -04:00
end
context 'custom stage with first job allowed to fail' do
let(:yaml) do
{
stages: ['clean', 'test'],
clean_job: {
stage: 'clean',
allow_failure: true,
script: 'BUILD',
},
test_job: {
stage: 'test',
script: 'TEST',
},
}
end
before do
stub_ci_commit_yaml_file(YAML.dump(yaml))
create_builds
end
it 'properly schedules builds' do
expect(commit.builds.pluck(:status)).to contain_exactly('pending')
commit.builds.running_or_pending.each(&:drop)
expect(commit.builds.pluck(:status)).to contain_exactly('pending', 'failed')
end
end
context 'properly creates builds when "when" is defined' do
2015-10-15 17:49:27 -04:00
let(:yaml) do
{
stages: ["build", "test", "test_failure", "deploy", "cleanup"],
build: {
stage: "build",
script: "BUILD",
},
test: {
stage: "test",
script: "TEST",
},
test_failure: {
stage: "test_failure",
script: "ON test failure",
when: "on_failure",
},
deploy: {
stage: "deploy",
script: "PUBLISH",
},
cleanup: {
stage: "cleanup",
script: "TIDY UP",
when: "always",
}
}
2015-10-15 17:49:27 -04:00
end
before do
stub_ci_commit_yaml_file(YAML.dump(yaml))
end
context 'when builds are successful' do
it 'properly creates builds' do
expect(create_builds).to be_truthy
expect(commit.builds.pluck(:name)).to contain_exactly('build')
expect(commit.builds.pluck(:status)).to contain_exactly('pending')
commit.builds.running_or_pending.each(&:success)
expect(commit.builds.pluck(:name)).to contain_exactly('build', 'test')
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'pending')
commit.builds.running_or_pending.each(&:success)
expect(commit.builds.pluck(:name)).to contain_exactly('build', 'test', 'deploy')
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'success', 'pending')
commit.builds.running_or_pending.each(&:success)
expect(commit.builds.pluck(:name)).to contain_exactly('build', 'test', 'deploy', 'cleanup')
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'success', 'success', 'pending')
commit.builds.running_or_pending.each(&:success)
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'success', 'success', 'success')
commit.reload
expect(commit.status).to eq('success')
end
end
context 'when test job fails' do
it 'properly creates builds' do
expect(create_builds).to be_truthy
expect(commit.builds.pluck(:name)).to contain_exactly('build')
expect(commit.builds.pluck(:status)).to contain_exactly('pending')
commit.builds.running_or_pending.each(&:success)
expect(commit.builds.pluck(:name)).to contain_exactly('build', 'test')
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'pending')
commit.builds.running_or_pending.each(&:drop)
expect(commit.builds.pluck(:name)).to contain_exactly('build', 'test', 'test_failure')
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'failed', 'pending')
commit.builds.running_or_pending.each(&:success)
expect(commit.builds.pluck(:name)).to contain_exactly('build', 'test', 'test_failure', 'cleanup')
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'failed', 'success', 'pending')
commit.builds.running_or_pending.each(&:success)
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'failed', 'success', 'success')
commit.reload
expect(commit.status).to eq('failed')
end
end
context 'when test and test_failure jobs fail' do
it 'properly creates builds' do
expect(create_builds).to be_truthy
expect(commit.builds.pluck(:name)).to contain_exactly('build')
expect(commit.builds.pluck(:status)).to contain_exactly('pending')
commit.builds.running_or_pending.each(&:success)
expect(commit.builds.pluck(:name)).to contain_exactly('build', 'test')
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'pending')
commit.builds.running_or_pending.each(&:drop)
expect(commit.builds.pluck(:name)).to contain_exactly('build', 'test', 'test_failure')
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'failed', 'pending')
commit.builds.running_or_pending.each(&:drop)
expect(commit.builds.pluck(:name)).to contain_exactly('build', 'test', 'test_failure', 'cleanup')
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'failed', 'failed', 'pending')
commit.builds.running_or_pending.each(&:success)
expect(commit.builds.pluck(:name)).to contain_exactly('build', 'test', 'test_failure', 'cleanup')
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'failed', 'failed', 'success')
commit.reload
expect(commit.status).to eq('failed')
end
end
context 'when deploy job fails' do
it 'properly creates builds' do
expect(create_builds).to be_truthy
expect(commit.builds.pluck(:name)).to contain_exactly('build')
expect(commit.builds.pluck(:status)).to contain_exactly('pending')
commit.builds.running_or_pending.each(&:success)
expect(commit.builds.pluck(:name)).to contain_exactly('build', 'test')
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'pending')
commit.builds.running_or_pending.each(&:success)
expect(commit.builds.pluck(:name)).to contain_exactly('build', 'test', 'deploy')
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'success', 'pending')
commit.builds.running_or_pending.each(&:drop)
expect(commit.builds.pluck(:name)).to contain_exactly('build', 'test', 'deploy', 'cleanup')
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'success', 'failed', 'pending')
commit.builds.running_or_pending.each(&:success)
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'success', 'failed', 'success')
commit.reload
expect(commit.status).to eq('failed')
end
end
context 'when build is canceled in the second stage' do
it 'does not schedule builds after build has been canceled' do
expect(create_builds).to be_truthy
expect(commit.builds.pluck(:name)).to contain_exactly('build')
expect(commit.builds.pluck(:status)).to contain_exactly('pending')
commit.builds.running_or_pending.each(&:success)
expect(commit.builds.running_or_pending).not_to be_empty
expect(commit.builds.pluck(:name)).to contain_exactly('build', 'test')
expect(commit.builds.pluck(:status)).to contain_exactly('success', 'pending')
commit.builds.running_or_pending.each(&:cancel)
expect(commit.builds.running_or_pending).to be_empty
expect(commit.reload.status).to eq('canceled')
end
end
end
2015-08-25 21:42:46 -04:00
end
describe "#finished_at" do
2015-09-28 07:14:34 -04:00
let(:commit) { FactoryGirl.create :ci_commit }
2015-08-25 21:42:46 -04:00
it "returns finished_at of latest build" do
2016-06-03 06:29:00 -04:00
build = FactoryGirl.create :ci_build, pipeline: commit, finished_at: Time.now - 60
FactoryGirl.create :ci_build, pipeline: commit, finished_at: Time.now - 120
2015-08-25 21:42:46 -04:00
2015-09-10 09:52:52 -04:00
expect(commit.finished_at.to_i).to eq(build.finished_at.to_i)
2015-08-25 21:42:46 -04:00
end
it "returns nil if there is no finished build" do
2016-06-03 06:29:00 -04:00
FactoryGirl.create :ci_not_started_build, pipeline: commit
2015-08-25 21:42:46 -04:00
2015-09-10 09:52:52 -04:00
expect(commit.finished_at).to be_nil
2015-08-25 21:42:46 -04:00
end
end
describe "coverage" do
2015-12-04 06:55:23 -05:00
let(:project) { FactoryGirl.create :empty_project, build_coverage_regex: "/.*/" }
let(:commit) { FactoryGirl.create :ci_commit, project: project }
2015-08-25 21:42:46 -04:00
it "calculates average when there are two builds with coverage" do
2016-06-03 06:29:00 -04:00
FactoryGirl.create :ci_build, name: "rspec", coverage: 30, pipeline: commit
FactoryGirl.create :ci_build, name: "rubocop", coverage: 40, pipeline: commit
2015-09-10 09:52:52 -04:00
expect(commit.coverage).to eq("35.00")
2015-08-25 21:42:46 -04:00
end
it "calculates average when there are two builds with coverage and one with nil" do
2016-06-03 06:29:00 -04:00
FactoryGirl.create :ci_build, name: "rspec", coverage: 30, pipeline: commit
FactoryGirl.create :ci_build, name: "rubocop", coverage: 40, pipeline: commit
FactoryGirl.create :ci_build, pipeline: commit
2015-09-10 09:52:52 -04:00
expect(commit.coverage).to eq("35.00")
2015-08-25 21:42:46 -04:00
end
it "calculates average when there are two builds with coverage and one is retried" do
2016-06-03 06:29:00 -04:00
FactoryGirl.create :ci_build, name: "rspec", coverage: 30, pipeline: commit
FactoryGirl.create :ci_build, name: "rubocop", coverage: 30, pipeline: commit
FactoryGirl.create :ci_build, name: "rubocop", coverage: 40, pipeline: commit
2015-09-10 09:52:52 -04:00
expect(commit.coverage).to eq("35.00")
2015-08-25 21:42:46 -04:00
end
it "calculates average when there is one build without coverage" do
2016-06-03 06:29:00 -04:00
FactoryGirl.create :ci_build, pipeline: commit
2015-09-10 09:52:52 -04:00
expect(commit.coverage).to be_nil
2015-08-25 21:42:46 -04:00
end
end
2016-04-16 16:43:40 -04:00
describe '#retryable?' do
subject { commit.retryable? }
context 'no failed builds' do
before do
2016-06-03 06:29:00 -04:00
FactoryGirl.create :ci_build, name: "rspec", pipeline: commit, status: 'success'
2016-04-16 16:43:40 -04:00
end
it 'be not retryable' do
is_expected.to be_falsey
end
end
context 'with failed builds' do
before do
2016-06-03 06:29:00 -04:00
FactoryGirl.create :ci_build, name: "rspec", pipeline: commit, status: 'running'
FactoryGirl.create :ci_build, name: "rubocop", pipeline: commit, status: 'failed'
2016-04-16 16:43:40 -04:00
end
it 'be retryable' do
is_expected.to be_truthy
end
end
end
describe '#stages' do
let(:commit2) { FactoryGirl.create :ci_commit, project: project }
subject { CommitStatus.where(pipeline: [commit, commit2]).stages }
2016-04-16 16:43:40 -04:00
before do
2016-06-03 06:29:00 -04:00
FactoryGirl.create :ci_build, pipeline: commit2, stage: 'test', stage_idx: 1
FactoryGirl.create :ci_build, pipeline: commit, stage: 'build', stage_idx: 0
2016-04-16 16:43:40 -04:00
end
it 'return all stages' do
is_expected.to eq(%w(build test))
end
end
describe '#update_state' do
it 'execute update_state after touching object' do
expect(commit).to receive(:update_state).and_return(true)
commit.touch
end
context 'dependent objects' do
2016-06-03 06:29:00 -04:00
let(:commit_status) { build :commit_status, pipeline: commit }
2016-04-16 16:43:40 -04:00
it 'execute update_state after saving dependent object' do
expect(commit).to receive(:update_state).and_return(true)
commit_status.save
end
end
context 'update state' do
2016-04-18 07:45:23 -04:00
let(:current) { Time.now.change(usec: 0) }
2016-06-03 06:29:00 -04:00
let(:build) { FactoryGirl.create :ci_build, :success, pipeline: commit, started_at: current - 120, finished_at: current - 60 }
2016-04-16 16:43:40 -04:00
before do
build
end
[:status, :started_at, :finished_at, :duration].each do |param|
it "update #{param}" do
expect(commit.send(param)).to eq(build.send(param))
end
end
end
end
2016-04-18 07:35:43 -04:00
describe '#branch?' do
subject { commit.branch? }
context 'is not a tag' do
before do
commit.tag = false
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
commit.tag = true
end
it 'return false when tag is set to true' do
is_expected.to be_falsey
end
end
end
2015-08-25 21:42:46 -04:00
end