Coverage for tests/test_tutorial/test_arguments/test_help/test_tutorial001.py: 100%
35 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
4import typer 1abcdefgh
5import typer.core 1abcdefgh
6from typer.testing import CliRunner 1abcdefgh
8from docs_src.arguments.help import tutorial001 as mod 1abcdefgh
10runner = CliRunner() 1abcdefgh
12app = typer.Typer() 1abcdefgh
13app.command()(mod.main) 1abcdefgh
16def test_help(): 1abcdefgh
17 result = runner.invoke(app, ["--help"]) 1abcdefgh
18 assert result.exit_code == 0 1abcdefgh
19 assert "[OPTIONS] NAME" in result.output 1abcdefgh
20 assert "Arguments" in result.output 1abcdefgh
21 assert "NAME" in result.output 1abcdefgh
22 assert "The name of the user to greet" in result.output 1abcdefgh
23 assert "[required]" in result.output 1abcdefgh
26def test_help_no_rich(): 1abcdefgh
27 rich = typer.core.rich 1abcdefgh
28 typer.core.rich = None 1abcdefgh
29 result = runner.invoke(app, ["--help"]) 1abcdefgh
30 assert result.exit_code == 0 1abcdefgh
31 assert "[OPTIONS] NAME" in result.output 1abcdefgh
32 assert "Arguments" in result.output 1abcdefgh
33 assert "NAME" in result.output 1abcdefgh
34 assert "The name of the user to greet" in result.output 1abcdefgh
35 assert "[required]" in result.output 1abcdefgh
36 typer.core.rich = rich 1abcdefgh
39def test_call_arg(): 1abcdefgh
40 result = runner.invoke(app, ["Camila"]) 1abcdefgh
41 assert result.exit_code == 0 1abcdefgh
42 assert "Hello Camila" in result.output 1abcdefgh
45def test_script(): 1abcdefgh
46 result = subprocess.run( 1abcdefgh
47 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
48 capture_output=True,
49 encoding="utf-8",
50 )
51 assert "Usage" in result.stdout 1abcdefgh