mirror of https://github.com/zulip/zulip.git
pep8: Add compliance with rule E261 test_logging_handlers.py.
This commit is contained in:
parent
4410b5889a
commit
bf1e3a0125
|
@ -108,7 +108,7 @@ class AdminZulipHandlerTest(ZulipTestCase):
|
||||||
record = self.logger.makeRecord('name', logging.ERROR, 'function', 15, # type: ignore # https://github.com/python/typeshed/pull/1100
|
record = self.logger.makeRecord('name', logging.ERROR, 'function', 15, # type: ignore # https://github.com/python/typeshed/pull/1100
|
||||||
'message\nmoremesssage\nmore', None,
|
'message\nmoremesssage\nmore', None,
|
||||||
None)
|
None)
|
||||||
record.request = captured_request # type: ignore # this field is dynamically added
|
record.request = captured_request # type: ignore # this field is dynamically added
|
||||||
|
|
||||||
report = self.run_handler(record)
|
report = self.run_handler(record)
|
||||||
self.assertIn("user_email", report)
|
self.assertIn("user_email", report)
|
||||||
|
@ -131,7 +131,7 @@ class AdminZulipHandlerTest(ZulipTestCase):
|
||||||
global captured_request
|
global captured_request
|
||||||
global captured_exc_info
|
global captured_exc_info
|
||||||
record = self.logger.makeRecord('name', logging.ERROR, 'function', 15, 'message', None, captured_exc_info) # type: ignore # https://github.com/python/typeshed/pull/1100
|
record = self.logger.makeRecord('name', logging.ERROR, 'function', 15, 'message', None, captured_exc_info) # type: ignore # https://github.com/python/typeshed/pull/1100
|
||||||
record.request = captured_request # type: ignore # this field is dynamically added
|
record.request = captured_request # type: ignore # this field is dynamically added
|
||||||
|
|
||||||
report = self.run_handler(record)
|
report = self.run_handler(record)
|
||||||
self.assertIn("user_email", report)
|
self.assertIn("user_email", report)
|
||||||
|
@ -148,7 +148,7 @@ class AdminZulipHandlerTest(ZulipTestCase):
|
||||||
self.assertEqual(report["stack_trace"], "See /var/log/zulip/errors.log")
|
self.assertEqual(report["stack_trace"], "See /var/log/zulip/errors.log")
|
||||||
|
|
||||||
# Check anonymous user is handled correctly
|
# Check anonymous user is handled correctly
|
||||||
record.request.user = AnonymousUser() # type: ignore # this field is dynamically added
|
record.request.user = AnonymousUser() # type: ignore # this field is dynamically added
|
||||||
report = self.run_handler(record)
|
report = self.run_handler(record)
|
||||||
self.assertIn("host", report)
|
self.assertIn("host", report)
|
||||||
self.assertIn("user_email", report)
|
self.assertIn("user_email", report)
|
||||||
|
@ -159,10 +159,10 @@ class AdminZulipHandlerTest(ZulipTestCase):
|
||||||
def get_host_error():
|
def get_host_error():
|
||||||
# type: () -> None
|
# type: () -> None
|
||||||
raise Exception("Get Host Failure!")
|
raise Exception("Get Host Failure!")
|
||||||
orig_get_host = record.request.get_host # type: ignore # this field is dynamically added
|
orig_get_host = record.request.get_host # type: ignore # this field is dynamically added
|
||||||
record.request.get_host = get_host_error # type: ignore # this field is dynamically added
|
record.request.get_host = get_host_error # type: ignore # this field is dynamically added
|
||||||
report = self.run_handler(record)
|
report = self.run_handler(record)
|
||||||
record.request.get_host = orig_get_host # type: ignore # this field is dynamically added
|
record.request.get_host = orig_get_host # type: ignore # this field is dynamically added
|
||||||
self.assertIn("host", report)
|
self.assertIn("host", report)
|
||||||
self.assertIn("user_email", report)
|
self.assertIn("user_email", report)
|
||||||
self.assertIn("message", report)
|
self.assertIn("message", report)
|
||||||
|
@ -171,9 +171,9 @@ class AdminZulipHandlerTest(ZulipTestCase):
|
||||||
# Test an exception_filter exception
|
# Test an exception_filter exception
|
||||||
with patch("zerver.logging_handlers.get_exception_reporter_filter",
|
with patch("zerver.logging_handlers.get_exception_reporter_filter",
|
||||||
return_value=15):
|
return_value=15):
|
||||||
record.request.method = "POST" # type: ignore # this field is dynamically added
|
record.request.method = "POST" # type: ignore # this field is dynamically added
|
||||||
report = self.run_handler(record)
|
report = self.run_handler(record)
|
||||||
record.request.method = "GET" # type: ignore # this field is dynamically added
|
record.request.method = "GET" # type: ignore # this field is dynamically added
|
||||||
self.assertIn("host", report)
|
self.assertIn("host", report)
|
||||||
self.assertIn("user_email", report)
|
self.assertIn("user_email", report)
|
||||||
self.assertIn("message", report)
|
self.assertIn("message", report)
|
||||||
|
@ -199,7 +199,7 @@ class AdminZulipHandlerTest(ZulipTestCase):
|
||||||
self.assertEqual(report["stack_trace"], None)
|
self.assertEqual(report["stack_trace"], None)
|
||||||
|
|
||||||
# Test arbitrary exceptions from request.user
|
# Test arbitrary exceptions from request.user
|
||||||
record.request.user = None # type: ignore # this field is dynamically added
|
record.request.user = None # type: ignore # this field is dynamically added
|
||||||
with patch("zerver.logging_handlers.traceback.print_exc"):
|
with patch("zerver.logging_handlers.traceback.print_exc"):
|
||||||
report = self.run_handler(record)
|
report = self.run_handler(record)
|
||||||
self.assertIn("host", report)
|
self.assertIn("host", report)
|
||||||
|
|
Loading…
Reference in New Issue