Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-09-12 16:00:22 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-09-12 16:00:22 +0300
commitf7743c4d16e665a89e5d65d77f2d9f44bce9eb2d (patch)
tree68adcbef6d331adf26afa6e5301b7ed19d02e3be /spec/lib/gitlab/ci
parent280be6314fd87fd5bae773159a8922a265992cf1 (diff)
Add latest changes from gitlab-org/gitlab@16-2-stable-ee
Diffstat (limited to 'spec/lib/gitlab/ci')
-rw-r--r--spec/lib/gitlab/ci/pipeline/chain/validate/abilities_spec.rb33
1 files changed, 33 insertions, 0 deletions
diff --git a/spec/lib/gitlab/ci/pipeline/chain/validate/abilities_spec.rb b/spec/lib/gitlab/ci/pipeline/chain/validate/abilities_spec.rb
index df18e1e4f48..c3516c467d4 100644
--- a/spec/lib/gitlab/ci/pipeline/chain/validate/abilities_spec.rb
+++ b/spec/lib/gitlab/ci/pipeline/chain/validate/abilities_spec.rb
@@ -82,6 +82,39 @@ RSpec.describe Gitlab::Ci::Pipeline::Chain::Validate::Abilities, feature_categor
specify { expect(step.perform!).to contain_exactly('Project is deleted!') }
end
+
+ context 'with project imports in progress' do
+ let(:project) { create(:project, :import_started, import_type: 'gitlab_project') }
+
+ before do
+ step.perform!
+ end
+
+ it 'adds an error about imports' do
+ expect(pipeline.errors.to_a)
+ .to include /Import in progress/
+ end
+
+ it 'breaks the pipeline builder chain' do
+ expect(step.break?).to eq true
+ end
+ end
+
+ context 'with completed project imports' do
+ let(:project) { create(:project, :import_finished, import_type: 'gitlab_project') }
+
+ before do
+ step.perform!
+ end
+
+ it 'does not invalidate the pipeline' do
+ expect(pipeline).to be_valid
+ end
+
+ it 'does not break the chain' do
+ expect(step.break?).to eq false
+ end
+ end
end
describe '#allowed_to_write_ref?' do