salt/tests/unit/test_log.py

178 lines
5.8 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
'''
:codeauthor: :email:`Pedro Algarvio (pedro@algarvio.me)`
tests.unit.log_test
~~~~~~~~~~~~~~~~~~~
Test salt's "hacked" logging
'''
2014-08-10 02:38:54 +00:00
# Import python libs
from __future__ import absolute_import
2014-08-10 02:38:54 +00:00
import logging
2015-06-06 13:47:52 +00:00
from salt.ext.six.moves import StringIO
2014-08-10 02:38:54 +00:00
# Import Salt Testing libs
from tests.support.case import TestCase
from tests.support.helpers import TestsLoggingHandler
2014-08-10 02:38:54 +00:00
# Import Salt libs
from salt.log import setup as saltlog
from salt.log.handlers import StreamHandler
class TestLog(TestCase):
2014-08-10 02:38:54 +00:00
'''
Test several logging settings
'''
def test_issue_2853_regex_TypeError(self):
# Now, python's logging logger class is ours.
# Let's make sure we have at least one instance
log = saltlog.SaltLoggingClass(__name__)
# Test for a format which includes digits in name formatting.
log_format = '[%(name)-15s] %(message)s'
handler = TestsLoggingHandler(format=log_format)
log.addHandler(handler)
# Trigger TestsLoggingHandler.__enter__
with handler:
# Let's create another log instance to trigger salt's logging class
# calculations.
try:
saltlog.SaltLoggingClass('{0}.with_digits'.format(__name__))
except Exception as err:
raise AssertionError(
'No exception should have been raised: {0}'.format(err)
)
# Remove the testing handler
log.removeHandler(handler)
# Test for a format which does not include digits in name formatting.
log_format = '[%(name)s] %(message)s'
handler = TestsLoggingHandler(format=log_format)
log.addHandler(handler)
# Trigger TestsLoggingHandler.__enter__
with handler:
# Let's create another log instance to trigger salt's logging class
# calculations.
try:
saltlog.SaltLoggingClass('{0}.without_digits'.format(__name__))
except Exception as err:
raise AssertionError(
'No exception should have been raised: {0}'.format(err)
)
# Remove the testing handler
log.removeHandler(handler)
2014-08-10 02:38:54 +00:00
def test_exc_info_on_loglevel(self):
def raise_exception_on_purpose():
2014-08-10 05:06:41 +00:00
1/0 # pylint: disable=pointless-statement
2014-08-10 02:38:54 +00:00
log = saltlog.SaltLoggingClass(__name__)
# Only stream2 should contain the traceback
stream1 = StringIO()
stream2 = StringIO()
handler1 = StreamHandler(stream1)
handler2 = StreamHandler(stream2)
handler1.setLevel(logging.INFO)
handler2.setLevel(logging.DEBUG)
log.addHandler(handler1)
log.addHandler(handler2)
try:
raise_exception_on_purpose()
except ZeroDivisionError as exc:
2015-06-06 13:47:52 +00:00
log.error('Exception raised on purpose caught: ZeroDivisionError',
2014-08-10 02:38:54 +00:00
exc_info_on_loglevel=logging.DEBUG)
try:
self.assertIn(
2015-06-06 13:47:52 +00:00
'Exception raised on purpose caught: ZeroDivisionError',
2014-08-10 02:38:54 +00:00
stream1.getvalue()
)
self.assertNotIn('Traceback (most recent call last)', stream1.getvalue())
self.assertIn(
2015-06-06 13:47:52 +00:00
'Exception raised on purpose caught: ZeroDivisionError',
2014-08-10 02:38:54 +00:00
stream2.getvalue()
)
self.assertIn('Traceback (most recent call last)', stream2.getvalue())
finally:
log.removeHandler(handler1)
log.removeHandler(handler2)
# Both streams should contain the traceback
stream1 = StringIO()
stream2 = StringIO()
handler1 = StreamHandler(stream1)
handler2 = StreamHandler(stream2)
handler1.setLevel(logging.INFO)
handler2.setLevel(logging.DEBUG)
log.addHandler(handler1)
log.addHandler(handler2)
try:
raise_exception_on_purpose()
except ZeroDivisionError as exc:
2015-06-06 13:47:52 +00:00
log.error('Exception raised on purpose caught: ZeroDivisionError',
2014-08-10 02:38:54 +00:00
exc_info_on_loglevel=logging.INFO)
try:
self.assertIn(
2015-06-06 13:47:52 +00:00
'Exception raised on purpose caught: ZeroDivisionError',
2014-08-10 02:38:54 +00:00
stream1.getvalue()
)
self.assertIn('Traceback (most recent call last)', stream1.getvalue())
self.assertIn(
2015-06-06 13:47:52 +00:00
'Exception raised on purpose caught: ZeroDivisionError',
2014-08-10 02:38:54 +00:00
stream2.getvalue()
)
self.assertIn('Traceback (most recent call last)', stream2.getvalue())
finally:
log.removeHandler(handler1)
log.removeHandler(handler2)
# No streams should contain the traceback
stream1 = StringIO()
stream2 = StringIO()
handler1 = StreamHandler(stream1)
handler2 = StreamHandler(stream2)
handler1.setLevel(logging.ERROR)
handler2.setLevel(logging.INFO)
log.addHandler(handler1)
log.addHandler(handler2)
try:
raise_exception_on_purpose()
except ZeroDivisionError as exc:
2015-06-06 13:47:52 +00:00
log.error('Exception raised on purpose caught: ZeroDivisionError',
2014-08-10 02:38:54 +00:00
exc_info_on_loglevel=logging.DEBUG)
try:
self.assertIn(
2015-06-06 13:47:52 +00:00
'Exception raised on purpose caught: ZeroDivisionError',
2014-08-10 02:38:54 +00:00
stream1.getvalue()
)
self.assertNotIn('Traceback (most recent call last)', stream1.getvalue())
self.assertIn(
2015-06-06 13:47:52 +00:00
'Exception raised on purpose caught: ZeroDivisionError',
2014-08-10 02:38:54 +00:00
stream2.getvalue()
)
self.assertNotIn('Traceback (most recent call last)', stream2.getvalue())
finally:
log.removeHandler(handler1)
log.removeHandler(handler2)