2017-09-13 19:12:07 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import logging
|
|
|
|
|
2018-01-15 22:01:01 +08:00
|
|
|
import pytest
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
2017-10-25 07:01:00 +08:00
|
|
|
sublogger = logging.getLogger(__name__ + '.baz')
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_fixture_help(testdir):
|
|
|
|
result = testdir.runpytest('--fixtures')
|
|
|
|
result.stdout.fnmatch_lines(['*caplog*'])
|
|
|
|
|
|
|
|
|
|
|
|
def test_change_level(caplog):
|
|
|
|
caplog.set_level(logging.INFO)
|
|
|
|
logger.debug('handler DEBUG level')
|
|
|
|
logger.info('handler INFO level')
|
|
|
|
|
|
|
|
caplog.set_level(logging.CRITICAL, logger=sublogger.name)
|
|
|
|
sublogger.warning('logger WARNING level')
|
|
|
|
sublogger.critical('logger CRITICAL level')
|
|
|
|
|
|
|
|
assert 'DEBUG' not in caplog.text
|
|
|
|
assert 'INFO' in caplog.text
|
|
|
|
assert 'WARNING' not in caplog.text
|
|
|
|
assert 'CRITICAL' in caplog.text
|
|
|
|
|
|
|
|
|
2018-01-17 06:32:59 +08:00
|
|
|
def test_change_level_undo(testdir):
|
|
|
|
"""Ensure that 'set_level' is undone after the end of the test"""
|
|
|
|
testdir.makepyfile('''
|
|
|
|
import logging
|
|
|
|
|
|
|
|
def test1(caplog):
|
|
|
|
caplog.set_level(logging.INFO)
|
|
|
|
# using + operator here so fnmatch_lines doesn't match the code in the traceback
|
|
|
|
logging.info('log from ' + 'test1')
|
|
|
|
assert 0
|
|
|
|
|
|
|
|
def test2(caplog):
|
|
|
|
# using + operator here so fnmatch_lines doesn't match the code in the traceback
|
|
|
|
logging.info('log from ' + 'test2')
|
|
|
|
assert 0
|
|
|
|
''')
|
|
|
|
result = testdir.runpytest_subprocess()
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
'*log from test1*',
|
|
|
|
'*2 failed in *',
|
|
|
|
])
|
|
|
|
assert 'log from test2' not in result.stdout.str()
|
|
|
|
|
|
|
|
|
2017-09-13 19:12:07 +08:00
|
|
|
def test_with_statement(caplog):
|
|
|
|
with caplog.at_level(logging.INFO):
|
|
|
|
logger.debug('handler DEBUG level')
|
|
|
|
logger.info('handler INFO level')
|
|
|
|
|
|
|
|
with caplog.at_level(logging.CRITICAL, logger=sublogger.name):
|
|
|
|
sublogger.warning('logger WARNING level')
|
|
|
|
sublogger.critical('logger CRITICAL level')
|
|
|
|
|
|
|
|
assert 'DEBUG' not in caplog.text
|
|
|
|
assert 'INFO' in caplog.text
|
|
|
|
assert 'WARNING' not in caplog.text
|
|
|
|
assert 'CRITICAL' in caplog.text
|
|
|
|
|
|
|
|
|
|
|
|
def test_log_access(caplog):
|
2018-01-17 06:32:59 +08:00
|
|
|
caplog.set_level(logging.INFO)
|
2017-09-13 19:12:07 +08:00
|
|
|
logger.info('boo %s', 'arg')
|
|
|
|
assert caplog.records[0].levelname == 'INFO'
|
|
|
|
assert caplog.records[0].msg == 'boo %s'
|
|
|
|
assert 'boo arg' in caplog.text
|
|
|
|
|
|
|
|
|
|
|
|
def test_record_tuples(caplog):
|
2018-01-17 06:32:59 +08:00
|
|
|
caplog.set_level(logging.INFO)
|
2017-09-13 19:12:07 +08:00
|
|
|
logger.info('boo %s', 'arg')
|
|
|
|
|
|
|
|
assert caplog.record_tuples == [
|
|
|
|
(__name__, logging.INFO, 'boo arg'),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def test_unicode(caplog):
|
2018-01-17 06:32:59 +08:00
|
|
|
caplog.set_level(logging.INFO)
|
2017-09-27 05:27:38 +08:00
|
|
|
logger.info(u'bū')
|
2017-09-13 19:12:07 +08:00
|
|
|
assert caplog.records[0].levelname == 'INFO'
|
2017-09-27 05:27:38 +08:00
|
|
|
assert caplog.records[0].msg == u'bū'
|
|
|
|
assert u'bū' in caplog.text
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_clear(caplog):
|
2018-01-17 06:32:59 +08:00
|
|
|
caplog.set_level(logging.INFO)
|
2017-09-27 05:27:38 +08:00
|
|
|
logger.info(u'bū')
|
2017-09-13 19:12:07 +08:00
|
|
|
assert len(caplog.records)
|
|
|
|
caplog.clear()
|
|
|
|
assert not len(caplog.records)
|
2018-01-15 22:01:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def logging_during_setup_and_teardown(caplog):
|
2018-01-20 22:04:28 +08:00
|
|
|
caplog.set_level('INFO')
|
2018-01-15 22:01:01 +08:00
|
|
|
logger.info('a_setup_log')
|
|
|
|
yield
|
|
|
|
logger.info('a_teardown_log')
|
2018-01-25 04:59:08 +08:00
|
|
|
assert [x.message for x in caplog.get_records('teardown')] == ['a_teardown_log']
|
2018-01-15 22:01:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_caplog_captures_for_all_stages(caplog, logging_during_setup_and_teardown):
|
|
|
|
assert not caplog.records
|
2018-01-25 04:59:08 +08:00
|
|
|
assert not caplog.get_records('call')
|
2018-01-15 22:01:01 +08:00
|
|
|
logger.info('a_call_log')
|
2018-01-25 04:59:08 +08:00
|
|
|
assert [x.message for x in caplog.get_records('call')] == ['a_call_log']
|
2018-01-15 22:01:01 +08:00
|
|
|
|
2018-01-25 04:59:08 +08:00
|
|
|
assert [x.message for x in caplog.get_records('setup')] == ['a_setup_log']
|
2018-01-15 22:01:01 +08:00
|
|
|
|
|
|
|
# This reachers into private API, don't use this type of thing in real tests!
|
|
|
|
assert set(caplog._item.catch_log_handlers.keys()) == {'setup', 'call'}
|