2018-01-23 07:57:56 +08:00
|
|
|
import logging
|
|
|
|
|
|
|
|
import py.io
|
2019-05-24 10:32:22 +08:00
|
|
|
import six
|
2018-10-25 15:01:29 +08:00
|
|
|
|
2019-05-24 10:32:22 +08:00
|
|
|
import pytest
|
2018-01-23 07:57:56 +08:00
|
|
|
from _pytest.logging import ColoredLevelFormatter
|
|
|
|
|
|
|
|
|
|
|
|
def test_coloredlogformatter():
|
2018-05-23 22:48:46 +08:00
|
|
|
logfmt = "%(filename)-25s %(lineno)4d %(levelname)-8s %(message)s"
|
2018-01-23 07:57:56 +08:00
|
|
|
|
|
|
|
record = logging.LogRecord(
|
2018-05-23 22:48:46 +08:00
|
|
|
name="dummy",
|
|
|
|
level=logging.INFO,
|
|
|
|
pathname="dummypath",
|
|
|
|
lineno=10,
|
|
|
|
msg="Test Message",
|
|
|
|
args=(),
|
|
|
|
exc_info=False,
|
|
|
|
)
|
2018-01-23 07:57:56 +08:00
|
|
|
|
|
|
|
class ColorConfig(object):
|
|
|
|
class option(object):
|
|
|
|
pass
|
|
|
|
|
|
|
|
tw = py.io.TerminalWriter()
|
|
|
|
tw.hasmarkup = True
|
|
|
|
formatter = ColoredLevelFormatter(tw, logfmt)
|
|
|
|
output = formatter.format(record)
|
2018-06-26 21:35:27 +08:00
|
|
|
assert output == (
|
2018-10-11 01:28:31 +08:00
|
|
|
"dummypath 10 \x1b[32mINFO \x1b[0m Test Message"
|
2018-05-23 22:48:46 +08:00
|
|
|
)
|
2018-01-23 07:57:56 +08:00
|
|
|
|
|
|
|
tw.hasmarkup = False
|
|
|
|
formatter = ColoredLevelFormatter(tw, logfmt)
|
|
|
|
output = formatter.format(record)
|
2018-10-11 01:28:31 +08:00
|
|
|
assert output == ("dummypath 10 INFO Test Message")
|
2019-05-24 10:32:22 +08:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skipif(
|
|
|
|
six.PY2, reason="Formatter classes don't support format styles in PY2"
|
|
|
|
)
|
|
|
|
def test_multiline_message():
|
|
|
|
from _pytest.logging import PercentStyleMultiline
|
|
|
|
|
|
|
|
logfmt = "%(filename)-25s %(lineno)4d %(levelname)-8s %(message)s"
|
|
|
|
|
|
|
|
record = logging.LogRecord(
|
|
|
|
name="dummy",
|
|
|
|
level=logging.INFO,
|
|
|
|
pathname="dummypath",
|
|
|
|
lineno=10,
|
|
|
|
msg="Test Message line1\nline2",
|
|
|
|
args=(),
|
|
|
|
exc_info=False,
|
|
|
|
)
|
|
|
|
# this is called by logging.Formatter.format
|
|
|
|
record.message = record.getMessage()
|
|
|
|
|
|
|
|
style = PercentStyleMultiline(logfmt)
|
|
|
|
output = style.format(record)
|
|
|
|
assert output == (
|
|
|
|
"dummypath 10 INFO Test Message line1\n"
|
|
|
|
" line2"
|
|
|
|
)
|
2019-05-30 05:15:34 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_colored_short_level():
|
|
|
|
logfmt = "%(levelname).1s %(message)s"
|
|
|
|
|
|
|
|
record = logging.LogRecord(
|
|
|
|
name="dummy",
|
|
|
|
level=logging.INFO,
|
|
|
|
pathname="dummypath",
|
|
|
|
lineno=10,
|
|
|
|
msg="Test Message",
|
|
|
|
args=(),
|
|
|
|
exc_info=False,
|
|
|
|
)
|
|
|
|
|
|
|
|
class ColorConfig(object):
|
|
|
|
class option(object):
|
|
|
|
pass
|
|
|
|
|
|
|
|
tw = py.io.TerminalWriter()
|
|
|
|
tw.hasmarkup = True
|
|
|
|
formatter = ColoredLevelFormatter(tw, logfmt)
|
|
|
|
output = formatter.format(record)
|
|
|
|
# the I (of INFO) is colored
|
|
|
|
assert output == ("\x1b[32mI\x1b[0m Test Message")
|