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

request_context_spec.rb « middleware « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 431f4453e379c4b89ce2bf8381fe978a0e46a89e (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
# frozen_string_literal: true
require 'fast_spec_helper'
require 'rack'
require 'request_store'
require_relative '../../../support/helpers/next_instance_of'

RSpec.describe Gitlab::Middleware::RequestContext do
  include NextInstanceOf

  let(:app) { -> (env) {} }
  let(:env) { {} }

  around do |example|
    RequestStore.begin!
    example.run
    RequestStore.end!
    RequestStore.clear!
  end

  describe '#call' do
    context 'setting the client ip' do
      subject { Gitlab::RequestContext.instance.client_ip }

      context 'with X-Forwarded-For headers' do
        let(:load_balancer_ip) { '1.2.3.4' }
        let(:headers) do
          {
            'HTTP_X_FORWARDED_FOR' => "#{load_balancer_ip}, 127.0.0.1",
            'REMOTE_ADDR' => '127.0.0.1'
          }
        end

        let(:env) { Rack::MockRequest.env_for("/").merge(headers) }

        it 'returns the load balancer IP' do
          endpoint = proc do
            [200, {}, ["Hello"]]
          end

          described_class.new(endpoint).call(env)

          expect(subject).to eq(load_balancer_ip)
        end
      end

      context 'request' do
        let(:ip) { '192.168.1.11' }

        before do
          allow_next_instance_of(Rack::Request) do |instance|
            allow(instance).to receive(:ip).and_return(ip)
          end
          described_class.new(app).call(env)
        end

        it { is_expected.to eq(ip) }
      end

      context 'before RequestContext middleware run' do
        it { is_expected.to be_nil }
      end
    end
  end

  context 'setting the thread cpu time' do
    it 'sets the `start_thread_cpu_time`' do
      expect { described_class.new(app).call(env) }
        .to change { Gitlab::RequestContext.instance.start_thread_cpu_time }.from(nil).to(Float)
    end
  end

  context 'setting the request start time' do
    it 'sets the `request_start_time`' do
      expect { described_class.new(app).call(env) }
        .to change { Gitlab::RequestContext.instance.request_start_time }.from(nil).to(Float)
    end
  end
end