summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBaptiste Mispelon <bmispelon@gmail.com>2013-10-29 23:06:59 +0100
committerBaptiste Mispelon <bmispelon@gmail.com>2013-10-30 07:53:20 +0100
commit3c5cdaf47aae7e4f21398be1a5eaa07f7c5ce31c (patch)
treee1de8853e55f4c91e33ae9f1178c5bb1fcd8f79e /tests
parent8f7355982305da2daccbdfa156b45d62d1cc2c99 (diff)
Fixed #21345: Don't evaluate callable settings in the debug page.
Thanks to crass for the report.
Diffstat (limited to 'tests')
-rw-r--r--tests/view_tests/tests/test_debug.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/view_tests/tests/test_debug.py b/tests/view_tests/tests/test_debug.py
index d885c22776..5c011a91b0 100644
--- a/tests/view_tests/tests/test_debug.py
+++ b/tests/view_tests/tests/test_debug.py
@@ -586,6 +586,16 @@ class ExceptionReporterFilterTests(TestCase, ExceptionReportTestMixin):
self.verify_safe_response(sensitive_kwargs_function_caller, check_for_POST_params=False)
self.verify_safe_email(sensitive_kwargs_function_caller, check_for_POST_params=False)
+ def test_callable_settings(self):
+ """
+ Callable settings should not be evaluated in the debug page (#21345).
+ """
+ def callable_setting():
+ return "This should not be displayed"
+ with self.settings(DEBUG=True, FOOBAR=callable_setting):
+ response = self.client.get('/views/raises500/')
+ self.assertNotContains(response, "This should not be displayed", status_code=500)
+
class AjaxResponseExceptionReporterFilter(TestCase, ExceptionReportTestMixin):
"""