2024-01-28 21:12:42 +08:00
|
|
|
# mypy: allow-untyped-defs
|
2019-06-03 06:53:45 +08:00
|
|
|
import io
|
2017-09-13 19:12:07 +08:00
|
|
|
import os
|
2018-10-25 15:01:29 +08:00
|
|
|
import re
|
2020-05-01 19:40:17 +08:00
|
|
|
from typing import cast
|
2018-01-19 07:10:35 +08:00
|
|
|
|
2017-09-13 19:12:07 +08:00
|
|
|
import pytest
|
2020-05-01 19:40:17 +08:00
|
|
|
from _pytest.capture import CaptureManager
|
2020-07-12 00:40:28 +08:00
|
|
|
from _pytest.config import ExitCode
|
2020-12-15 19:02:32 +08:00
|
|
|
from _pytest.fixtures import FixtureRequest
|
|
|
|
from _pytest.pytester import Pytester
|
2020-05-01 19:40:17 +08:00
|
|
|
from _pytest.terminal import TerminalReporter
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_nothing_logged(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2017-09-13 19:12:07 +08:00
|
|
|
import sys
|
|
|
|
|
|
|
|
def test_foo():
|
|
|
|
sys.stdout.write('text going to stdout')
|
|
|
|
sys.stderr.write('text going to stderr')
|
|
|
|
assert False
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest()
|
2017-09-13 19:12:07 +08:00
|
|
|
assert result.ret == 1
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*- Captured stdout call -*", "text going to stdout"])
|
|
|
|
result.stdout.fnmatch_lines(["*- Captured stderr call -*", "text going to stderr"])
|
2017-09-13 19:12:07 +08:00
|
|
|
with pytest.raises(pytest.fail.Exception):
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*- Captured *log call -*"])
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_messages_logged(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2017-09-13 19:12:07 +08:00
|
|
|
import sys
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def test_foo():
|
|
|
|
sys.stdout.write('text going to stdout')
|
|
|
|
sys.stderr.write('text going to stderr')
|
|
|
|
logger.info('text going to logger')
|
|
|
|
assert False
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("--log-level=INFO")
|
2017-09-13 19:12:07 +08:00
|
|
|
assert result.ret == 1
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*- Captured *log call -*", "*text going to logger*"])
|
|
|
|
result.stdout.fnmatch_lines(["*- Captured stdout call -*", "text going to stdout"])
|
|
|
|
result.stdout.fnmatch_lines(["*- Captured stderr call -*", "text going to stderr"])
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_root_logger_affected(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-03-14 16:44:58 +08:00
|
|
|
import logging
|
|
|
|
logger = logging.getLogger()
|
2019-03-24 18:20:24 +08:00
|
|
|
|
2018-03-14 16:44:58 +08:00
|
|
|
def test_foo():
|
|
|
|
logger.info('info text ' + 'going to logger')
|
|
|
|
logger.warning('warning text ' + 'going to logger')
|
|
|
|
logger.error('error text ' + 'going to logger')
|
|
|
|
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
log_file = str(pytester.path.joinpath("pytest.log"))
|
|
|
|
result = pytester.runpytest("--log-level=ERROR", "--log-file=pytest.log")
|
2018-03-14 16:44:58 +08:00
|
|
|
assert result.ret == 1
|
|
|
|
|
2019-03-24 18:21:13 +08:00
|
|
|
# The capture log calls in the stdout section only contain the
|
|
|
|
# logger.error msg, because of --log-level=ERROR.
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["*error text going to logger*"])
|
2019-03-24 18:21:13 +08:00
|
|
|
stdout = result.stdout.str()
|
|
|
|
assert "warning text going to logger" not in stdout
|
|
|
|
assert "info text going to logger" not in stdout
|
2018-03-14 16:44:58 +08:00
|
|
|
|
2023-09-19 00:50:04 +08:00
|
|
|
# The log file should only contain the error log messages and
|
|
|
|
# not the warning or info ones, because the root logger is set to
|
|
|
|
# ERROR using --log-level=ERROR.
|
2018-03-14 16:44:58 +08:00
|
|
|
assert os.path.isfile(log_file)
|
2023-06-20 19:55:40 +08:00
|
|
|
with open(log_file, encoding="utf-8") as rfh:
|
2018-03-14 16:44:58 +08:00
|
|
|
contents = rfh.read()
|
|
|
|
assert "info text going to logger" not in contents
|
2023-09-19 00:50:04 +08:00
|
|
|
assert "warning text going to logger" not in contents
|
2018-03-14 16:44:58 +08:00
|
|
|
assert "error text going to logger" in contents
|
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_cli_level_log_level_interaction(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-03-14 16:44:58 +08:00
|
|
|
import logging
|
|
|
|
logger = logging.getLogger()
|
|
|
|
|
|
|
|
def test_foo():
|
|
|
|
logger.debug('debug text ' + 'going to logger')
|
|
|
|
logger.info('info text ' + 'going to logger')
|
|
|
|
logger.warning('warning text ' + 'going to logger')
|
|
|
|
logger.error('error text ' + 'going to logger')
|
|
|
|
assert 0
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-03-14 16:44:58 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("--log-cli-level=INFO", "--log-level=ERROR")
|
2018-03-14 16:44:58 +08:00
|
|
|
assert result.ret == 1
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*-- live log call --*",
|
|
|
|
"*INFO*info text going to logger",
|
|
|
|
"*WARNING*warning text going to logger",
|
|
|
|
"*ERROR*error text going to logger",
|
|
|
|
"=* 1 failed in *=",
|
|
|
|
]
|
|
|
|
)
|
2019-10-06 01:18:51 +08:00
|
|
|
result.stdout.no_re_match_line("DEBUG")
|
2018-03-14 16:44:58 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_setup_logging(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2017-09-13 19:12:07 +08:00
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def setup_function(function):
|
|
|
|
logger.info('text going to logger from setup')
|
|
|
|
|
|
|
|
def test_foo():
|
|
|
|
logger.info('text going to logger from call')
|
|
|
|
assert False
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("--log-level=INFO")
|
2017-09-13 19:12:07 +08:00
|
|
|
assert result.ret == 1
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*- Captured *log setup -*",
|
|
|
|
"*text going to logger from setup*",
|
|
|
|
"*- Captured *log call -*",
|
|
|
|
"*text going to logger from call*",
|
|
|
|
]
|
|
|
|
)
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_teardown_logging(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2017-09-13 19:12:07 +08:00
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def test_foo():
|
|
|
|
logger.info('text going to logger from call')
|
|
|
|
|
|
|
|
def teardown_function(function):
|
|
|
|
logger.info('text going to logger from teardown')
|
|
|
|
assert False
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("--log-level=INFO")
|
2017-09-13 19:12:07 +08:00
|
|
|
assert result.ret == 1
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*- Captured *log call -*",
|
|
|
|
"*text going to logger from call*",
|
|
|
|
"*- Captured *log teardown -*",
|
|
|
|
"*text going to logger from teardown*",
|
|
|
|
]
|
|
|
|
)
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize("enabled", [True, False])
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_cli_enabled_disabled(pytester: Pytester, enabled: bool) -> None:
|
2018-05-23 22:48:46 +08:00
|
|
|
msg = "critical message logged by test"
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-01-16 05:02:34 +08:00
|
|
|
import logging
|
|
|
|
def test_log_cli():
|
|
|
|
logging.critical("{}")
|
2018-05-23 22:48:46 +08:00
|
|
|
""".format(
|
|
|
|
msg
|
|
|
|
)
|
|
|
|
)
|
2018-01-16 05:02:34 +08:00
|
|
|
if enabled:
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-01-16 05:02:34 +08:00
|
|
|
[pytest]
|
|
|
|
log_cli=true
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest()
|
2018-01-16 05:02:34 +08:00
|
|
|
if enabled:
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"test_log_cli_enabled_disabled.py::test_log_cli ",
|
|
|
|
"*-- live log call --*",
|
2019-05-08 04:22:48 +08:00
|
|
|
"CRITICAL *test_log_cli_enabled_disabled.py* critical message logged by test",
|
2018-05-23 22:48:46 +08:00
|
|
|
"PASSED*",
|
|
|
|
]
|
|
|
|
)
|
2018-01-16 05:02:34 +08:00
|
|
|
else:
|
2018-01-17 06:47:27 +08:00
|
|
|
assert msg not in result.stdout.str()
|
2018-01-16 05:02:34 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_cli_default_level(pytester: Pytester) -> None:
|
2017-09-13 19:12:07 +08:00
|
|
|
# Default log file level
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2017-09-13 19:12:07 +08:00
|
|
|
import pytest
|
|
|
|
import logging
|
|
|
|
def test_log_cli(request):
|
2017-09-27 05:34:54 +08:00
|
|
|
plugin = request.config.pluginmanager.getplugin('logging-plugin')
|
2018-01-17 06:00:27 +08:00
|
|
|
assert plugin.log_cli_handler.level == logging.NOTSET
|
|
|
|
logging.getLogger('catchlog').info("INFO message won't be shown")
|
|
|
|
logging.getLogger('catchlog').warning("WARNING message will be shown")
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-01-16 05:02:34 +08:00
|
|
|
[pytest]
|
|
|
|
log_cli=true
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest()
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
# fnmatch_lines does an assertion internally
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"test_log_cli_default_level.py::test_log_cli ",
|
2019-05-08 04:22:48 +08:00
|
|
|
"WARNING*test_log_cli_default_level.py* message will be shown*",
|
2018-05-23 22:48:46 +08:00
|
|
|
]
|
|
|
|
)
|
2019-10-06 01:18:51 +08:00
|
|
|
result.stdout.no_fnmatch_line("*INFO message won't be shown*")
|
2021-04-20 04:39:08 +08:00
|
|
|
# make sure that we get a '0' exit code for the testsuite
|
2017-09-13 19:12:07 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_cli_default_level_multiple_tests(
|
|
|
|
pytester: Pytester, request: FixtureRequest
|
|
|
|
) -> None:
|
2018-01-19 07:10:35 +08:00
|
|
|
"""Ensure we reset the first newline added by the live logger between tests"""
|
2018-05-23 22:48:46 +08:00
|
|
|
filename = request.node.name + ".py"
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-01-23 07:00:52 +08:00
|
|
|
import logging
|
|
|
|
|
|
|
|
def test_log_1():
|
|
|
|
logging.warning("log message from test_log_1")
|
|
|
|
|
|
|
|
def test_log_2():
|
|
|
|
logging.warning("log message from test_log_2")
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-01-23 07:00:52 +08:00
|
|
|
[pytest]
|
|
|
|
log_cli=true
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-01-23 07:00:52 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest()
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
2020-10-03 04:16:22 +08:00
|
|
|
f"{filename}::test_log_1 ",
|
2018-05-23 22:48:46 +08:00
|
|
|
"*WARNING*log message from test_log_1*",
|
|
|
|
"PASSED *50%*",
|
2020-10-03 04:16:22 +08:00
|
|
|
f"{filename}::test_log_2 ",
|
2018-05-23 22:48:46 +08:00
|
|
|
"*WARNING*log message from test_log_2*",
|
|
|
|
"PASSED *100%*",
|
|
|
|
"=* 2 passed in *=",
|
|
|
|
]
|
|
|
|
)
|
2018-01-23 07:00:52 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_cli_default_level_sections(
|
|
|
|
pytester: Pytester, request: FixtureRequest
|
|
|
|
) -> None:
|
2018-01-31 21:48:55 +08:00
|
|
|
"""Check that with live logging enable we are printing the correct headers during
|
|
|
|
start/setup/call/teardown/finish."""
|
2018-05-23 22:48:46 +08:00
|
|
|
filename = request.node.name + ".py"
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeconftest(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-01-31 21:48:55 +08:00
|
|
|
import pytest
|
|
|
|
import logging
|
|
|
|
|
|
|
|
def pytest_runtest_logstart():
|
|
|
|
logging.warning('>>>>> START >>>>>')
|
|
|
|
|
|
|
|
def pytest_runtest_logfinish():
|
|
|
|
logging.warning('<<<<< END <<<<<<<')
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-01-31 21:48:55 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-01-19 07:10:35 +08:00
|
|
|
import pytest
|
|
|
|
import logging
|
|
|
|
|
2018-01-23 07:00:52 +08:00
|
|
|
@pytest.fixture
|
|
|
|
def fix(request):
|
|
|
|
logging.warning("log message from setup of {}".format(request.node.name))
|
|
|
|
yield
|
|
|
|
logging.warning("log message from teardown of {}".format(request.node.name))
|
|
|
|
|
|
|
|
def test_log_1(fix):
|
2018-01-19 07:10:35 +08:00
|
|
|
logging.warning("log message from test_log_1")
|
|
|
|
|
2018-01-23 07:00:52 +08:00
|
|
|
def test_log_2(fix):
|
2018-01-19 07:10:35 +08:00
|
|
|
logging.warning("log message from test_log_2")
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-01-19 07:10:35 +08:00
|
|
|
[pytest]
|
|
|
|
log_cli=true
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-01-19 07:10:35 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest()
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
2020-10-03 04:16:22 +08:00
|
|
|
f"{filename}::test_log_1 ",
|
2018-05-23 22:48:46 +08:00
|
|
|
"*-- live log start --*",
|
|
|
|
"*WARNING* >>>>> START >>>>>*",
|
|
|
|
"*-- live log setup --*",
|
|
|
|
"*WARNING*log message from setup of test_log_1*",
|
|
|
|
"*-- live log call --*",
|
|
|
|
"*WARNING*log message from test_log_1*",
|
|
|
|
"PASSED *50%*",
|
|
|
|
"*-- live log teardown --*",
|
|
|
|
"*WARNING*log message from teardown of test_log_1*",
|
|
|
|
"*-- live log finish --*",
|
|
|
|
"*WARNING* <<<<< END <<<<<<<*",
|
2020-10-03 04:16:22 +08:00
|
|
|
f"{filename}::test_log_2 ",
|
2018-05-23 22:48:46 +08:00
|
|
|
"*-- live log start --*",
|
|
|
|
"*WARNING* >>>>> START >>>>>*",
|
|
|
|
"*-- live log setup --*",
|
|
|
|
"*WARNING*log message from setup of test_log_2*",
|
|
|
|
"*-- live log call --*",
|
|
|
|
"*WARNING*log message from test_log_2*",
|
|
|
|
"PASSED *100%*",
|
|
|
|
"*-- live log teardown --*",
|
|
|
|
"*WARNING*log message from teardown of test_log_2*",
|
|
|
|
"*-- live log finish --*",
|
|
|
|
"*WARNING* <<<<< END <<<<<<<*",
|
|
|
|
"=* 2 passed in *=",
|
|
|
|
]
|
|
|
|
)
|
2018-01-19 07:10:35 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_live_logs_unknown_sections(
|
|
|
|
pytester: Pytester, request: FixtureRequest
|
|
|
|
) -> None:
|
2018-02-17 19:24:13 +08:00
|
|
|
"""Check that with live logging enable we are printing the correct headers during
|
|
|
|
start/setup/call/teardown/finish."""
|
2018-05-23 22:48:46 +08:00
|
|
|
filename = request.node.name + ".py"
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeconftest(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-02-17 19:24:13 +08:00
|
|
|
import pytest
|
|
|
|
import logging
|
|
|
|
|
|
|
|
def pytest_runtest_protocol(item, nextitem):
|
|
|
|
logging.warning('Unknown Section!')
|
|
|
|
|
|
|
|
def pytest_runtest_logstart():
|
|
|
|
logging.warning('>>>>> START >>>>>')
|
|
|
|
|
|
|
|
def pytest_runtest_logfinish():
|
|
|
|
logging.warning('<<<<< END <<<<<<<')
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-02-17 19:24:13 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-02-17 19:24:13 +08:00
|
|
|
import pytest
|
|
|
|
import logging
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def fix(request):
|
|
|
|
logging.warning("log message from setup of {}".format(request.node.name))
|
|
|
|
yield
|
|
|
|
logging.warning("log message from teardown of {}".format(request.node.name))
|
|
|
|
|
|
|
|
def test_log_1(fix):
|
|
|
|
logging.warning("log message from test_log_1")
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-02-17 19:24:13 +08:00
|
|
|
[pytest]
|
|
|
|
log_cli=true
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-02-17 19:24:13 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest()
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*WARNING*Unknown Section*",
|
2020-10-03 04:16:22 +08:00
|
|
|
f"{filename}::test_log_1 ",
|
2018-05-23 22:48:46 +08:00
|
|
|
"*WARNING* >>>>> START >>>>>*",
|
|
|
|
"*-- live log setup --*",
|
|
|
|
"*WARNING*log message from setup of test_log_1*",
|
|
|
|
"*-- live log call --*",
|
|
|
|
"*WARNING*log message from test_log_1*",
|
|
|
|
"PASSED *100%*",
|
|
|
|
"*-- live log teardown --*",
|
|
|
|
"*WARNING*log message from teardown of test_log_1*",
|
|
|
|
"*WARNING* <<<<< END <<<<<<<*",
|
|
|
|
"=* 1 passed in *=",
|
|
|
|
]
|
|
|
|
)
|
2018-02-17 19:24:13 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_sections_single_new_line_after_test_outcome(
|
|
|
|
pytester: Pytester, request: FixtureRequest
|
|
|
|
) -> None:
|
2018-02-09 07:23:12 +08:00
|
|
|
"""Check that only a single new line is written between log messages during
|
|
|
|
teardown/finish."""
|
2018-05-23 22:48:46 +08:00
|
|
|
filename = request.node.name + ".py"
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeconftest(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-02-09 07:23:12 +08:00
|
|
|
import pytest
|
|
|
|
import logging
|
|
|
|
|
|
|
|
def pytest_runtest_logstart():
|
|
|
|
logging.warning('>>>>> START >>>>>')
|
|
|
|
|
|
|
|
def pytest_runtest_logfinish():
|
|
|
|
logging.warning('<<<<< END <<<<<<<')
|
|
|
|
logging.warning('<<<<< END <<<<<<<')
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-02-09 07:23:12 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-02-09 07:23:12 +08:00
|
|
|
import pytest
|
|
|
|
import logging
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def fix(request):
|
|
|
|
logging.warning("log message from setup of {}".format(request.node.name))
|
|
|
|
yield
|
|
|
|
logging.warning("log message from teardown of {}".format(request.node.name))
|
|
|
|
logging.warning("log message from teardown of {}".format(request.node.name))
|
|
|
|
|
|
|
|
def test_log_1(fix):
|
|
|
|
logging.warning("log message from test_log_1")
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-02-09 07:23:12 +08:00
|
|
|
[pytest]
|
|
|
|
log_cli=true
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-02-09 07:23:12 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest()
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
2020-10-03 04:16:22 +08:00
|
|
|
f"{filename}::test_log_1 ",
|
2018-05-23 22:48:46 +08:00
|
|
|
"*-- live log start --*",
|
|
|
|
"*WARNING* >>>>> START >>>>>*",
|
|
|
|
"*-- live log setup --*",
|
|
|
|
"*WARNING*log message from setup of test_log_1*",
|
|
|
|
"*-- live log call --*",
|
|
|
|
"*WARNING*log message from test_log_1*",
|
|
|
|
"PASSED *100%*",
|
|
|
|
"*-- live log teardown --*",
|
|
|
|
"*WARNING*log message from teardown of test_log_1*",
|
|
|
|
"*-- live log finish --*",
|
|
|
|
"*WARNING* <<<<< END <<<<<<<*",
|
|
|
|
"*WARNING* <<<<< END <<<<<<<*",
|
|
|
|
"=* 1 passed in *=",
|
|
|
|
]
|
|
|
|
)
|
2018-06-26 21:35:27 +08:00
|
|
|
assert (
|
|
|
|
re.search(
|
2019-05-08 04:22:48 +08:00
|
|
|
r"(.+)live log teardown(.+)\nWARNING(.+)\nWARNING(.+)",
|
2018-06-26 21:35:27 +08:00
|
|
|
result.stdout.str(),
|
|
|
|
re.MULTILINE,
|
|
|
|
)
|
|
|
|
is not None
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
re.search(
|
2019-05-08 04:22:48 +08:00
|
|
|
r"(.+)live log finish(.+)\nWARNING(.+)\nWARNING(.+)",
|
2018-06-26 21:35:27 +08:00
|
|
|
result.stdout.str(),
|
|
|
|
re.MULTILINE,
|
|
|
|
)
|
|
|
|
is not None
|
|
|
|
)
|
2018-02-09 07:23:12 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_cli_level(pytester: Pytester) -> None:
|
2017-09-13 19:12:07 +08:00
|
|
|
# Default log file level
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2017-09-13 19:12:07 +08:00
|
|
|
import pytest
|
|
|
|
import logging
|
|
|
|
def test_log_cli(request):
|
2017-09-27 05:34:54 +08:00
|
|
|
plugin = request.config.pluginmanager.getplugin('logging-plugin')
|
2017-09-13 19:12:07 +08:00
|
|
|
assert plugin.log_cli_handler.level == logging.INFO
|
|
|
|
logging.getLogger('catchlog').debug("This log message won't be shown")
|
|
|
|
logging.getLogger('catchlog').info("This log message will be shown")
|
|
|
|
print('PASSED')
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-01-16 05:02:34 +08:00
|
|
|
[pytest]
|
|
|
|
log_cli=true
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("-s", "--log-cli-level=INFO")
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
# fnmatch_lines does an assertion internally
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
2019-05-08 04:22:48 +08:00
|
|
|
"*test_log_cli_level.py*This log message will be shown",
|
2018-05-23 22:48:46 +08:00
|
|
|
"PASSED", # 'PASSED' on its own line because the log message prints a new line
|
|
|
|
]
|
|
|
|
)
|
2019-10-06 01:18:51 +08:00
|
|
|
result.stdout.no_fnmatch_line("*This log message won't be shown*")
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2021-04-20 04:39:08 +08:00
|
|
|
# make sure that we get a '0' exit code for the testsuite
|
2017-09-13 19:12:07 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("-s", "--log-level=INFO")
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
# fnmatch_lines does an assertion internally
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
2019-05-08 04:22:48 +08:00
|
|
|
"*test_log_cli_level.py* This log message will be shown",
|
2018-05-23 22:48:46 +08:00
|
|
|
"PASSED", # 'PASSED' on its own line because the log message prints a new line
|
|
|
|
]
|
|
|
|
)
|
2019-10-06 01:18:51 +08:00
|
|
|
result.stdout.no_fnmatch_line("*This log message won't be shown*")
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2021-04-20 04:39:08 +08:00
|
|
|
# make sure that we get a '0' exit code for the testsuite
|
2017-09-13 19:12:07 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_cli_ini_level(pytester: Pytester) -> None:
|
|
|
|
pytester.makeini(
|
2017-09-13 19:12:07 +08:00
|
|
|
"""
|
|
|
|
[pytest]
|
2018-01-16 05:02:34 +08:00
|
|
|
log_cli=true
|
2017-09-13 19:12:07 +08:00
|
|
|
log_cli_level = INFO
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2017-09-13 19:12:07 +08:00
|
|
|
import pytest
|
|
|
|
import logging
|
|
|
|
def test_log_cli(request):
|
2017-09-27 05:34:54 +08:00
|
|
|
plugin = request.config.pluginmanager.getplugin('logging-plugin')
|
2017-09-13 19:12:07 +08:00
|
|
|
assert plugin.log_cli_handler.level == logging.INFO
|
|
|
|
logging.getLogger('catchlog').debug("This log message won't be shown")
|
|
|
|
logging.getLogger('catchlog').info("This log message will be shown")
|
|
|
|
print('PASSED')
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("-s")
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
# fnmatch_lines does an assertion internally
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
2019-05-08 04:22:48 +08:00
|
|
|
"*test_log_cli_ini_level.py* This log message will be shown",
|
2018-05-23 22:48:46 +08:00
|
|
|
"PASSED", # 'PASSED' on its own line because the log message prints a new line
|
|
|
|
]
|
|
|
|
)
|
2019-10-06 01:18:51 +08:00
|
|
|
result.stdout.no_fnmatch_line("*This log message won't be shown*")
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2021-04-20 04:39:08 +08:00
|
|
|
# make sure that we get a '0' exit code for the testsuite
|
2017-09-13 19:12:07 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"cli_args",
|
|
|
|
["", "--log-level=WARNING", "--log-file-level=WARNING", "--log-cli-level=WARNING"],
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_cli_auto_enable(pytester: Pytester, cli_args: str) -> None:
|
2018-02-06 02:07:40 +08:00
|
|
|
"""Check that live logs are enabled if --log-level or --log-cli-level is passed on the CLI.
|
|
|
|
It should not be auto enabled if the same configs are set on the INI file.
|
|
|
|
"""
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-02-06 02:07:40 +08:00
|
|
|
import logging
|
|
|
|
|
|
|
|
def test_log_1():
|
|
|
|
logging.info("log message from test_log_1 not to be shown")
|
|
|
|
logging.warning("log message from test_log_1")
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-02-06 02:07:40 +08:00
|
|
|
[pytest]
|
|
|
|
log_level=INFO
|
|
|
|
log_cli_level=INFO
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2018-02-06 02:07:40 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest(cli_args)
|
2019-03-24 18:22:07 +08:00
|
|
|
stdout = result.stdout.str()
|
2018-05-23 22:48:46 +08:00
|
|
|
if cli_args == "--log-cli-level=WARNING":
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*::test_log_1 ",
|
|
|
|
"*-- live log call --*",
|
|
|
|
"*WARNING*log message from test_log_1*",
|
|
|
|
"PASSED *100%*",
|
|
|
|
"=* 1 passed in *=",
|
|
|
|
]
|
|
|
|
)
|
2019-03-24 18:22:07 +08:00
|
|
|
assert "INFO" not in stdout
|
2018-02-06 02:07:40 +08:00
|
|
|
else:
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
["*test_log_cli_auto_enable*100%*", "=* 1 passed in *="]
|
|
|
|
)
|
2019-03-24 18:22:07 +08:00
|
|
|
assert "INFO" not in stdout
|
|
|
|
assert "WARNING" not in stdout
|
2018-02-06 02:07:40 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_file_cli(pytester: Pytester) -> None:
|
2017-09-13 19:12:07 +08:00
|
|
|
# Default log file level
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2017-09-13 19:12:07 +08:00
|
|
|
import pytest
|
|
|
|
import logging
|
|
|
|
def test_log_file(request):
|
2017-09-27 05:34:54 +08:00
|
|
|
plugin = request.config.pluginmanager.getplugin('logging-plugin')
|
2017-09-13 19:12:07 +08:00
|
|
|
assert plugin.log_file_handler.level == logging.WARNING
|
|
|
|
logging.getLogger('catchlog').info("This log message won't be shown")
|
|
|
|
logging.getLogger('catchlog').warning("This log message will be shown")
|
|
|
|
print('PASSED')
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
log_file = str(pytester.path.joinpath("pytest.log"))
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest(
|
2020-10-03 04:16:22 +08:00
|
|
|
"-s", f"--log-file={log_file}", "--log-file-level=WARNING"
|
2018-05-23 22:48:46 +08:00
|
|
|
)
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
# fnmatch_lines does an assertion internally
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["test_log_file_cli.py PASSED"])
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2021-04-20 04:39:08 +08:00
|
|
|
# make sure that we get a '0' exit code for the testsuite
|
2017-09-13 19:12:07 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
assert os.path.isfile(log_file)
|
2023-06-20 19:55:40 +08:00
|
|
|
with open(log_file, encoding="utf-8") as rfh:
|
2017-09-13 19:12:07 +08:00
|
|
|
contents = rfh.read()
|
|
|
|
assert "This log message will be shown" in contents
|
|
|
|
assert "This log message won't be shown" not in contents
|
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_file_cli_level(pytester: Pytester) -> None:
|
2017-09-13 19:12:07 +08:00
|
|
|
# Default log file level
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2017-09-13 19:12:07 +08:00
|
|
|
import pytest
|
|
|
|
import logging
|
|
|
|
def test_log_file(request):
|
2017-09-27 05:34:54 +08:00
|
|
|
plugin = request.config.pluginmanager.getplugin('logging-plugin')
|
2017-09-13 19:12:07 +08:00
|
|
|
assert plugin.log_file_handler.level == logging.INFO
|
|
|
|
logging.getLogger('catchlog').debug("This log message won't be shown")
|
|
|
|
logging.getLogger('catchlog').info("This log message will be shown")
|
|
|
|
print('PASSED')
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
log_file = str(pytester.path.joinpath("pytest.log"))
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("-s", f"--log-file={log_file}", "--log-file-level=INFO")
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
# fnmatch_lines does an assertion internally
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["test_log_file_cli_level.py PASSED"])
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2021-04-20 04:39:08 +08:00
|
|
|
# make sure that we get a '0' exit code for the testsuite
|
2017-09-13 19:12:07 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
assert os.path.isfile(log_file)
|
2023-06-20 19:55:40 +08:00
|
|
|
with open(log_file, encoding="utf-8") as rfh:
|
2017-09-13 19:12:07 +08:00
|
|
|
contents = rfh.read()
|
|
|
|
assert "This log message will be shown" in contents
|
|
|
|
assert "This log message won't be shown" not in contents
|
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_level_not_changed_by_default(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2018-01-17 06:00:27 +08:00
|
|
|
import logging
|
|
|
|
def test_log_file():
|
|
|
|
assert logging.getLogger().level == logging.WARNING
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("-s")
|
2019-03-23 18:36:18 +08:00
|
|
|
result.stdout.fnmatch_lines(["* 1 passed in *"])
|
2018-01-17 06:00:27 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_file_ini(pytester: Pytester) -> None:
|
|
|
|
log_file = str(pytester.path.joinpath("pytest.log"))
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2017-09-13 19:12:07 +08:00
|
|
|
"""
|
|
|
|
[pytest]
|
2018-05-18 05:31:16 +08:00
|
|
|
log_file={}
|
2018-01-17 06:00:27 +08:00
|
|
|
log_file_level=WARNING
|
2018-05-23 22:48:46 +08:00
|
|
|
""".format(
|
|
|
|
log_file
|
|
|
|
)
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2017-09-13 19:12:07 +08:00
|
|
|
import pytest
|
|
|
|
import logging
|
|
|
|
def test_log_file(request):
|
2017-09-27 05:34:54 +08:00
|
|
|
plugin = request.config.pluginmanager.getplugin('logging-plugin')
|
2017-09-13 19:12:07 +08:00
|
|
|
assert plugin.log_file_handler.level == logging.WARNING
|
|
|
|
logging.getLogger('catchlog').info("This log message won't be shown")
|
|
|
|
logging.getLogger('catchlog').warning("This log message will be shown")
|
|
|
|
print('PASSED')
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("-s")
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
# fnmatch_lines does an assertion internally
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["test_log_file_ini.py PASSED"])
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2021-04-20 04:39:08 +08:00
|
|
|
# make sure that we get a '0' exit code for the testsuite
|
2017-09-13 19:12:07 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
assert os.path.isfile(log_file)
|
2023-06-20 19:55:40 +08:00
|
|
|
with open(log_file, encoding="utf-8") as rfh:
|
2017-09-13 19:12:07 +08:00
|
|
|
contents = rfh.read()
|
|
|
|
assert "This log message will be shown" in contents
|
|
|
|
assert "This log message won't be shown" not in contents
|
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_file_ini_level(pytester: Pytester) -> None:
|
|
|
|
log_file = str(pytester.path.joinpath("pytest.log"))
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2017-09-13 19:12:07 +08:00
|
|
|
"""
|
|
|
|
[pytest]
|
2018-05-18 05:31:16 +08:00
|
|
|
log_file={}
|
2017-09-13 19:12:07 +08:00
|
|
|
log_file_level = INFO
|
2018-05-23 22:48:46 +08:00
|
|
|
""".format(
|
|
|
|
log_file
|
|
|
|
)
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
2017-09-13 19:12:07 +08:00
|
|
|
import pytest
|
|
|
|
import logging
|
|
|
|
def test_log_file(request):
|
2017-09-27 05:34:54 +08:00
|
|
|
plugin = request.config.pluginmanager.getplugin('logging-plugin')
|
2017-09-13 19:12:07 +08:00
|
|
|
assert plugin.log_file_handler.level == logging.INFO
|
|
|
|
logging.getLogger('catchlog').debug("This log message won't be shown")
|
|
|
|
logging.getLogger('catchlog').info("This log message will be shown")
|
|
|
|
print('PASSED')
|
2018-05-23 22:48:46 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("-s")
|
2017-09-13 19:12:07 +08:00
|
|
|
|
|
|
|
# fnmatch_lines does an assertion internally
|
2018-05-23 22:48:46 +08:00
|
|
|
result.stdout.fnmatch_lines(["test_log_file_ini_level.py PASSED"])
|
2017-09-13 19:12:07 +08:00
|
|
|
|
2021-04-20 04:39:08 +08:00
|
|
|
# make sure that we get a '0' exit code for the testsuite
|
2017-09-13 19:12:07 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
assert os.path.isfile(log_file)
|
2023-06-20 19:55:40 +08:00
|
|
|
with open(log_file, encoding="utf-8") as rfh:
|
2017-09-13 19:12:07 +08:00
|
|
|
contents = rfh.read()
|
|
|
|
assert "This log message will be shown" in contents
|
|
|
|
assert "This log message won't be shown" not in contents
|
2018-01-19 07:10:35 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_file_unicode(pytester: Pytester) -> None:
|
|
|
|
log_file = str(pytester.path.joinpath("pytest.log"))
|
2018-06-29 22:09:39 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2018-06-29 22:09:39 +08:00
|
|
|
"""
|
|
|
|
[pytest]
|
|
|
|
log_file={}
|
|
|
|
log_file_level = INFO
|
|
|
|
""".format(
|
|
|
|
log_file
|
|
|
|
)
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2019-06-03 06:40:34 +08:00
|
|
|
"""\
|
2018-06-29 22:09:39 +08:00
|
|
|
import logging
|
2018-06-30 22:11:20 +08:00
|
|
|
|
2018-06-29 22:09:39 +08:00
|
|
|
def test_log_file():
|
|
|
|
logging.getLogger('catchlog').info("Normal message")
|
2018-06-30 22:11:20 +08:00
|
|
|
logging.getLogger('catchlog').info("├")
|
2018-06-29 22:09:39 +08:00
|
|
|
logging.getLogger('catchlog').info("Another normal message")
|
2019-06-03 06:40:34 +08:00
|
|
|
"""
|
2018-06-29 22:09:39 +08:00
|
|
|
)
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest()
|
2018-06-29 22:09:39 +08:00
|
|
|
|
2021-04-20 04:39:08 +08:00
|
|
|
# make sure that we get a '0' exit code for the testsuite
|
2018-06-29 22:09:39 +08:00
|
|
|
assert result.ret == 0
|
|
|
|
assert os.path.isfile(log_file)
|
|
|
|
with open(log_file, encoding="utf-8") as rfh:
|
|
|
|
contents = rfh.read()
|
|
|
|
assert "Normal message" in contents
|
2019-06-03 06:32:00 +08:00
|
|
|
assert "├" in contents
|
2018-06-29 22:09:39 +08:00
|
|
|
assert "Another normal message" in contents
|
|
|
|
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
@pytest.mark.parametrize("has_capture_manager", [True, False])
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_live_logging_suspends_capture(
|
|
|
|
has_capture_manager: bool, request: FixtureRequest
|
|
|
|
) -> None:
|
2018-01-19 07:10:35 +08:00
|
|
|
"""Test that capture manager is suspended when we emitting messages for live logging.
|
|
|
|
|
|
|
|
This tests the implementation calls instead of behavior because it is difficult/impossible to do it using
|
2020-12-15 19:02:32 +08:00
|
|
|
``pytester`` facilities because they do their own capturing.
|
2018-01-19 07:10:35 +08:00
|
|
|
|
|
|
|
We parametrize the test to also make sure _LiveLoggingStreamHandler works correctly if no capture manager plugin
|
|
|
|
is installed.
|
|
|
|
"""
|
|
|
|
import logging
|
2018-08-17 19:41:26 +08:00
|
|
|
import contextlib
|
2018-01-19 07:10:35 +08:00
|
|
|
from functools import partial
|
|
|
|
from _pytest.logging import _LiveLoggingStreamHandler
|
|
|
|
|
|
|
|
class MockCaptureManager:
|
|
|
|
calls = []
|
|
|
|
|
2018-08-17 19:41:26 +08:00
|
|
|
@contextlib.contextmanager
|
2018-08-18 22:36:24 +08:00
|
|
|
def global_and_fixture_disabled(self):
|
2018-08-17 19:41:26 +08:00
|
|
|
self.calls.append("enter disabled")
|
|
|
|
yield
|
|
|
|
self.calls.append("exit disabled")
|
2018-08-17 06:44:15 +08:00
|
|
|
|
2019-06-03 06:53:45 +08:00
|
|
|
class DummyTerminal(io.StringIO):
|
2018-01-23 07:00:52 +08:00
|
|
|
def section(self, *args, **kwargs):
|
|
|
|
pass
|
|
|
|
|
2020-05-01 19:40:17 +08:00
|
|
|
out_file = cast(TerminalReporter, DummyTerminal())
|
|
|
|
capture_manager = (
|
|
|
|
cast(CaptureManager, MockCaptureManager()) if has_capture_manager else None
|
|
|
|
)
|
2018-01-19 07:10:35 +08:00
|
|
|
handler = _LiveLoggingStreamHandler(out_file, capture_manager)
|
2018-05-23 22:48:46 +08:00
|
|
|
handler.set_when("call")
|
2018-01-23 07:00:52 +08:00
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
logger = logging.getLogger(__name__ + ".test_live_logging_suspends_capture")
|
2018-01-19 07:10:35 +08:00
|
|
|
logger.addHandler(handler)
|
|
|
|
request.addfinalizer(partial(logger.removeHandler, handler))
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
logger.critical("some message")
|
2018-01-19 07:10:35 +08:00
|
|
|
if has_capture_manager:
|
2018-08-17 19:41:26 +08:00
|
|
|
assert MockCaptureManager.calls == ["enter disabled", "exit disabled"]
|
2018-01-19 07:10:35 +08:00
|
|
|
else:
|
|
|
|
assert MockCaptureManager.calls == []
|
2020-05-01 19:40:17 +08:00
|
|
|
assert cast(io.StringIO, out_file).getvalue() == "\nsome message\n"
|
2018-09-15 07:41:07 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_collection_live_logging(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2018-09-15 07:41:07 +08:00
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logging.getLogger().info("Normal message")
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("--log-cli-level=INFO")
|
2018-09-15 07:41:07 +08:00
|
|
|
result.stdout.fnmatch_lines(
|
2019-06-05 05:43:40 +08:00
|
|
|
["*--- live log collection ---*", "*Normal message*", "collected 0 items"]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("verbose", ["", "-q", "-qq"])
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_collection_collect_only_live_logging(pytester: Pytester, verbose: str) -> None:
|
|
|
|
pytester.makepyfile(
|
2019-06-05 05:43:40 +08:00
|
|
|
"""
|
|
|
|
def test_simple():
|
|
|
|
pass
|
|
|
|
"""
|
2018-09-15 07:41:07 +08:00
|
|
|
)
|
2018-09-19 03:47:42 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("--collect-only", "--log-cli-level=INFO", verbose)
|
2019-06-05 05:43:40 +08:00
|
|
|
|
|
|
|
expected_lines = []
|
|
|
|
|
|
|
|
if not verbose:
|
|
|
|
expected_lines.extend(
|
|
|
|
[
|
|
|
|
"*collected 1 item*",
|
|
|
|
"*<Module test_collection_collect_only_live_logging.py>*",
|
2020-11-08 22:45:10 +08:00
|
|
|
"*1 test collected*",
|
2019-06-05 05:43:40 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
elif verbose == "-q":
|
2019-10-06 01:18:51 +08:00
|
|
|
result.stdout.no_fnmatch_line("*collected 1 item**")
|
2019-06-05 05:43:40 +08:00
|
|
|
expected_lines.extend(
|
|
|
|
[
|
|
|
|
"*test_collection_collect_only_live_logging.py::test_simple*",
|
2020-11-08 22:45:10 +08:00
|
|
|
"1 test collected in [0-9].[0-9][0-9]s",
|
2019-06-05 05:43:40 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
elif verbose == "-qq":
|
2019-10-06 01:18:51 +08:00
|
|
|
result.stdout.no_fnmatch_line("*collected 1 item**")
|
2019-06-05 05:43:40 +08:00
|
|
|
expected_lines.extend(["*test_collection_collect_only_live_logging.py: 1*"])
|
|
|
|
|
|
|
|
result.stdout.fnmatch_lines(expected_lines)
|
|
|
|
|
2018-09-19 03:47:42 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_collection_logging_to_file(pytester: Pytester) -> None:
|
|
|
|
log_file = str(pytester.path.joinpath("pytest.log"))
|
2018-09-19 03:47:42 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2018-09-19 03:47:42 +08:00
|
|
|
"""
|
|
|
|
[pytest]
|
|
|
|
log_file={}
|
|
|
|
log_file_level = INFO
|
|
|
|
""".format(
|
|
|
|
log_file
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2018-09-19 03:47:42 +08:00
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logging.getLogger().info("Normal message")
|
|
|
|
|
|
|
|
def test_simple():
|
|
|
|
logging.getLogger().debug("debug message in test_simple")
|
|
|
|
logging.getLogger().info("info message in test_simple")
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest()
|
2018-09-19 03:47:42 +08:00
|
|
|
|
2019-10-06 01:18:51 +08:00
|
|
|
result.stdout.no_fnmatch_line("*--- live log collection ---*")
|
2018-09-19 03:47:42 +08:00
|
|
|
|
|
|
|
assert result.ret == 0
|
|
|
|
assert os.path.isfile(log_file)
|
|
|
|
with open(log_file, encoding="utf-8") as rfh:
|
|
|
|
contents = rfh.read()
|
|
|
|
assert "Normal message" in contents
|
|
|
|
assert "debug message in test_simple" not in contents
|
|
|
|
assert "info message in test_simple" in contents
|
2018-10-20 00:59:23 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_in_hooks(pytester: Pytester) -> None:
|
|
|
|
log_file = str(pytester.path.joinpath("pytest.log"))
|
2018-10-20 00:59:23 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2018-10-20 00:59:23 +08:00
|
|
|
"""
|
|
|
|
[pytest]
|
|
|
|
log_file={}
|
|
|
|
log_file_level = INFO
|
|
|
|
log_cli=true
|
|
|
|
""".format(
|
|
|
|
log_file
|
|
|
|
)
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeconftest(
|
2018-10-20 00:59:23 +08:00
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
def pytest_runtestloop(session):
|
|
|
|
logging.info('runtestloop')
|
|
|
|
|
|
|
|
def pytest_sessionstart(session):
|
|
|
|
logging.info('sessionstart')
|
|
|
|
|
|
|
|
def pytest_sessionfinish(session, exitstatus):
|
|
|
|
logging.info('sessionfinish')
|
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest()
|
2018-10-20 00:59:23 +08:00
|
|
|
result.stdout.fnmatch_lines(["*sessionstart*", "*runtestloop*", "*sessionfinish*"])
|
2023-06-20 19:55:40 +08:00
|
|
|
with open(log_file, encoding="utf-8") as rfh:
|
2018-10-20 00:59:23 +08:00
|
|
|
contents = rfh.read()
|
|
|
|
assert "sessionstart" in contents
|
|
|
|
assert "runtestloop" in contents
|
|
|
|
assert "sessionfinish" in contents
|
2019-02-09 05:35:50 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_in_runtest_logreport(pytester: Pytester) -> None:
|
|
|
|
log_file = str(pytester.path.joinpath("pytest.log"))
|
2019-02-20 23:51:09 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2019-02-20 23:51:09 +08:00
|
|
|
"""
|
|
|
|
[pytest]
|
|
|
|
log_file={}
|
|
|
|
log_file_level = INFO
|
|
|
|
log_cli=true
|
|
|
|
""".format(
|
|
|
|
log_file
|
|
|
|
)
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeconftest(
|
2019-02-20 23:51:09 +08:00
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def pytest_runtest_logreport(report):
|
|
|
|
logger.info("logreport")
|
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2019-02-20 23:51:09 +08:00
|
|
|
"""
|
|
|
|
def test_first():
|
|
|
|
assert True
|
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.runpytest()
|
2023-06-20 19:55:40 +08:00
|
|
|
with open(log_file, encoding="utf-8") as rfh:
|
2019-02-20 23:51:09 +08:00
|
|
|
contents = rfh.read()
|
|
|
|
assert contents.count("logreport") == 3
|
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_set_path(pytester: Pytester) -> None:
|
|
|
|
report_dir_base = str(pytester.path)
|
2019-02-09 05:35:50 +08:00
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeini(
|
2019-02-09 05:35:50 +08:00
|
|
|
"""
|
|
|
|
[pytest]
|
|
|
|
log_file_level = DEBUG
|
|
|
|
log_cli=true
|
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makeconftest(
|
2019-02-09 05:35:50 +08:00
|
|
|
"""
|
|
|
|
import os
|
|
|
|
import pytest
|
2023-06-13 03:30:06 +08:00
|
|
|
@pytest.hookimpl(wrapper=True, tryfirst=True)
|
2019-02-09 05:35:50 +08:00
|
|
|
def pytest_runtest_setup(item):
|
|
|
|
config = item.config
|
|
|
|
logging_plugin = config.pluginmanager.get_plugin("logging-plugin")
|
|
|
|
report_file = os.path.join({}, item._request.node.name)
|
|
|
|
logging_plugin.set_log_path(report_file)
|
2023-06-13 03:30:06 +08:00
|
|
|
return (yield)
|
2019-02-09 05:35:50 +08:00
|
|
|
""".format(
|
|
|
|
repr(report_dir_base)
|
|
|
|
)
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2019-02-09 05:35:50 +08:00
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger("testcase-logger")
|
|
|
|
def test_first():
|
|
|
|
logger.info("message from test 1")
|
|
|
|
assert True
|
|
|
|
|
|
|
|
def test_second():
|
|
|
|
logger.debug("message from test 2")
|
|
|
|
assert True
|
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.runpytest()
|
2023-06-20 19:55:40 +08:00
|
|
|
with open(os.path.join(report_dir_base, "test_first"), encoding="utf-8") as rfh:
|
2019-02-09 05:35:50 +08:00
|
|
|
content = rfh.read()
|
|
|
|
assert "message from test 1" in content
|
|
|
|
|
2023-06-20 19:55:40 +08:00
|
|
|
with open(os.path.join(report_dir_base, "test_second"), encoding="utf-8") as rfh:
|
2019-02-09 05:35:50 +08:00
|
|
|
content = rfh.read()
|
|
|
|
assert "message from test 2" in content
|
2019-05-25 16:13:29 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_colored_captured_log(pytester: Pytester) -> None:
|
2020-07-18 17:35:13 +08:00
|
|
|
"""Test that the level names of captured log messages of a failing test
|
|
|
|
are colored."""
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2019-05-25 16:13:29 +08:00
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def test_foo():
|
|
|
|
logger.info('text going to logger from call')
|
|
|
|
assert False
|
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("--log-level=INFO", "--color=yes")
|
2019-05-25 16:13:29 +08:00
|
|
|
assert result.ret == 1
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*-- Captured log call --*",
|
|
|
|
"\x1b[32mINFO \x1b[0m*text going to logger from call",
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_colored_ansi_esc_caplogtext(pytester: Pytester) -> None:
|
2020-07-18 17:35:13 +08:00
|
|
|
"""Make sure that caplog.text does not contain ANSI escape sequences."""
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2019-05-25 16:13:29 +08:00
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def test_foo(caplog):
|
|
|
|
logger.info('text going to logger from call')
|
|
|
|
assert '\x1b' not in caplog.text
|
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("--log-level=INFO", "--color=yes")
|
2019-05-25 16:13:29 +08:00
|
|
|
assert result.ret == 0
|
2020-05-19 15:41:33 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_logging_emit_error(pytester: Pytester) -> None:
|
2020-07-18 17:35:13 +08:00
|
|
|
"""An exception raised during emit() should fail the test.
|
2020-05-19 15:41:33 +08:00
|
|
|
|
|
|
|
The default behavior of logging is to print "Logging error"
|
|
|
|
to stderr with the call stack and some extra details.
|
|
|
|
|
|
|
|
pytest overrides this behavior to propagate the exception.
|
|
|
|
"""
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2020-05-19 15:41:33 +08:00
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
def test_bad_log():
|
|
|
|
logging.warning('oops', 'first', 2)
|
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest()
|
2020-05-19 15:41:33 +08:00
|
|
|
result.assert_outcomes(failed=1)
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"====* FAILURES *====",
|
|
|
|
"*not all arguments converted during string formatting*",
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_logging_emit_error_supressed(pytester: Pytester) -> None:
|
2020-07-18 17:35:13 +08:00
|
|
|
"""If logging is configured to silently ignore errors, pytest
|
|
|
|
doesn't propagate errors either."""
|
2020-12-15 19:02:32 +08:00
|
|
|
pytester.makepyfile(
|
2020-05-19 15:41:33 +08:00
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
def test_bad_log(monkeypatch):
|
|
|
|
monkeypatch.setattr(logging, 'raiseExceptions', False)
|
|
|
|
logging.warning('oops', 'first', 2)
|
|
|
|
"""
|
|
|
|
)
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest()
|
2020-05-19 15:41:33 +08:00
|
|
|
result.assert_outcomes(passed=1)
|
2020-07-12 00:40:28 +08:00
|
|
|
|
|
|
|
|
2020-12-15 19:02:32 +08:00
|
|
|
def test_log_file_cli_subdirectories_are_successfully_created(
|
|
|
|
pytester: Pytester,
|
|
|
|
) -> None:
|
|
|
|
path = pytester.makepyfile(""" def test_logger(): pass """)
|
2020-07-12 00:40:28 +08:00
|
|
|
expected = os.path.join(os.path.dirname(str(path)), "foo", "bar")
|
2020-12-15 19:02:32 +08:00
|
|
|
result = pytester.runpytest("--log-file=foo/bar/logf.log")
|
2020-07-12 00:40:28 +08:00
|
|
|
assert "logf.log" in os.listdir(expected)
|
|
|
|
assert result.ret == ExitCode.OK
|
2022-10-24 05:23:34 +08:00
|
|
|
|
|
|
|
|
2023-04-17 00:15:40 +08:00
|
|
|
def test_disable_loggers(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2022-10-24 05:23:34 +08:00
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
disabled_log = logging.getLogger('disabled')
|
|
|
|
test_log = logging.getLogger('test')
|
|
|
|
def test_logger_propagation(caplog):
|
|
|
|
with caplog.at_level(logging.DEBUG):
|
|
|
|
disabled_log.warning("no log; no stderr")
|
|
|
|
test_log.debug("Visible text!")
|
|
|
|
assert caplog.record_tuples == [('test', 10, 'Visible text!')]
|
|
|
|
"""
|
|
|
|
)
|
2023-04-17 00:15:40 +08:00
|
|
|
result = pytester.runpytest("--log-disable=disabled", "-s")
|
2022-10-24 05:23:34 +08:00
|
|
|
assert result.ret == ExitCode.OK
|
|
|
|
assert not result.stderr.lines
|
|
|
|
|
|
|
|
|
2023-04-17 00:15:40 +08:00
|
|
|
def test_disable_loggers_does_not_propagate(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2022-10-24 05:23:34 +08:00
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
|
|
|
|
parent_logger = logging.getLogger("parent")
|
|
|
|
child_logger = parent_logger.getChild("child")
|
|
|
|
|
|
|
|
def test_logger_propagation_to_parent(caplog):
|
|
|
|
with caplog.at_level(logging.DEBUG):
|
|
|
|
parent_logger.warning("some parent logger message")
|
|
|
|
child_logger.warning("some child logger message")
|
|
|
|
assert len(caplog.record_tuples) == 1
|
|
|
|
assert caplog.record_tuples[0][0] == "parent"
|
|
|
|
assert caplog.record_tuples[0][2] == "some parent logger message"
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
2023-04-17 00:15:40 +08:00
|
|
|
result = pytester.runpytest("--log-disable=parent.child", "-s")
|
2022-10-24 05:23:34 +08:00
|
|
|
assert result.ret == ExitCode.OK
|
|
|
|
assert not result.stderr.lines
|
|
|
|
|
|
|
|
|
2023-04-17 00:15:40 +08:00
|
|
|
def test_log_disabling_works_with_log_cli(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2022-10-24 05:23:34 +08:00
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
disabled_log = logging.getLogger('disabled')
|
|
|
|
test_log = logging.getLogger('test')
|
|
|
|
|
|
|
|
def test_log_cli_works(caplog):
|
|
|
|
test_log.info("Visible text!")
|
|
|
|
disabled_log.warning("This string will be suppressed.")
|
|
|
|
"""
|
|
|
|
)
|
2023-04-17 00:15:40 +08:00
|
|
|
result = pytester.runpytest(
|
2022-10-24 05:23:34 +08:00
|
|
|
"--log-cli-level=DEBUG",
|
|
|
|
"--log-disable=disabled",
|
|
|
|
)
|
|
|
|
assert result.ret == ExitCode.OK
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
"INFO test:test_log_disabling_works_with_log_cli.py:6 Visible text!"
|
|
|
|
)
|
|
|
|
result.stdout.no_fnmatch_line(
|
|
|
|
"WARNING disabled:test_log_disabling_works_with_log_cli.py:7 This string will be suppressed."
|
|
|
|
)
|
|
|
|
assert not result.stderr.lines
|
2023-05-30 20:35:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_without_date_format_log(pytester: Pytester) -> None:
|
|
|
|
"""Check that date is not printed by default."""
|
|
|
|
pytester.makepyfile(
|
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def test_foo():
|
|
|
|
logger.warning('text')
|
|
|
|
assert False
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = pytester.runpytest()
|
|
|
|
assert result.ret == 1
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
["WARNING test_without_date_format_log:test_without_date_format_log.py:6 text"]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_date_format_log(pytester: Pytester) -> None:
|
|
|
|
"""Check that log_date_format affects output."""
|
|
|
|
pytester.makepyfile(
|
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def test_foo():
|
|
|
|
logger.warning('text')
|
|
|
|
assert False
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
pytester.makeini(
|
|
|
|
"""
|
|
|
|
[pytest]
|
|
|
|
log_format=%(asctime)s; %(levelname)s; %(message)s
|
|
|
|
log_date_format=%Y-%m-%d %H:%M:%S
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = pytester.runpytest()
|
|
|
|
assert result.ret == 1
|
|
|
|
result.stdout.re_match_lines([r"^[0-9-]{10} [0-9:]{8}; WARNING; text"])
|
|
|
|
|
|
|
|
|
|
|
|
def test_date_format_percentf_log(pytester: Pytester) -> None:
|
|
|
|
"""Make sure that microseconds are printed in log."""
|
|
|
|
pytester.makepyfile(
|
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def test_foo():
|
|
|
|
logger.warning('text')
|
|
|
|
assert False
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
pytester.makeini(
|
|
|
|
"""
|
|
|
|
[pytest]
|
|
|
|
log_format=%(asctime)s; %(levelname)s; %(message)s
|
|
|
|
log_date_format=%Y-%m-%d %H:%M:%S.%f
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = pytester.runpytest()
|
|
|
|
assert result.ret == 1
|
|
|
|
result.stdout.re_match_lines([r"^[0-9-]{10} [0-9:]{8}.[0-9]{6}; WARNING; text"])
|
|
|
|
|
|
|
|
|
|
|
|
def test_date_format_percentf_tz_log(pytester: Pytester) -> None:
|
|
|
|
"""Make sure that timezone and microseconds are properly formatted together."""
|
|
|
|
pytester.makepyfile(
|
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def test_foo():
|
|
|
|
logger.warning('text')
|
|
|
|
assert False
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
pytester.makeini(
|
|
|
|
"""
|
|
|
|
[pytest]
|
|
|
|
log_format=%(asctime)s; %(levelname)s; %(message)s
|
|
|
|
log_date_format=%Y-%m-%d %H:%M:%S.%f%z
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = pytester.runpytest()
|
|
|
|
assert result.ret == 1
|
|
|
|
result.stdout.re_match_lines(
|
|
|
|
[r"^[0-9-]{10} [0-9:]{8}.[0-9]{6}[+-][0-9\.]+; WARNING; text"]
|
|
|
|
)
|
2023-09-19 00:50:04 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_log_file_cli_fallback_options(pytester: Pytester) -> None:
|
|
|
|
"""Make sure that fallback values for log-file formats and level works."""
|
|
|
|
pytester.makepyfile(
|
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger()
|
|
|
|
|
|
|
|
def test_foo():
|
|
|
|
logger.info('info text going to logger')
|
|
|
|
logger.warning('warning text going to logger')
|
|
|
|
logger.error('error text going to logger')
|
|
|
|
|
|
|
|
assert 0
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
log_file = str(pytester.path.joinpath("pytest.log"))
|
|
|
|
result = pytester.runpytest(
|
|
|
|
"--log-level=ERROR",
|
|
|
|
"--log-format=%(asctime)s %(message)s",
|
|
|
|
"--log-date-format=%H:%M",
|
|
|
|
"--log-file=pytest.log",
|
|
|
|
)
|
|
|
|
assert result.ret == 1
|
|
|
|
|
|
|
|
# The log file should only contain the error log messages
|
|
|
|
# not the warning or info ones and the format and date format
|
|
|
|
# should match the formats provided using --log-format and --log-date-format
|
|
|
|
assert os.path.isfile(log_file)
|
|
|
|
with open(log_file, encoding="utf-8") as rfh:
|
|
|
|
contents = rfh.read()
|
|
|
|
assert re.match(r"[0-9]{2}:[0-9]{2} error text going to logger\s*", contents)
|
|
|
|
assert "info text going to logger" not in contents
|
|
|
|
assert "warning text going to logger" not in contents
|
|
|
|
assert "error text going to logger" in contents
|
|
|
|
|
|
|
|
# Try with a different format and date format to make sure that the formats
|
|
|
|
# are being used
|
|
|
|
result = pytester.runpytest(
|
|
|
|
"--log-level=ERROR",
|
|
|
|
"--log-format=%(asctime)s : %(message)s",
|
|
|
|
"--log-date-format=%H:%M:%S",
|
|
|
|
"--log-file=pytest.log",
|
|
|
|
)
|
|
|
|
assert result.ret == 1
|
|
|
|
|
|
|
|
# The log file should only contain the error log messages
|
|
|
|
# not the warning or info ones and the format and date format
|
|
|
|
# should match the formats provided using --log-format and --log-date-format
|
|
|
|
assert os.path.isfile(log_file)
|
|
|
|
with open(log_file, encoding="utf-8") as rfh:
|
|
|
|
contents = rfh.read()
|
|
|
|
assert re.match(
|
|
|
|
r"[0-9]{2}:[0-9]{2}:[0-9]{2} : error text going to logger\s*", contents
|
|
|
|
)
|
|
|
|
assert "info text going to logger" not in contents
|
|
|
|
assert "warning text going to logger" not in contents
|
|
|
|
assert "error text going to logger" in contents
|