Coverage for tests / test_tutorial / test_printing / test_tutorial001.py: 100%
19 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-03-26 21:46 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-03-26 21:46 +0000
1import subprocess 1abcdefg
2import sys 1abcdefg
3from unittest.mock import patch 1abcdefg
5from rich.console import Console # noqa: TID251 1abcdefg
6from typer.testing import CliRunner 1abcdefg
8import docs_src.printing.tutorial001_py310 as mod 1abcdefg
9from tests.utils import normalize_rich_output 1abcdefg
11app = mod.app 1abcdefg
13runner = CliRunner() 1abcdefg
16def test_cli(): 1abcdefg
17 console = Console(force_terminal=True, width=100) 1abcdefg
18 with patch("rich.get_console", return_value=console): 1abcdefg
19 result = runner.invoke(app) 1abcdefg
21 assert result.exit_code == 0 1abcdefg
23 # Replace all Rich formatting with `*` characters
24 normalized_output = normalize_rich_output(result.output, squash_whitespaces=False) 1abcdefg
26 assert ( 1abcdefg
27 "Here's the data\n"
28 "*{*\n"
29 " *'name'*: *'Rick'*,\n"
30 " *'age'*: *42*,\n"
31 " *'items'*: *[*{*'name'*: *'Portal Gun'*}*, *{*'name'*: *'Plumbus'*}*]*,\n"
32 " *'active'*: *True*,\n"
33 " *'affiliation'*: *None*\n"
34 "*}*\n"
35 ) in normalized_output
38def test_script(): 1abcdefg
39 result = subprocess.run( 1abcdefg
40 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
41 capture_output=True,
42 encoding="utf-8",
43 )
44 assert "Usage" in result.stdout 1abcdefg