diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2013-07-25 07:46:54 +0100 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2013-07-25 07:54:57 +0100 |
commit | 4db0637d556ab11c55de6afcaa267147a032a74d (patch) | |
tree | 38aab96e411daa55a4b6277cf461b90421b5e013 /actionpack/test | |
parent | 7af0ae919fbf2119f94221470d4b8c3d7e909ffb (diff) | |
download | rails-4db0637d556ab11c55de6afcaa267147a032a74d.tar.gz rails-4db0637d556ab11c55de6afcaa267147a032a74d.tar.bz2 rails-4db0637d556ab11c55de6afcaa267147a032a74d.zip |
Allow overriding of all headers from passed environment hash
Allow REMOTE_ADDR, HTTP_HOST and HTTP_USER_AGENT to be overridden from
the environment passed into `ActionDispatch::TestRequest.new`.
Fixes #11590
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/test_request_test.rb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/test_request_test.rb b/actionpack/test/dispatch/test_request_test.rb index 3db862c810..65ad8677f3 100644 --- a/actionpack/test/dispatch/test_request_test.rb +++ b/actionpack/test/dispatch/test_request_test.rb @@ -62,6 +62,36 @@ class TestRequestTest < ActiveSupport::TestCase assert_equal false, req.env.empty? end + test "default remote address is 0.0.0.0" do + req = ActionDispatch::TestRequest.new + assert_equal '0.0.0.0', req.remote_addr + end + + test "allows remote address to be overridden" do + req = ActionDispatch::TestRequest.new('REMOTE_ADDR' => '127.0.0.1') + assert_equal '127.0.0.1', req.remote_addr + end + + test "default host is test.host" do + req = ActionDispatch::TestRequest.new + assert_equal 'test.host', req.host + end + + test "allows host to be overridden" do + req = ActionDispatch::TestRequest.new('HTTP_HOST' => 'www.example.com') + assert_equal 'www.example.com', req.host + end + + test "default user agent is 'Rails Testing'" do + req = ActionDispatch::TestRequest.new + assert_equal 'Rails Testing', req.user_agent + end + + test "allows user agent to be overridden" do + req = ActionDispatch::TestRequest.new('HTTP_USER_AGENT' => 'GoogleBot') + assert_equal 'GoogleBot', req.user_agent + end + private def assert_cookies(expected, cookie_jar) assert_equal(expected, cookie_jar.instance_variable_get("@cookies")) |