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/services/ci/extract_sections_from_build_trace_service_spec.rb')
-rw-r--r--spec/services/ci/extract_sections_from_build_trace_service_spec.rb57
1 files changed, 0 insertions, 57 deletions
diff --git a/spec/services/ci/extract_sections_from_build_trace_service_spec.rb b/spec/services/ci/extract_sections_from_build_trace_service_spec.rb
deleted file mode 100644
index c6ffcdcc6a8..00000000000
--- a/spec/services/ci/extract_sections_from_build_trace_service_spec.rb
+++ /dev/null
@@ -1,57 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe Ci::ExtractSectionsFromBuildTraceService, '#execute' do
- let(:user) { create(:user) }
- let(:project) { create(:project) }
- let(:build) { create(:ci_build, project: project) }
-
- subject { described_class.new(project, user) }
-
- shared_examples 'build trace has sections markers' do
- before do
- build.trace.set(File.read(expand_fixture_path('trace/trace_with_sections')))
- end
-
- it 'saves the correct extracted sections' do
- expect(build.trace_sections).to be_empty
- expect(subject.execute(build)).to be(true)
- expect(build.trace_sections).not_to be_empty
- end
-
- it "fails if trace_sections isn't empty" do
- expect(subject.execute(build)).to be(true)
- expect(build.trace_sections).not_to be_empty
-
- expect(subject.execute(build)).to be(false)
- expect(build.trace_sections).not_to be_empty
- end
- end
-
- shared_examples 'build trace has no sections markers' do
- before do
- build.trace.set('no markerts')
- end
-
- it 'extracts no sections' do
- expect(build.trace_sections).to be_empty
- expect(subject.execute(build)).to be(true)
- expect(build.trace_sections).to be_empty
- end
- end
-
- context 'when the build has no user' do
- it_behaves_like 'build trace has sections markers'
- it_behaves_like 'build trace has no sections markers'
- end
-
- context 'when the build has a valid user' do
- before do
- build.user = user
- end
-
- it_behaves_like 'build trace has sections markers'
- it_behaves_like 'build trace has no sections markers'
- end
-end