Coverage for tests/test_tutorial/test_parameter_types/test_index/test_tutorial001.py: 100%

29 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-09-09 18:26 +0000

1import subprocess 1abcdefgh

2import sys 1abcdefgh

3 

4import typer 1abcdefgh

5from typer.testing import CliRunner 1abcdefgh

6 

7from docs_src.parameter_types.index import tutorial001 as mod 1abcdefgh

8 

9runner = CliRunner() 1abcdefgh

10 

11app = typer.Typer() 1abcdefgh

12app.command()(mod.main) 1abcdefgh

13 

14 

15def test_help(): 1abcdefgh

16 result = runner.invoke(app, ["--help"]) 1abcdefgh

17 assert result.exit_code == 0 1abcdefgh

18 assert "--age" in result.output 1abcdefgh

19 assert "INTEGER" in result.output 1abcdefgh

20 assert "--height-meters" in result.output 1abcdefgh

21 assert "FLOAT" in result.output 1abcdefgh

22 

23 

24def test_params(): 1abcdefgh

25 result = runner.invoke( 1abcdefgh

26 app, ["Camila", "--age", "15", "--height-meters", "1.70", "--female"] 

27 ) 

28 assert result.exit_code == 0 1abcdefgh

29 assert "NAME is Camila, of type: <class 'str'>" in result.output 1abcdefgh

30 assert "--age is 15, of type: <class 'int'>" in result.output 1abcdefgh

31 assert "--height-meters is 1.7, of type: <class 'float'>" in result.output 1abcdefgh

32 assert "--female is True, of type: <class 'bool'>" in result.output 1abcdefgh

33 

34 

35def test_invalid(): 1abcdefgh

36 result = runner.invoke(app, ["Camila", "--age", "15.3"]) 1abcdefgh

37 assert result.exit_code != 0 1abcdefgh

38 assert "Invalid value for '--age': '15.3' is not a valid integer" in result.output 1abcdefgh

39 

40 

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