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/lib/gitlab/request_profiler/profile_spec.rb')
-rw-r--r--spec/lib/gitlab/request_profiler/profile_spec.rb61
1 files changed, 0 insertions, 61 deletions
diff --git a/spec/lib/gitlab/request_profiler/profile_spec.rb b/spec/lib/gitlab/request_profiler/profile_spec.rb
deleted file mode 100644
index 30e23a99b22..00000000000
--- a/spec/lib/gitlab/request_profiler/profile_spec.rb
+++ /dev/null
@@ -1,61 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe Gitlab::RequestProfiler::Profile do
- let(:profile) { described_class.new(filename) }
-
- describe '.new' do
- context 'using old filename' do
- let(:filename) { '|api|v4|version.txt_1562854738.html' }
-
- it 'returns valid data' do
- expect(profile).to be_valid
- expect(profile.request_path).to eq('/api/v4/version.txt')
- expect(profile.time).to eq(Time.at(1562854738).utc)
- expect(profile.type).to eq('html')
- end
- end
-
- context 'using new filename' do
- let(:filename) { '|api|v4|version.txt_1563547949_execution.html' }
-
- it 'returns valid data' do
- expect(profile).to be_valid
- expect(profile.request_path).to eq('/api/v4/version.txt')
- expect(profile.profile_mode).to eq('execution')
- expect(profile.time).to eq(Time.at(1563547949).utc)
- expect(profile.type).to eq('html')
- end
- end
- end
-
- describe '#content_type' do
- context 'when using html file' do
- let(:filename) { '|api|v4|version.txt_1562854738_memory.html' }
-
- it 'returns valid data' do
- expect(profile).to be_valid
- expect(profile.content_type).to eq('text/html')
- end
- end
-
- context 'when using text file' do
- let(:filename) { '|api|v4|version.txt_1562854738_memory.txt' }
-
- it 'returns valid data' do
- expect(profile).to be_valid
- expect(profile.content_type).to eq('text/plain')
- end
- end
-
- context 'when file is unknown' do
- let(:filename) { '|api|v4|version.txt_1562854738_memory.xxx' }
-
- it 'returns valid data' do
- expect(profile).not_to be_valid
- expect(profile.content_type).to be_nil
- end
- end
- end
-end