Coverage for tests/test_tutorial/test_parameter_types/test_datetime/test_tutorial001.py: 100%
28 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.datetime 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 "[%Y-%m-%d|%Y-%m-%dT%H:%M:%S|%Y-%m-%d %H:%M:%S]" in result.output 1abcdefgh
21def test_main(): 1abcdefgh
22 result = runner.invoke(app, ["1956-01-31T10:00:00"]) 1abcdefgh
23 assert result.exit_code == 0 1abcdefgh
24 assert "Interesting day to be born: 1956-01-31 10:00:00" in result.output 1abcdefgh
25 assert "Birth hour: 10" in result.output 1abcdefgh
28def test_invalid(): 1abcdefgh
29 result = runner.invoke(app, ["july-19-1989"]) 1abcdefgh
30 assert result.exit_code != 0 1abcdefgh
31 assert ( 1abcdefgh
32 "Invalid value for 'BIRTH:[%Y-%m-%d|%Y-%m-%dT%H:%M:%S|%Y-%m-%d %H:%M:%S]':"
33 in result.stdout
34 )
35 assert "'july-19-1989' does not match the formats" in result.output 1abcdefgh
36 assert "%Y-%m-%d" in result.output 1abcdefgh
37 assert "%Y-%m-%dT%H:%M:%S" in result.output 1abcdefgh
38 assert "%Y-%m-%d %H:%M:%S" 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