Coverage for tests/test_tutorial/test_options/test_prompt/test_tutorial003_an.py: 100%
31 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
5from typer.testing import CliRunner 1abcdefgh
7from docs_src.options.prompt import tutorial003_an as mod 1abcdefgh
9runner = CliRunner() 1abcdefgh
11app = typer.Typer() 1abcdefgh
12app.command()(mod.main) 1abcdefgh
15def test_prompt(): 1abcdefgh
16 result = runner.invoke(app, input="Old Project\nOld Project\n") 1abcdefgh
17 assert result.exit_code == 0 1abcdefgh
18 assert "Deleting project Old Project" in result.output 1abcdefgh
21def test_prompt_not_equal(): 1abcdefgh
22 result = runner.invoke( 1abcdefgh
23 app, input="Old Project\nNew Spice\nOld Project\nOld Project\n"
24 )
25 assert result.exit_code == 0 1abcdefgh
26 assert "Error: The two entered values do not match" in result.output 1abcdefgh
27 assert "Deleting project Old Project" in result.output 1abcdefgh
30def test_option(): 1abcdefgh
31 result = runner.invoke(app, ["--project-name", "Old Project"]) 1abcdefgh
32 assert result.exit_code == 0 1abcdefgh
33 assert "Deleting project Old Project" in result.output 1abcdefgh
34 assert "Project name: " not in result.output 1abcdefgh
37def test_help(): 1abcdefgh
38 result = runner.invoke(app, ["--help"]) 1abcdefgh
39 assert result.exit_code == 0 1abcdefgh
40 assert "--project-name" in result.output 1abcdefgh
41 assert "TEXT" in result.output 1abcdefgh
42 assert "[required]" 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