Coverage for tests/test_tutorial/test_multiple_values/test_multiple_options/test_tutorial001_an.py: 100%

27 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.multiple_values.multiple_options import tutorial001_an as mod 1abcdefgh

8 

9runner = CliRunner() 1abcdefgh

10app = typer.Typer() 1abcdefgh

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

12 

13 

14def test_main(): 1abcdefgh

15 result = runner.invoke(app) 1abcdefgh

16 assert result.exit_code != 0 1abcdefgh

17 assert "No provided users" in result.output 1abcdefgh

18 assert "raw input = None" in result.output 1abcdefgh

19 assert "Aborted" in result.output 1abcdefgh

20 

21 

22def test_1_user(): 1abcdefgh

23 result = runner.invoke(app, ["--user", "Camila"]) 1abcdefgh

24 assert result.exit_code == 0 1abcdefgh

25 assert "Processing user: Camila" in result.output 1abcdefgh

26 

27 

28def test_3_user(): 1abcdefgh

29 result = runner.invoke( 1abcdefgh

30 app, ["--user", "Camila", "--user", "Rick", "--user", "Morty"] 

31 ) 

32 assert result.exit_code == 0 1abcdefgh

33 assert "Processing user: Camila" in result.output 1abcdefgh

34 assert "Processing user: Rick" in result.output 1abcdefgh

35 assert "Processing user: Morty" in result.output 1abcdefgh

36 

37 

38def test_script(): 1abcdefgh

39 result = subprocess.run( 1abcdefgh

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

41 capture_output=True, 

42 encoding="utf-8", 

43 ) 

44 assert "Usage" in result.stdout 1abcdefgh