debian-mirror-gitlab/spec/lib/gitlab/ci/pipeline/chain/seed_spec.rb

179 lines
5.2 KiB
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::Ci::Pipeline::Chain::Seed do
2019-12-26 22:10:19 +05:30
let(:project) { create(:project, :repository) }
let(:user) { create(:user, developer_projects: [project]) }
2021-01-29 00:20:46 +05:30
let(:seeds_block) { }
2019-12-26 22:10:19 +05:30
let(:command) do
Gitlab::Ci::Pipeline::Chain::Command.new(
project: project,
current_user: user,
origin_ref: 'master',
2021-01-29 00:20:46 +05:30
seeds_block: seeds_block)
2019-12-26 22:10:19 +05:30
end
let(:pipeline) { build(:ci_pipeline, project: project) }
describe '#perform!' do
before do
stub_ci_pipeline_yaml_file(YAML.dump(config))
2021-03-08 18:12:59 +05:30
run_chain
2019-12-26 22:10:19 +05:30
end
let(:config) do
{ rspec: { script: 'rake' } }
end
2021-01-29 00:20:46 +05:30
subject(:run_chain) do
[
Gitlab::Ci::Pipeline::Chain::Config::Content.new(pipeline, command),
Gitlab::Ci::Pipeline::Chain::Config::Process.new(pipeline, command)
].map(&:perform!)
described_class.new(pipeline, command).perform!
end
2019-12-26 22:10:19 +05:30
it 'allocates next IID' do
expect(pipeline.iid).to be_present
end
2020-06-23 00:09:42 +05:30
it 'ensures ci_ref' do
expect(pipeline.ci_ref).to be_present
end
2019-12-26 22:10:19 +05:30
it 'sets the seeds in the command object' do
2021-02-22 17:27:13 +05:30
expect(command.pipeline_seed).to be_a(Gitlab::Ci::Pipeline::Seed::Pipeline)
expect(command.pipeline_seed.size).to eq 1
2019-12-26 22:10:19 +05:30
end
context 'when no ref policy is specified' do
let(:config) do
{
production: { stage: 'deploy', script: 'cap prod' },
rspec: { stage: 'test', script: 'rspec' },
spinach: { stage: 'test', script: 'spinach' }
}
end
2021-02-22 17:27:13 +05:30
it 'correctly fabricates stages and builds' do
seed = command.pipeline_seed
expect(seed.stages.size).to eq 2
expect(seed.size).to eq 3
expect(seed.stages.first.name).to eq 'test'
expect(seed.stages.second.name).to eq 'deploy'
expect(seed.stages[0].statuses[0].name).to eq 'rspec'
expect(seed.stages[0].statuses[1].name).to eq 'spinach'
expect(seed.stages[1].statuses[0].name).to eq 'production'
2019-12-26 22:10:19 +05:30
end
end
context 'when refs policy is specified' do
let(:pipeline) do
build(:ci_pipeline, project: project, ref: 'feature', tag: true)
end
let(:config) do
{
production: { stage: 'deploy', script: 'cap prod', only: ['master'] },
spinach: { stage: 'test', script: 'spinach', only: ['tags'] }
}
end
2021-02-22 17:27:13 +05:30
it 'returns pipeline seed with jobs only assigned to master' do
seed = command.pipeline_seed
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
expect(seed.size).to eq 1
expect(seed.stages.first.name).to eq 'test'
expect(seed.stages[0].statuses[0].name).to eq 'spinach'
2019-12-26 22:10:19 +05:30
end
end
context 'when source policy is specified' do
let(:pipeline) { create(:ci_pipeline, source: :schedule) }
let(:config) do
{
production: { stage: 'deploy', script: 'cap prod', only: ['triggers'] },
spinach: { stage: 'test', script: 'spinach', only: ['schedules'] }
}
end
2021-02-22 17:27:13 +05:30
it 'returns pipeline seed with jobs only assigned to schedules' do
seed = command.pipeline_seed
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
expect(seed.size).to eq 1
expect(seed.stages.first.name).to eq 'test'
expect(seed.stages[0].statuses[0].name).to eq 'spinach'
2019-12-26 22:10:19 +05:30
end
end
context 'when kubernetes policy is specified' do
let(:config) do
{
spinach: { stage: 'test', script: 'spinach' },
production: {
stage: 'deploy',
script: 'cap',
only: { kubernetes: 'active' }
}
}
end
context 'when kubernetes is active' do
context 'when user configured kubernetes from CI/CD > Clusters' do
let!(:cluster) { create(:cluster, :project, :provided_by_gcp) }
let(:project) { cluster.project }
let(:pipeline) { build(:ci_pipeline, project: project) }
it 'returns seeds for kubernetes dependent job' do
2021-02-22 17:27:13 +05:30
seed = command.pipeline_seed
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
expect(seed.size).to eq 2
expect(seed.stages[0].statuses[0].name).to eq 'spinach'
expect(seed.stages[1].statuses[0].name).to eq 'production'
2019-12-26 22:10:19 +05:30
end
end
end
context 'when kubernetes is not active' do
it 'does not return seeds for kubernetes dependent job' do
2021-02-22 17:27:13 +05:30
seed = command.pipeline_seed
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
expect(seed.size).to eq 1
expect(seed.stages[0].statuses[0].name).to eq 'spinach'
2019-12-26 22:10:19 +05:30
end
end
end
context 'when variables policy is specified' do
let(:config) do
{
unit: { script: 'minitest', only: { variables: ['$CI_PIPELINE_SOURCE'] } },
feature: { script: 'spinach', only: { variables: ['$UNDEFINED'] } }
}
end
it 'returns stage seeds only when variables expression is truthy' do
2021-02-22 17:27:13 +05:30
seed = command.pipeline_seed
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
expect(seed.size).to eq 1
expect(seed.stages[0].statuses[0].name).to eq 'unit'
2019-12-26 22:10:19 +05:30
end
end
2021-01-29 00:20:46 +05:30
context 'when there is seeds_block' do
let(:seeds_block) do
->(pipeline) { pipeline.variables.build(key: 'VAR', value: '123') }
end
2021-03-08 18:12:59 +05:30
it 'does not execute the block' do
expect(pipeline.variables.size).to eq(0)
2021-01-29 00:20:46 +05:30
end
end
2019-12-26 22:10:19 +05:30
end
end