diff options
author | Gareth du Plooy <gduplooy@gmail.com> | 2016-03-08 22:18:49 -0500 |
---|---|---|
committer | Gareth du Plooy <gduplooy@gmail.com> | 2016-03-08 22:59:27 -0500 |
commit | 2c5c1276a84692ba58f60c8ff5fdad744959b69a (patch) | |
tree | 19367685f3ebb6c875a4b683fb35c49075024e99 /actionpack/test | |
parent | b165d73f2ccd421c9f3518ce9bf5bcb322440cb7 (diff) | |
download | rails-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')
-rw-r--r-- | actionpack/test/controller/log_subscriber_test.rb | 6 |
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] |