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
path: root/spec/lib
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-09-12 10:12:24 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-09-12 10:12:24 +0300
commit53ba5074ff5cec24e614cd6410b6f188c4358ae4 (patch)
treee5d7db0d4d98f41dd83b57d0cc95a38a77272ab0 /spec/lib
parent5cc6a8839614b3e86b869f112e767ccba272e724 (diff)
Add latest changes from gitlab-org/gitlab@16-3-stable-ee
Diffstat (limited to 'spec/lib')
-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