Coverage for tests/test_tutorial/test_parameter_types/test_path/test_tutorial002_an.py: 100%
29 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-09-09 18:26 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-09-09 18:26 +0000
1import subprocess 1abcdefgh
2import sys 1abcdefgh
3from pathlib import Path 1abcdefgh
5import typer 1abcdefgh
6from typer.testing import CliRunner 1abcdefgh
8from docs_src.parameter_types.path import tutorial002_an as mod 1abcdefgh
10runner = CliRunner() 1abcdefgh
12app = typer.Typer() 1abcdefgh
13app.command()(mod.main) 1abcdefgh
16def test_not_exists(tmpdir): 1abcdefgh
17 config_file = Path(tmpdir) / "config.txt" 1abcdefgh
18 if config_file.exists(): # pragma: no cover 1abcdefgh
19 config_file.unlink()
20 result = runner.invoke(app, ["--config", f"{config_file}"]) 1abcdefgh
21 assert result.exit_code != 0 1abcdefgh
22 assert "Invalid value for '--config': File" in result.output 1abcdefgh
23 assert "does not exist" in result.output 1abcdefgh
26def test_exists(tmpdir): 1abcdefgh
27 config_file = Path(tmpdir) / "config.txt" 1abcdefgh
28 config_file.write_text("some settings") 1abcdefgh
29 result = runner.invoke(app, ["--config", f"{config_file}"]) 1abcdefgh
30 config_file.unlink() 1abcdefgh
31 assert result.exit_code == 0 1abcdefgh
32 assert "Config file contents: some settings" in result.output 1abcdefgh
35def test_dir(): 1abcdefgh
36 result = runner.invoke(app, ["--config", "./"]) 1abcdefgh
37 assert result.exit_code != 0 1abcdefgh
38 assert "Invalid value for '--config': File './' is a directory." in result.output 1abcdefgh
41def test_script(): 1abcdefgh
42 result = subprocess.run( 1abcdefgh
43 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
44 capture_output=True,
45 encoding="utf-8",
46 )
47 assert "Usage" in result.stdout 1abcdefgh