如何管理日志

pytest 自动捕获级别为 WARNING 或更高级别的日志消息,并在每个失败测试的单独部分中显示它们,方式与捕获的 stdout 和 stderr 相同。

不带选项运行

pytest

显示如下所示的失败测试

----------------------- Captured stdlog call ----------------------
test_reporting.py    26 WARNING  text going to logger
----------------------- Captured stdout call ----------------------
text going to stdout
----------------------- Captured stderr call ----------------------
text going to stderr
==================== 2 failed in 0.02 seconds =====================

默认情况下,每个捕获的日志消息都显示模块、行号、日志级别和消息。

如果需要,可以通过传递特定的格式化选项,将日志和日期格式指定为 logging 模块支持的任何格式

pytest --log-format="%(asctime)s %(levelname)s %(message)s" \
        --log-date-format="%Y-%m-%d %H:%M:%S"

显示如下所示的失败测试

----------------------- Captured stdlog call ----------------------
2010-04-10 14:48:44 WARNING text going to logger
----------------------- Captured stdout call ----------------------
text going to stdout
----------------------- Captured stderr call ----------------------
text going to stderr
==================== 2 failed in 0.02 seconds =====================

这些选项也可以通过 pytest.ini 文件进行自定义

[pytest]
log_format = %(asctime)s %(levelname)s %(message)s
log_date_format = %Y-%m-%d %H:%M:%S

可以通过 --log-disable={logger_name} 禁用特定的 logger。此参数可以多次传递

pytest --log-disable=main --log-disable=testing

此外,可以使用以下命令完全禁用失败测试中捕获内容(stdout、stderr 和日志)的报告

pytest --show-capture=no

caplog fixture

在测试内部,可以更改捕获的日志消息的日志级别。这由 caplog fixture 支持

def test_foo(caplog):
    caplog.set_level(logging.INFO)

默认情况下,级别在根 logger 上设置,但是为了方便起见,也可以设置任何 logger 的日志级别

def test_foo(caplog):
    caplog.set_level(logging.CRITICAL, logger="root.baz")

设置的日志级别在测试结束时自动恢复。

也可以使用上下文管理器在 with 代码块内临时更改日志级别

def test_bar(caplog):
    with caplog.at_level(logging.INFO):
        pass

同样,默认情况下,根 logger 的级别受到影响,但可以使用以下方法更改任何 logger 的级别

def test_bar(caplog):
    with caplog.at_level(logging.CRITICAL, logger="root.baz"):
        pass

最后,在测试运行期间发送到 logger 的所有日志都以 logging.LogRecord 实例和最终日志文本的形式在 fixture 上可用。当您想要断言消息的内容时,这很有用

def test_baz(caplog):
    func_under_test()
    for record in caplog.records:
        assert record.levelname != "CRITICAL"
    assert "wally" not in caplog.text

有关日志记录的所有可用属性,请参阅 logging.LogRecord 类。

如果您只想确保某些消息已在给定的 logger 名称下使用给定的严重性和消息记录,您也可以求助于 record_tuples

def test_foo(caplog):
    logging.getLogger().info("boo %s", "arg")

    assert caplog.record_tuples == [("root", logging.INFO, "boo arg")]

您可以调用 caplog.clear() 来重置测试中捕获的日志记录

def test_something_with_clearing_records(caplog):
    some_method_that_creates_log_records()
    caplog.clear()
    your_test_method()
    assert ["Foo"] == [rec.message for rec in caplog.records]

caplog.records 属性仅包含当前阶段的记录,因此在 setup 阶段,它仅包含 setup 日志,callteardown 阶段也是如此。

要访问其他阶段的日志,请使用 caplog.get_records(when) 方法。例如,如果您想确保使用特定 fixture 的测试永远不会记录任何警告,您可以在 teardown 期间检查 setupcall 阶段的记录,如下所示

@pytest.fixture
def window(caplog):
    window = create_window()
    yield window
    for when in ("setup", "call"):
        messages = [
            x.message for x in caplog.get_records(when) if x.levelno == logging.WARNING
        ]
        if messages:
            pytest.fail(f"warning messages encountered during testing: {messages}")

