Coverage for tests/test_tutorial/test_first_steps/test_tutorial004.py: 100%

37 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.first_steps import tutorial004 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 "Arguments" in result.output 1abcdefgh

19 assert "NAME" in result.output 1abcdefgh

20 assert "[required]" in result.output 1abcdefgh

21 assert "LASTNAME" in result.output 1abcdefgh

22 assert "[required]" in result.output 1abcdefgh

23 assert "--formal" in result.output 1abcdefgh

24 assert "--no-formal" in result.output 1abcdefgh

25 

26 

27def test_1(): 1abcdefgh

28 result = runner.invoke(app, ["Camila", "Gutiérrez"]) 1abcdefgh

29 assert result.exit_code == 0 1abcdefgh

30 assert "Hello Camila Gutiérrez" in result.output 1abcdefgh

31 

32 

33def test_formal_1(): 1abcdefgh

34 result = runner.invoke(app, ["Camila", "Gutiérrez", "--formal"]) 1abcdefgh

35 assert result.exit_code == 0 1abcdefgh

36 assert "Good day Ms. Camila Gutiérrez." in result.output 1abcdefgh

37 

38 

39def test_formal_2(): 1abcdefgh

40 result = runner.invoke(app, ["Camila", "--formal", "Gutiérrez"]) 1abcdefgh

41 assert result.exit_code == 0 1abcdefgh

42 assert "Good day Ms. Camila Gutiérrez." in result.output 1abcdefgh

43 

44 

45def test_formal_3(): 1abcdefgh

46 result = runner.invoke(app, ["--formal", "Camila", "Gutiérrez"]) 1abcdefgh

47 assert result.exit_code == 0 1abcdefgh

48 assert "Good day Ms. Camila Gutiérrez." in result.output 1abcdefgh

49 

50 

51def test_script(): 1abcdefgh

52 result = subprocess.run( 1abcdefgh

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

54 capture_output=True, 

55 encoding="utf-8", 

56 ) 

57 assert "Usage" in result.stdout 1abcdefgh