2011-06-22 14:01:44 +08:00
|
|
|
from __future__ import with_statement
|
|
|
|
|
|
|
|
import copy
|
|
|
|
|
|
|
|
from django.conf import compat_patch_logging_config
|
2011-10-14 05:34:56 +08:00
|
|
|
from django.core import mail
|
2011-06-22 14:01:44 +08:00
|
|
|
from django.test import TestCase
|
2011-09-02 11:04:02 +08:00
|
|
|
from django.test.utils import override_settings
|
2011-10-14 05:34:56 +08:00
|
|
|
from django.utils.log import CallbackFilter, RequireDebugFalse, getLogger
|
|
|
|
|
2011-09-02 11:04:02 +08:00
|
|
|
|
2011-06-22 14:01:44 +08:00
|
|
|
|
|
|
|
# logging config prior to using filter with mail_admins
|
|
|
|
OLD_LOGGING = {
|
|
|
|
'version': 1,
|
|
|
|
'disable_existing_loggers': False,
|
|
|
|
'handlers': {
|
|
|
|
'mail_admins': {
|
|
|
|
'level': 'ERROR',
|
|
|
|
'class': 'django.utils.log.AdminEmailHandler'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'loggers': {
|
|
|
|
'django.request': {
|
|
|
|
'handlers': ['mail_admins'],
|
|
|
|
'level': 'ERROR',
|
|
|
|
'propagate': True,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class PatchLoggingConfigTest(TestCase):
|
|
|
|
"""
|
|
|
|
Tests for backward-compat shim for #16288. These tests should be removed in
|
|
|
|
Django 1.6 when that shim and DeprecationWarning are removed.
|
|
|
|
|
|
|
|
"""
|
|
|
|
def test_filter_added(self):
|
|
|
|
"""
|
|
|
|
Test that debug-false filter is added to mail_admins handler if it has
|
|
|
|
no filters.
|
|
|
|
|
|
|
|
"""
|
|
|
|
config = copy.deepcopy(OLD_LOGGING)
|
|
|
|
compat_patch_logging_config(config)
|
|
|
|
|
|
|
|
self.assertEqual(
|
|
|
|
config["handlers"]["mail_admins"]["filters"],
|
|
|
|
['require_debug_false'])
|
|
|
|
|
|
|
|
def test_filter_configuration(self):
|
|
|
|
"""
|
2011-09-17 00:41:38 +08:00
|
|
|
Test that the auto-added require_debug_false filter is an instance of
|
|
|
|
`RequireDebugFalse` filter class.
|
2011-06-22 14:01:44 +08:00
|
|
|
|
|
|
|
"""
|
|
|
|
config = copy.deepcopy(OLD_LOGGING)
|
|
|
|
compat_patch_logging_config(config)
|
|
|
|
|
|
|
|
flt = config["filters"]["require_debug_false"]
|
2011-09-17 00:41:38 +08:00
|
|
|
self.assertEqual(flt["()"], "django.utils.log.RequireDebugFalse")
|
2011-06-22 14:01:44 +08:00
|
|
|
|
2011-09-17 00:41:38 +08:00
|
|
|
def test_require_debug_false_filter(self):
|
|
|
|
"""
|
|
|
|
Test the RequireDebugFalse filter class.
|
2011-06-22 14:01:44 +08:00
|
|
|
|
2011-09-17 00:41:38 +08:00
|
|
|
"""
|
|
|
|
filter_ = RequireDebugFalse()
|
2011-06-22 14:01:44 +08:00
|
|
|
|
|
|
|
with self.settings(DEBUG=True):
|
2011-09-17 00:41:38 +08:00
|
|
|
self.assertEqual(filter_.filter("record is not used"), False)
|
2011-06-22 14:01:44 +08:00
|
|
|
|
|
|
|
with self.settings(DEBUG=False):
|
2011-09-17 00:41:38 +08:00
|
|
|
self.assertEqual(filter_.filter("record is not used"), True)
|
2011-06-22 14:01:44 +08:00
|
|
|
|
|
|
|
def test_no_patch_if_filters_key_exists(self):
|
|
|
|
"""
|
|
|
|
Test that the logging configuration is not modified if the mail_admins
|
|
|
|
handler already has a "filters" key.
|
|
|
|
|
|
|
|
"""
|
|
|
|
config = copy.deepcopy(OLD_LOGGING)
|
|
|
|
config["handlers"]["mail_admins"]["filters"] = []
|
|
|
|
new_config = copy.deepcopy(config)
|
|
|
|
compat_patch_logging_config(new_config)
|
|
|
|
|
|
|
|
self.assertEqual(config, new_config)
|
|
|
|
|
|
|
|
def test_no_patch_if_no_mail_admins_handler(self):
|
|
|
|
"""
|
|
|
|
Test that the logging configuration is not modified if the mail_admins
|
|
|
|
handler is not present.
|
|
|
|
|
|
|
|
"""
|
|
|
|
config = copy.deepcopy(OLD_LOGGING)
|
|
|
|
config["handlers"].pop("mail_admins")
|
|
|
|
new_config = copy.deepcopy(config)
|
|
|
|
compat_patch_logging_config(new_config)
|
|
|
|
|
|
|
|
self.assertEqual(config, new_config)
|
|
|
|
|
|
|
|
|
|
|
|
class CallbackFilterTest(TestCase):
|
|
|
|
def test_sense(self):
|
|
|
|
f_false = CallbackFilter(lambda r: False)
|
|
|
|
f_true = CallbackFilter(lambda r: True)
|
|
|
|
|
|
|
|
self.assertEqual(f_false.filter("record"), False)
|
|
|
|
self.assertEqual(f_true.filter("record"), True)
|
|
|
|
|
|
|
|
def test_passes_on_record(self):
|
|
|
|
collector = []
|
2011-09-17 00:41:38 +08:00
|
|
|
|
2011-06-22 14:01:44 +08:00
|
|
|
def _callback(record):
|
|
|
|
collector.append(record)
|
|
|
|
return True
|
|
|
|
f = CallbackFilter(_callback)
|
|
|
|
|
|
|
|
f.filter("a record")
|
|
|
|
|
|
|
|
self.assertEqual(collector, ["a record"])
|
2011-09-02 11:04:02 +08:00
|
|
|
|
|
|
|
|
|
|
|
class AdminEmailHandlerTest(TestCase):
|
|
|
|
|
|
|
|
@override_settings(
|
|
|
|
ADMINS=(('whatever admin', 'admin@example.com'),),
|
|
|
|
EMAIL_SUBJECT_PREFIX='-SuperAwesomeSubject-'
|
|
|
|
)
|
|
|
|
def test_accepts_args(self):
|
|
|
|
"""
|
|
|
|
Ensure that user-supplied arguments and the EMAIL_SUBJECT_PREFIX
|
|
|
|
setting are used to compose the email subject.
|
|
|
|
Refs #16736.
|
|
|
|
"""
|
|
|
|
|
|
|
|
message = "Custom message that says '%s' and '%s'"
|
|
|
|
token1 = 'ping'
|
|
|
|
token2 = 'pong'
|
|
|
|
|
|
|
|
logger = getLogger('django.request')
|
|
|
|
# Inspired from regressiontests/views/views.py: send_log()
|
|
|
|
# ensuring the AdminEmailHandler does not get filtered out
|
|
|
|
# even with DEBUG=True.
|
|
|
|
admin_email_handler = [
|
|
|
|
h for h in logger.handlers
|
|
|
|
if h.__class__.__name__ == "AdminEmailHandler"
|
|
|
|
][0]
|
|
|
|
# Backup then override original filters
|
|
|
|
orig_filters = admin_email_handler.filters
|
|
|
|
admin_email_handler.filters = []
|
|
|
|
|
|
|
|
logger.error(message, token1, token2)
|
|
|
|
|
|
|
|
self.assertEqual(len(mail.outbox), 1)
|
|
|
|
self.assertEqual(mail.outbox[0].to, ['admin@example.com'])
|
|
|
|
self.assertEqual(mail.outbox[0].subject,
|
|
|
|
"-SuperAwesomeSubject-ERROR: Custom message that says 'ping' and 'pong'")
|
|
|
|
|
|
|
|
# Restore original filters
|
|
|
|
admin_email_handler.filters = orig_filters
|