summaryrefslogtreecommitdiff
path: root/spec/lib/peek/views/external_http_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/peek/views/external_http_spec.rb')
-rw-r--r--spec/lib/peek/views/external_http_spec.rb191
1 files changed, 191 insertions, 0 deletions
diff --git a/spec/lib/peek/views/external_http_spec.rb b/spec/lib/peek/views/external_http_spec.rb
new file mode 100644
index 00000000000..cc1813db622
--- /dev/null
+++ b/spec/lib/peek/views/external_http_spec.rb
@@ -0,0 +1,191 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Peek::Views::ExternalHttp, :request_store do
+ subject { described_class.new }
+
+ let(:subscriber) { Gitlab::Metrics::Subscribers::ExternalHttp.new }
+
+ before do
+ allow(Gitlab::PerformanceBar).to receive(:enabled_for_request?).and_return(true)
+ end
+
+ let(:event_1) do
+ double(:event, payload: {
+ method: 'POST', code: "200", duration: 0.03,
+ scheme: 'https', host: 'gitlab.com', port: 80, path: '/api/v4/projects',
+ query: 'current=true'
+ })
+ end
+
+ let(:event_2) do
+ double(:event, payload: {
+ method: 'POST', duration: 1.3,
+ scheme: 'http', host: 'gitlab.com', port: 80, path: '/api/v4/projects/2/issues',
+ query: 'current=true',
+ exception_object: Net::ReadTimeout.new
+ })
+ end
+
+ let(:event_3) do
+ double(:event, payload: {
+ method: 'GET', code: "301", duration: 0.005,
+ scheme: 'http', host: 'gitlab.com', port: 80, path: '/api/v4/projects/2',
+ query: 'current=true',
+ proxy_host: 'proxy.gitlab.com', proxy_port: 8080
+ })
+ end
+
+ it 'returns no results' do
+ expect(subject.results).to eq(
+ calls: 0, details: [], duration: "0ms", warnings: []
+ )
+ end
+
+ it 'returns aggregated results' do
+ subscriber.request(event_1)
+ subscriber.request(event_2)
+ subscriber.request(event_3)
+
+ results = subject.results
+ expect(results[:calls]).to eq(3)
+ expect(results[:duration]).to eq("1335.00ms")
+ expect(results[:details].count).to eq(3)
+
+ expected = [
+ {
+ duration: 30.0,
+ label: "POST https://gitlab.com:80/api/v4/projects?current=true",
+ code: "Response status: 200",
+ proxy: nil,
+ error: nil,
+ warnings: []
+ },
+ {
+ duration: 1300,
+ label: "POST http://gitlab.com:80/api/v4/projects/2/issues?current=true",
+ code: nil,
+ proxy: nil,
+ error: "Exception: Net::ReadTimeout",
+ warnings: ["1300.0 over 100"]
+ },
+ {
+ duration: 5.0,
+ label: "GET http://gitlab.com:80/api/v4/projects/2?current=true",
+ code: "Response status: 301",
+ proxy: nil,
+ error: nil,
+ warnings: []
+ }
+ ]
+
+ expect(
+ results[:details].map { |data| data.slice(:duration, :label, :code, :proxy, :error, :warnings) }
+ ).to match_array(expected)
+ end
+
+ context 'when the host is in IPv4 format' do
+ it 'displays IPv4 in the label' do
+ subscriber.request(
+ double(:event, payload: {
+ method: 'POST', code: "200", duration: 0.03,
+ scheme: 'https', host: '1.2.3.4', port: 80, path: '/api/v4/projects',
+ query: 'current=true'
+ })
+ )
+ expect(
+ subject.results[:details].map { |data| data.slice(:duration, :label, :code, :proxy, :error, :warnings) }
+ ).to match_array(
+ [
+ {
+ duration: 30.0,
+ label: "POST https://1.2.3.4:80/api/v4/projects?current=true",
+ code: "Response status: 200",
+ proxy: nil,
+ error: nil,
+ warnings: []
+ }
+ ]
+ )
+ end
+ end
+
+ context 'when the host is in IPv6 foramat' do
+ it 'displays IPv6 in the label' do
+ subscriber.request(
+ double(:event, payload: {
+ method: 'POST', code: "200", duration: 0.03,
+ scheme: 'https', host: '2606:4700:90:0:f22e:fbec:5bed:a9b9', port: 80, path: '/api/v4/projects',
+ query: 'current=true'
+ })
+ )
+ expect(
+ subject.results[:details].map { |data| data.slice(:duration, :label, :code, :proxy, :error, :warnings) }
+ ).to match_array(
+ [
+ {
+ duration: 30.0,
+ label: "POST https://[2606:4700:90:0:f22e:fbec:5bed:a9b9]:80/api/v4/projects?current=true",
+ code: "Response status: 200",
+ proxy: nil,
+ error: nil,
+ warnings: []
+ }
+ ]
+ )
+ end
+ end
+
+ context 'when the host is invalid' do
+ it 'displays unknown in the label' do
+ subscriber.request(
+ double(:event, payload: {
+ method: 'POST', code: "200", duration: 0.03,
+ scheme: 'https', host: '!@#%!@#%!@#%', port: 80, path: '/api/v4/projects',
+ query: 'current=true'
+ })
+ )
+ expect(
+ subject.results[:details].map { |data| data.slice(:duration, :label, :code, :proxy, :error, :warnings) }
+ ).to match_array(
+ [
+ {
+ duration: 30.0,
+ label: "POST unknown",
+ code: "Response status: 200",
+ proxy: nil,
+ error: nil,
+ warnings: []
+ }
+ ]
+ )
+ end
+ end
+
+ context 'when another URI component is invalid' do
+ it 'displays unknown in the label' do
+ subscriber.request(
+ double(:event, payload: {
+ method: 'POST', code: "200", duration: 0.03,
+ scheme: 'https', host: 'invalid', port: 'invalid', path: '/api/v4/projects',
+ query: 'current=true'
+ })
+ )
+ expect(
+ subject.results[:details].map { |data| data.slice(:duration, :label, :code, :proxy, :error, :warnings) }
+ ).to match_array(
+ [
+ {
+ duration: 30.0,
+ label: "POST unknown",
+ code: "Response status: 200",
+ proxy: nil,
+ error: nil,
+ warnings: []
+ }
+ ]
+ )
+ end
+ end
+end