Coverage for tests/test_tutorial/test_parameter_types/test_enum/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
5from typer.testing import CliRunner 1abcdefgh
7from docs_src.parameter_types.enum import tutorial001 as mod 1abcdefgh
9runner = CliRunner() 1abcdefgh
11app = typer.Typer() 1abcdefgh
12app.command()(mod.main) 1abcdefgh
15def test_help(): 1abcdefgh
16 result = runner.invoke(app, ["--help"]) 1abcdefgh
17 assert result.exit_code == 0 1abcdefgh
18 assert "--network" in result.output 1abcdefgh
19 assert "[simple|conv|lstm]" in result.output 1abcdefgh
20 assert "default: simple" in result.output 1abcdefgh
23def test_main(): 1abcdefgh
24 result = runner.invoke(app, ["--network", "conv"]) 1abcdefgh
25 assert result.exit_code == 0 1abcdefgh
26 assert "Training neural network of type: conv" in result.output 1abcdefgh
29def test_invalid_case(): 1abcdefgh
30 result = runner.invoke(app, ["--network", "CONV"]) 1abcdefgh
31 assert result.exit_code != 0 1abcdefgh
32 assert "Invalid value for '--network': 'CONV' is not one of" in result.output 1abcdefgh
33 assert "simple" in result.output 1abcdefgh
34 assert "conv" in result.output 1abcdefgh
35 assert "lstm" in result.output 1abcdefgh
38def test_invalid_other(): 1abcdefgh
39 result = runner.invoke(app, ["--network", "capsule"]) 1abcdefgh
40 assert result.exit_code != 0 1abcdefgh
41 assert "Invalid value for '--network': 'capsule' is not one of" in result.output 1abcdefgh
42 assert "simple" in result.output 1abcdefgh
43 assert "conv" in result.output 1abcdefgh
44 assert "lstm" in result.output 1abcdefgh
47def test_script(): 1abcdefgh
48 result = subprocess.run( 1abcdefgh
49 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
50 capture_output=True,
51 encoding="utf-8",
52 )
53 assert "Usage" in result.stdout 1abcdefgh