Coverage for tests / test_tutorial / test_parameter_types / test_path / test_tutorial001.py: 100%
38 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 importlib 1abcdefg
2import subprocess 1abcdefg
3import sys 1abcdefg
4from pathlib import Path 1abcdefg
5from types import ModuleType 1abcdefg
7import pytest 1abcdefg
8from typer.testing import CliRunner 1abcdefg
10runner = CliRunner() 1abcdefg
13@pytest.fixture( 1abcdefg
14 name="mod",
15 params=[
16 pytest.param("tutorial001_py310"),
17 pytest.param("tutorial001_an_py310"),
18 ],
19)
20def get_mod(request: pytest.FixtureRequest) -> ModuleType: 1abcdefg
21 module_name = f"docs_src.parameter_types.path.{request.param}" 1abcdefg
22 mod = importlib.import_module(module_name) 1abcdefg
23 return mod 1abcdefg
26def test_no_path(tmpdir, mod: ModuleType): 1abcdefg
27 Path(tmpdir) / "config.txt" 1abcdefg
28 result = runner.invoke(mod.app) 1abcdefg
29 assert result.exit_code == 1 1abcdefg
30 assert "No config file" in result.output 1abcdefg
31 assert "Aborted" in result.output 1abcdefg
34def test_not_exists(tmpdir, mod: ModuleType): 1abcdefg
35 config_file = Path(tmpdir) / "config.txt" 1abcdefg
36 if config_file.exists(): # pragma: no cover 1abcdefg
37 config_file.unlink()
38 result = runner.invoke(mod.app, ["--config", f"{config_file}"]) 1abcdefg
39 assert result.exit_code == 0 1abcdefg
40 assert "The config doesn't exist" in result.output 1abcdefg
43def test_exists(tmpdir, mod: ModuleType): 1abcdefg
44 config_file = Path(tmpdir) / "config.txt" 1abcdefg
45 config_file.write_text("some settings") 1abcdefg
46 result = runner.invoke(mod.app, ["--config", f"{config_file}"]) 1abcdefg
47 config_file.unlink() 1abcdefg
48 assert result.exit_code == 0 1abcdefg
49 assert "Config file contents: some settings" in result.output 1abcdefg
52def test_dir(mod: ModuleType): 1abcdefg
53 result = runner.invoke(mod.app, ["--config", "./"]) 1abcdefg
54 assert result.exit_code == 0 1abcdefg
55 assert "Config is a directory, will use all its config files" in result.output 1abcdefg
58def test_script(mod: ModuleType): 1abcdefg
59 result = subprocess.run( 1abcdefg
60 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
61 capture_output=True,
62 encoding="utf-8",
63 )
64 assert "Usage" in result.stdout 1abcdefg