完整的 API 可在 pytest.LogCaptureFixture 中找到。

警告

caplog fixture 向根 logger 添加一个 handler 以捕获日志。如果在测试期间修改了根 logger,例如使用 logging.config.dictConfig,则可能会删除此 handler,并导致不捕获任何日志。为避免这种情况,请确保任何根 logger 配置仅添加到现有 handler。

实时日志

通过将 log_cli 配置选项设置为 true,pytest 将在日志记录发出时直接将其输出到控制台。

您可以指定日志级别,对于该级别,级别相等或更高的日志记录将打印到控制台,方法是传递 --log-cli-level。此设置接受日志级别名称或数字值,如 logging 的文档 中所示。

此外,您还可以指定 --log-cli-format--log-cli-date-format,它们镜像并默认设置为 --log-format--log-date-format(如果未提供),但仅应用于控制台日志 handler。

所有 CLI 日志选项也可以在配置 INI 文件中设置。选项名称是

  • log_cli_level

  • log_cli_format

  • log_cli_date_format

如果您需要将整个测试套件的日志调用记录到文件中,则可以传递 --log-file=/path/to/log/file。默认情况下,此日志文件以写入模式打开,这意味着它将在每次运行测试会话时被覆盖。如果您希望以追加模式打开文件,则可以传递 --log-file-mode=a。请注意,日志文件位置的相对路径(无论是在 CLI 上传递还是在配置文件中声明)始终相对于当前工作目录解析。

您还可以通过传递 --log-file-level 来指定日志文件的日志级别。此设置接受日志级别名称或数字值,如 logging 的文档 中所示。

此外,您还可以指定 --log-file-format--log-file-date-format,它们等于 --log-format--log-date-format,但应用于日志文件日志 handler。

所有日志文件选项也可以在配置 INI 文件中设置。选项名称是

  • log_file

  • log_file_mode

  • log_file_level

  • log_file_format

  • log_file_date_format

您可以调用 set_log_path() 以动态自定义 log_file 路径。此功能被认为是实验性的。请注意,set_log_path() 遵循 log_file_mode 选项。

自定义颜色

如果启用了彩色终端输出,则日志级别将着色。通过 add_color_level() 支持从默认颜色更改或在自定义日志级别上放置颜色。示例

@pytest.hookimpl(trylast=True)
def pytest_configure(config):
    logging_plugin = config.pluginmanager.get_plugin("logging-plugin")

    # Change color on existing log level
    logging_plugin.log_cli_handler.formatter.add_color_level(logging.INFO, "cyan")

    # Add color to a custom log level (a custom log level `SPAM` is already set up)
    logging_plugin.log_cli_handler.formatter.add_color_level(logging.SPAM, "blue")

警告

此功能及其 API 被认为是实验性的,可能会在版本之间更改,恕不另行通知。

发行说明

此功能作为 pytest-catchlog 插件的直接替代品引入,它们彼此冲突。当引入此功能时,与 pytest-capturelog 的向后兼容性 API 已被删除,因此如果由于该原因您仍然需要 pytest-catchlog,则可以通过添加到您的 pytest.ini 中来禁用内部功能

[pytest]
    addopts=-p no:logging

pytest 3.4 中的不兼容更改

此功能在 3.3 中引入,并且在 3.4 中根据社区反馈进行了一些不兼容的更改

  • 除非通过 log_level 配置或 --log-level 命令行选项显式请求,否则日志级别不再更改。这允许用户自己配置 logger 对象。设置 log_level 将设置全局捕获的级别,因此如果特定测试需要的级别低于此级别,请使用 caplog.set_level() 功能,否则该测试容易失败。

  • 实时日志 现在默认禁用,可以通过将 log_cli 配置选项设置为 true 来启用。启用后,详细程度会增加,因此每个测试的日志记录都是可见的。

  • 实时日志 现在发送到 sys.stdout,不再需要 -s 命令行选项才能工作。

如果您想部分恢复版本 3.3 的日志记录行为,可以将这些选项添加到您的 ini 文件中

[pytest]
log_cli=true
log_level=NOTSET

有关导致此更改的讨论的更多详细信息,请参阅 #3013