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

22 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.custom_types 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 

19 

20def test_parse_custom_type(): 1abcdefgh

21 result = runner.invoke(app, ["0", "--custom-opt", "1"]) 1abcdefgh

22 assert "custom_arg is <CustomClass: value=00>" in result.output 1abcdefgh

23 assert "custom-opt is <CustomClass: value=11>" in result.output 1abcdefgh

24 

25 

26def test_parse_custom_type_with_default(): 1abcdefgh

27 result = runner.invoke(app, ["0"]) 1abcdefgh

28 assert "custom_arg is <CustomClass: value=00>" in result.output 1abcdefgh

29 assert "custom-opt is <CustomClass: value=FooFoo>" in result.output 1abcdefgh

30 

31 

32def test_script(): 1abcdefgh

33 result = subprocess.run( 1abcdefgh

34 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"], 

35 capture_output=True, 

36 encoding="utf-8", 

37 ) 

38 assert "Usage" in result.stdout 1abcdefgh