Coverage for tests/test_tutorial/test_parameter_types/test_file/test_tutorial004.py: 100%
21 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.file import tutorial004 as mod 1abcdefgh
10runner = CliRunner() 1abcdefgh
12app = typer.Typer() 1abcdefgh
13app.command()(mod.main) 1abcdefgh
16def test_main(tmpdir): 1abcdefgh
17 binary_file = Path(tmpdir) / "config.txt" 1abcdefgh
18 if binary_file.exists(): # pragma: no cover 1abcdefgh
19 binary_file.unlink()
20 result = runner.invoke(app, ["--file", f"{binary_file}"]) 1abcdefgh
21 text = binary_file.read_text(encoding="utf-8") 1abcdefgh
22 binary_file.unlink() 1abcdefgh
23 assert result.exit_code == 0 1abcdefgh
24 assert "Binary file written" in result.output 1abcdefgh
25 assert "some settings" in text 1abcdefgh
26 assert "la cigüeña trae al niño" in text 1abcdefgh
29def test_script(): 1abcdefgh
30 result = subprocess.run( 1abcdefgh
31 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
32 capture_output=True,
33 encoding="utf-8",
34 )
35 assert "Usage" in result.stdout 1abcdefgh