2020-06-23 00:09:42 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
RSpec.describe 'User spoofs their IP', feature_category: :user_management do
|
2020-06-23 00:09:42 +05:30
|
|
|
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
|