1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/test/application/rack/logger_test.rb
Atul Bhosale 7e40e9585a Log the remote IP addr of clients behind a proxy
[Atul Bhosale, Victor Nawothnig]
2018-07-31 20:45:37 +05:30

64 lines
1.6 KiB
Ruby

# frozen_string_literal: true
require "isolation/abstract_unit"
require "active_support/log_subscriber/test_helper"
require "rack/test"
module ApplicationTests
module RackTests
class LoggerTest < ActiveSupport::TestCase
include ActiveSupport::Testing::Isolation
include ActiveSupport::LogSubscriber::TestHelper
include Rack::Test::Methods
def setup
build_app
add_to_config <<-RUBY
config.logger = ActiveSupport::LogSubscriber::TestHelper::MockLogger.new
RUBY
require "#{app_path}/config/environment"
super
end
def teardown
super
teardown_app
end
def logs
@logs ||= Rails.logger.logged(:info).join("\n")
end
test "logger logs proper HTTP GET verb and path" do
get "/blah"
wait
assert_match 'Started GET "/blah"', logs
end
test "logger logs proper HTTP HEAD verb and path" do
head "/blah"
wait
assert_match 'Started HEAD "/blah"', logs
end
test "logger logs HTTP verb override" do
post "/", _method: "put"
wait
assert_match 'Started PUT "/"', logs
end
test "logger logs HEAD requests" do
post "/", _method: "head"
wait
assert_match 'Started HEAD "/"', logs
end
test "logger logs correct remote IP address" do
get "/", {}, { "REMOTE_ADDR" => "127.0.0.1", "HTTP_X_FORWARDED_FOR" => "1.2.3.4" }
wait
assert_match 'Started GET "/" for 1.2.3.4', logs
end
end
end
end