aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorJohn Barton (joho) <jrbarton@gmail.com>2014-03-05 11:24:51 +1100
committerJohn Barton (joho) <jrbarton@gmail.com>2014-03-05 11:31:57 +1100
commit67584c6ae37c88f8abba6f4fbdeedc7c1a6dfa1b (patch)
tree6c41b63806c25e48f96db2f5bfc26cb2ebda085c /actionpack/test
parent475c96589ca65282e1a61350271c2f83f0d4044f (diff)
downloadrails-67584c6ae37c88f8abba6f4fbdeedc7c1a6dfa1b.tar.gz
rails-67584c6ae37c88f8abba6f4fbdeedc7c1a6dfa1b.tar.bz2
rails-67584c6ae37c88f8abba6f4fbdeedc7c1a6dfa1b.zip
Make CSRF failure logging optional/configurable.
Added the log_warning_on_csrf_failure option to ActionController::RequestForgeryProtection which is on by default.
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/request_forgery_protection_test.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/actionpack/test/controller/request_forgery_protection_test.rb b/actionpack/test/controller/request_forgery_protection_test.rb
index 1f5fc06410..99229b3baf 100644
--- a/actionpack/test/controller/request_forgery_protection_test.rb
+++ b/actionpack/test/controller/request_forgery_protection_test.rb
@@ -289,6 +289,22 @@ module RequestForgeryProtectionTests
end
end
+ def test_should_not_warn_if_csrf_logging_disabled
+ old_logger = ActionController::Base.logger
+ logger = ActiveSupport::LogSubscriber::TestHelper::MockLogger.new
+ ActionController::Base.logger = logger
+ ActionController::Base.log_warning_on_csrf_failure = false
+
+ begin
+ assert_blocked { post :index }
+
+ assert_equal 0, logger.logged(:warn).size
+ ensure
+ ActionController::Base.logger = old_logger
+ ActionController::Base.log_warning_on_csrf_failure = true
+ end
+ end
+
def test_should_only_allow_same_origin_js_get_with_xhr_header
assert_cross_origin_blocked { get :same_origin_js }
assert_cross_origin_blocked { get :same_origin_js, format: 'js' }