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-10-19 15:57:54 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-10-19 15:57:54 +0300
commit419c53ec62de6e97a517abd5fdd4cbde3a942a34 (patch)
tree1f43a548b46bca8a5fb8fe0c31cef1883d49c5b6 /spec/lib/gitlab/ci/yaml_processor_spec.rb
parent1da20d9135b3ad9e75e65b028bffc921aaf8deb7 (diff)
Add latest changes from gitlab-org/gitlab@16-5-stable-eev16.5.0-rc42
Diffstat (limited to 'spec/lib/gitlab/ci/yaml_processor_spec.rb')
-rw-r--r--spec/lib/gitlab/ci/yaml_processor_spec.rb25
1 files changed, 2 insertions, 23 deletions
diff --git a/spec/lib/gitlab/ci/yaml_processor_spec.rb b/spec/lib/gitlab/ci/yaml_processor_spec.rb
index 5cfd8d9b9fb..81bc8c7ab9a 100644
--- a/spec/lib/gitlab/ci/yaml_processor_spec.rb
+++ b/spec/lib/gitlab/ci/yaml_processor_spec.rb
@@ -794,28 +794,6 @@ module Gitlab
it_behaves_like 'returns errors', 'test_job_1 has the following needs duplicated: test_job_2.'
end
-
- context 'when needed job name is too long' do
- let(:job_name) { 'a' * (::Ci::BuildNeed::MAX_JOB_NAME_LENGTH + 1) }
-
- let(:config) do
- <<-EOYML
- lint_job:
- script: 'echo lint_job'
- rules:
- - if: $var == null
- needs: [#{job_name}]
- #{job_name}:
- script: 'echo job'
- EOYML
- end
-
- it 'returns an error' do
- expect(subject.errors).to include(
- "lint_job job: need `#{job_name}` name is too long (maximum is #{::Ci::BuildNeed::MAX_JOB_NAME_LENGTH} characters)"
- )
- end
- end
end
context 'rule needs as hash' do
@@ -3659,7 +3637,8 @@ module Gitlab
context 'when a project ref does not contain the forked commit sha' do
it 'returns an error' do
is_expected.not_to be_valid
- expect(subject.errors).to include(/Could not validate configuration/)
+ expect(subject.errors).to include(
+ /configuration originates from an external project or a commit not associated with a Git reference/)
end
it_behaves_like 'when the processor is executed twice consecutively'