mirror of
https://github.com/sprockets/sprockets.logging.git
synced 2024-11-25 03:00:23 +00:00
Add JSONRequestFormatter tests.
This commit is contained in:
parent
5ae094d9be
commit
fb39993583
1 changed files with 34 additions and 0 deletions
34
tests.py
34
tests.py
|
@ -126,3 +126,37 @@ class TornadoLogFunctionTests(TornadoLoggingTestMixin,
|
||||||
self.fetch('/?runtime_error=something%20bad%20happened',
|
self.fetch('/?runtime_error=something%20bad%20happened',
|
||||||
headers={'Correlation-ID': cid})
|
headers={'Correlation-ID': cid})
|
||||||
self.assertEqual(self.access_record.args['correlation_id'], cid)
|
self.assertEqual(self.access_record.args['correlation_id'], cid)
|
||||||
|
|
||||||
|
|
||||||
|
class JSONFormatterTests(TornadoLoggingTestMixin, testing.AsyncHTTPTestCase):
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
super(JSONFormatterTests, self).setUp()
|
||||||
|
self.recorder.setFormatter(sprockets.logging.JSONRequestFormatter())
|
||||||
|
|
||||||
|
def get_app(self):
|
||||||
|
return web.Application(
|
||||||
|
[web.url('/', SimpleHandler)],
|
||||||
|
log_function=sprockets.logging.tornado_log_function)
|
||||||
|
|
||||||
|
def get_log_line(self, log_name):
|
||||||
|
for record, line in self.recorder.emitted:
|
||||||
|
if record.name == log_name:
|
||||||
|
return json.loads(line)
|
||||||
|
|
||||||
|
def test_that_messages_are_json_encoded(self):
|
||||||
|
self.fetch('/')
|
||||||
|
for record, line in self.recorder.emitted:
|
||||||
|
json.loads(line)
|
||||||
|
|
||||||
|
def test_that_exception_has_traceback(self):
|
||||||
|
self.fetch('/?runtime_error=foo')
|
||||||
|
entry = self.get_log_line('tornado.application')
|
||||||
|
self.assertIsNotNone(entry.get('traceback'))
|
||||||
|
self.assertNotEqual(entry['traceback'], [])
|
||||||
|
|
||||||
|
def test_that_successes_do_not_have_traceback(self):
|
||||||
|
self.fetch('/')
|
||||||
|
for record, line in self.recorder.emitted:
|
||||||
|
entry = json.loads(line)
|
||||||
|
self.assertNotIn('traceback', entry)
|
||||||
|
|
Loading…
Reference in a new issue