Coverage for tests / test_tutorial / test_options / test_name / test_tutorial005.py: 100%
38 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("tutorial005_py39"),
16 pytest.param("tutorial005_an_py39"),
17 ],
18)
19def get_mod(request: pytest.FixtureRequest) -> ModuleType: 1abcdefgh
20 module_name = f"docs_src.options.name.{request.param}" 1abcdefgh
21 mod = importlib.import_module(module_name) 1abcdefgh
22 return mod 1abcdefgh
25def test_option_help(mod: ModuleType): 1abcdefgh
26 result = runner.invoke(mod.app, ["--help"]) 1abcdefgh
27 assert result.exit_code == 0 1abcdefgh
28 assert "-n" in result.output 1abcdefgh
29 assert "--name" in result.output 1abcdefgh
30 assert "TEXT" in result.output 1abcdefgh
31 assert "-f" in result.output 1abcdefgh
32 assert "--formal" in result.output 1abcdefgh
35def test_call(mod: ModuleType): 1abcdefgh
36 result = runner.invoke(mod.app, ["-n", "Camila"]) 1abcdefgh
37 assert result.exit_code == 0 1abcdefgh
38 assert "Hello Camila" in result.output 1abcdefgh
41def test_call_formal(mod: ModuleType): 1abcdefgh
42 result = runner.invoke(mod.app, ["-n", "Camila", "-f"]) 1abcdefgh
43 assert result.exit_code == 0 1abcdefgh
44 assert "Good day Ms. Camila." in result.output 1abcdefgh
47def test_call_formal_condensed(mod: ModuleType): 1abcdefgh
48 result = runner.invoke(mod.app, ["-fn", "Camila"]) 1abcdefgh
49 assert result.exit_code == 0 1abcdefgh
50 assert "Good day Ms. Camila." in result.output 1abcdefgh
53def test_call_condensed_wrong_order(mod: ModuleType): 1abcdefgh
54 result = runner.invoke(mod.app, ["-nf", "Camila"]) 1abcdefgh
55 assert result.exit_code != 0 1abcdefgh
58def test_script(mod: ModuleType): 1abcdefgh
59 result = subprocess.run( 1abcdefgh
60 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
61 capture_output=True,
62 encoding="utf-8",
63 )
64 assert "Usage" in result.stdout 1abcdefgh