Coverage for tests / test_tutorial / test_parameter_types / test_file / test_tutorial004.py: 100%
25 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 pathlib import Path 1abcdefgh
5from types import ModuleType 1abcdefgh
7import pytest 1abcdefgh
8from typer.testing import CliRunner 1abcdefgh
10runner = CliRunner() 1abcdefgh
13@pytest.fixture( 1abcdefgh
14 name="mod",
15 params=[
16 pytest.param("tutorial004_py39"),
17 pytest.param("tutorial004_an_py39"),
18 ],
19)
20def get_mod(request: pytest.FixtureRequest) -> ModuleType: 1abcdefgh
21 module_name = f"docs_src.parameter_types.file.{request.param}" 1abcdefgh
22 mod = importlib.import_module(module_name) 1abcdefgh
23 return mod 1abcdefgh
26def test_main(tmpdir, mod: ModuleType): 1abcdefgh
27 binary_file = Path(tmpdir) / "config.txt" 1abcdefgh
28 if binary_file.exists(): # pragma: no cover 1abcdefgh
29 binary_file.unlink()
30 result = runner.invoke(mod.app, ["--file", f"{binary_file}"]) 1abcdefgh
31 text = binary_file.read_text(encoding="utf-8") 1abcdefgh
32 binary_file.unlink() 1abcdefgh
33 assert result.exit_code == 0 1abcdefgh
34 assert "Binary file written" in result.output 1abcdefgh
35 assert "some settings" in text 1abcdefgh
36 assert "la cigüeña trae al niño" in text 1abcdefgh
39def test_script(mod: ModuleType): 1abcdefgh
40 result = subprocess.run( 1abcdefgh
41 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
42 capture_output=True,
43 encoding="utf-8",
44 )
45 assert "Usage" in result.stdout 1abcdefgh