Coverage for tests / test_tutorial / test_printing / test_tutorial001.py: 100%
19 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-02-09 12:36 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-02-09 12:36 +0000
1import subprocess 1abcdefgh
2import sys 1abcdefgh
3from unittest.mock import patch 1abcdefgh
5from rich.console import Console # noqa: TID251 1abcdefgh
6from typer.testing import CliRunner 1abcdefgh
8import docs_src.printing.tutorial001_py39 as mod 1abcdefgh
9from tests.utils import normalize_rich_output 1abcdefgh
11app = mod.app 1abcdefgh
13runner = CliRunner() 1abcdefgh
16def test_cli(): 1abcdefgh
17 console = Console(force_terminal=True, width=100) 1abcdefgh
18 with patch("rich.get_console", return_value=console): 1abcdefgh
19 result = runner.invoke(app) 1abcdefgh
21 assert result.exit_code == 0 1abcdefgh
23 # Replace all Rich formatting with `*` characters
24 normalized_output = normalize_rich_output(result.output, squash_whitespaces=False) 1abcdefgh
26 assert ( 1abcdefgh
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(): 1abcdefgh
39 result = subprocess.run( 1abcdefgh
40 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
41 capture_output=True,
42 encoding="utf-8",
43 )
44 assert "Usage" in result.stdout 1abcdefgh