Coverage for tests / test_tutorial / test_parameter_types / test_enum / test_tutorial003.py: 100%
33 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 importlib 1abcdefgh
2import subprocess 1abcdefgh
3import sys 1abcdefgh
4from types import ModuleType 1abcdefgh
6import pytest 1abcdefgh
7from typer.testing import CliRunner 1abcdefgh
9runner = CliRunner() 1abcdefgh
12@pytest.fixture( 1abcdefgh
13 name="mod",
14 params=[
15 pytest.param("tutorial003_py39"),
16 pytest.param("tutorial003_an_py39"),
17 ],
18)
19def get_mod(request: pytest.FixtureRequest) -> ModuleType: 1abcdefgh
20 module_name = f"docs_src.parameter_types.enum.{request.param}" 1abcdefgh
21 mod = importlib.import_module(module_name) 1abcdefgh
22 return mod 1abcdefgh
25def test_help(mod: ModuleType): 1abcdefgh
26 result = runner.invoke(mod.app, ["--help"]) 1abcdefgh
27 assert result.exit_code == 0 1abcdefgh
28 assert "--groceries" in result.output 1abcdefgh
29 assert "[Eggs|Bacon|Cheese]" in result.output 1abcdefgh
30 assert "default: Eggs, Cheese" in result.output 1abcdefgh
33def test_call_no_arg(mod: ModuleType): 1abcdefgh
34 result = runner.invoke(mod.app) 1abcdefgh
35 assert result.exit_code == 0 1abcdefgh
36 assert "Buying groceries: Eggs, Cheese" in result.output 1abcdefgh
39def test_call_single_arg(mod: ModuleType): 1abcdefgh
40 result = runner.invoke(mod.app, ["--groceries", "Bacon"]) 1abcdefgh
41 assert result.exit_code == 0 1abcdefgh
42 assert "Buying groceries: Bacon" in result.output 1abcdefgh
45def test_call_multiple_arg(mod: ModuleType): 1abcdefgh
46 result = runner.invoke(mod.app, ["--groceries", "Eggs", "--groceries", "Bacon"]) 1abcdefgh
47 assert result.exit_code == 0 1abcdefgh
48 assert "Buying groceries: Eggs, Bacon" in result.output 1abcdefgh
51def test_script(mod: ModuleType): 1abcdefgh
52 result = subprocess.run( 1abcdefgh
53 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
54 capture_output=True,
55 encoding="utf-8",
56 )
57 assert "Usage" in result.stdout 1abcdefgh