aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/log_subscriber_test.rb
diff options
context:
space:
mode:
authorGareth du Plooy <gduplooy@gmail.com>2016-03-08 22:18:49 -0500
committerGareth du Plooy <gduplooy@gmail.com>2016-03-08 22:59:27 -0500
commit2c5c1276a84692ba58f60c8ff5fdad744959b69a (patch)
tree19367685f3ebb6c875a4b683fb35c49075024e99 /actionpack/test/controller/log_subscriber_test.rb
parentb165d73f2ccd421c9f3518ce9bf5bcb322440cb7 (diff)
downloadrails-2c5c1276a84692ba58f60c8ff5fdad744959b69a.tar.gz
rails-2c5c1276a84692ba58f60c8ff5fdad744959b69a.tar.bz2
rails-2c5c1276a84692ba58f60c8ff5fdad744959b69a.zip
Pass headers through to payload for logging.
Make request headers available in the event payload so that it is available to attached ActionController::LogSubscribers.
Diffstat (limited to 'actionpack/test/controller/log_subscriber_test.rb')
-rw-r--r--actionpack/test/controller/log_subscriber_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/test/controller/log_subscriber_test.rb b/actionpack/test/controller/log_subscriber_test.rb
index 6ae33be3c8..57cf2dafdf 100644
--- a/actionpack/test/controller/log_subscriber_test.rb
+++ b/actionpack/test/controller/log_subscriber_test.rb
@@ -183,6 +183,12 @@ class ACLogSubscriberTest < ActionController::TestCase
assert_equal "test_value", @controller.last_payload[:test_key]
end
+ def test_process_action_headers
+ get :show
+ wait
+ assert_equal "Rails Testing", @controller.last_payload[:headers]['User-Agent']
+ end
+
def test_process_action_with_filter_parameters
@request.env["action_dispatch.parameter_filter"] = [:lifo, :amount]