summaryrefslogtreecommitdiff
path: root/tests/test_custom_logger.py
blob: 9102f5287b403bd984e0852280a6f5193027fec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import pytest
from logging import Logger, DEBUG, INFO, WARNING, ERROR, CRITICAL


@pytest.mark.parametrize('log_level, starts_with, message', [
    (DEBUG, '[DEBUG]', 'first message'),
    (INFO, 'second message', 'second message'),
    (WARNING, '\x1b[33m[WARNING]', 'third message'),
    (ERROR, '\x1b[31m[ERROR]', 'fourth message'),
    (CRITICAL, '\x1b[31;1m[CRITICAL]', 'fifth message'),
])
def test_log_levels(log_level: int,
                    starts_with: str,
                    message: str,
                    logger: Logger,
                    capture_stdout: dict[str, str | int]) -> None:
    logger.log(log_level, message)
    assert str(capture_stdout['stdout']).startswith(starts_with)
    assert message in str(capture_stdout['stdout'])