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:
Diffstat (limited to 'spec/models/ci/pipeline_spec.rb')
-rw-r--r--spec/models/ci/pipeline_spec.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/models/ci/pipeline_spec.rb b/spec/models/ci/pipeline_spec.rb
index 5e5a94f8cda..9295bb993ce 100644
--- a/spec/models/ci/pipeline_spec.rb
+++ b/spec/models/ci/pipeline_spec.rb
@@ -2893,6 +2893,25 @@ describe Ci::Pipeline, :mailer do
it 'contains yaml errors' do
expect(pipeline).to have_yaml_errors
+ expect(pipeline.yaml_errors).to include('contains unknown keys')
+ end
+ end
+
+ context 'when pipeline has undefined error' do
+ let(:pipeline) do
+ create(:ci_pipeline, config: {})
+ end
+
+ it 'contains yaml errors' do
+ expect(::Gitlab::Ci::YamlProcessor).to receive(:new)
+ .and_raise(RuntimeError, 'undefined failure')
+
+ expect(Gitlab::Sentry).to receive(:track_acceptable_exception)
+ .with(be_a(RuntimeError), anything)
+ .and_call_original
+
+ expect(pipeline).to have_yaml_errors
+ expect(pipeline.yaml_errors).to include('Undefined error')
end
end