Welcome to mirror list, hosted at ThFree Co, Russian Federation.

request_context_spec.rb « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44664be7d3936b061b0c33494b6b0844f8e2e81f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::RequestContext, :request_store, feature_category: :application_instrumentation do
  subject { described_class.instance }

  before do
    allow(subject).to receive(:enabled?).and_return(true)
  end

  it { is_expected.to have_attributes(client_ip: nil, start_thread_cpu_time: nil, request_start_time: nil) }

  describe '.start_request_context' do
    let(:request) { ActionDispatch::Request.new({ 'REMOTE_ADDR' => '1.2.3.4' }) }
    let(:start_request_context) { described_class.start_request_context(request: request) }

    before do
      allow(Gitlab::Metrics::System).to receive(:real_time).and_return(123)
    end

    it 'sets the client IP' do
      expect { start_request_context }.to change { subject.client_ip }.from(nil).to('1.2.3.4')
    end

    it 'sets the spam params' do
      expect { start_request_context }.to change { subject.spam_params }.from(nil).to(::Spam::SpamParams)
    end

    it 'sets the request start time' do
      expect { start_request_context }.to change { subject.request_start_time }.from(nil).to(123)
    end
  end

  describe '.start_thread_context' do
    let(:start_thread_context) { described_class.start_thread_context }

    before do
      allow(Gitlab::Metrics::System).to receive(:thread_cpu_time).and_return(123)
      allow(Gitlab::Memory::Instrumentation).to receive(:start_thread_memory_allocations).and_return(456)
    end

    it 'sets the thread cpu time' do
      expect { start_thread_context }.to change { subject.start_thread_cpu_time }.from(nil).to(123)
    end

    it 'sets the thread memory allocations' do
      expect { start_thread_context }.to change { subject.thread_memory_allocations }.from(nil).to(456)
    end
  end

  describe '#request_deadline' do
    let(:request_start_time) { 1575982156.206008 }

    before do
      allow(subject).to receive(:request_start_time).and_return(request_start_time)
    end

    it "sets the time to #{Settings.gitlab.max_request_duration_seconds} seconds in the future" do
      expect(subject.request_deadline).to eq(request_start_time + Settings.gitlab.max_request_duration_seconds)
      expect(subject.request_deadline).to be_a(Float)
    end

    it 'returns nil if there is no start time' do
      allow(subject).to receive(:request_start_time).and_return(nil)

      expect(subject.request_deadline).to be_nil
    end
  end

  describe '#ensure_request_deadline_not_exceeded!' do
    it 'does not raise an error when there was no deadline' do
      expect(subject).to receive(:request_deadline).and_return(nil)
      expect { subject.ensure_deadline_not_exceeded! }.not_to raise_error
    end

    it 'does not raise an error if the deadline is in the future' do
      allow(subject).to receive(:request_deadline).and_return(Gitlab::Metrics::System.real_time + 10)

      expect { subject.ensure_deadline_not_exceeded! }.not_to raise_error
    end

    it 'raises an error when the deadline is in the past' do
      allow(subject).to receive(:request_deadline).and_return(Gitlab::Metrics::System.real_time - 10)

      expect { subject.ensure_deadline_not_exceeded! }.to raise_error(described_class::RequestDeadlineExceeded)
    end
  end
end