summaryrefslogtreecommitdiff
path: root/spec/requests/user_spoofs_ip_spec.rb
blob: 0244d60bc3befe1ecd1ae03a9a21ef09743c9d97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'User spoofs their IP', feature_category: :user_management do
  it 'raises a 400 error' do
    get '/nonexistent', headers: { 'Client-Ip' => '1.2.3.4', 'X-Forwarded-For' => '5.6.7.8' }

    expect(response).to have_gitlab_http_status(:bad_request)
    expect(response.body).to eq('Bad Request')
  end
end