Coverage for tests/test_tutorial/test_subcommands/test_tutorial002.py: 100%

52 statements  

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

1import subprocess 1abcdefgh

2import sys 1abcdefgh

3 

4from typer.testing import CliRunner 1abcdefgh

5 

6from docs_src.subcommands.tutorial002 import main as mod 1abcdefgh

7 

8app = mod.app 1abcdefgh

9runner = CliRunner() 1abcdefgh

10 

11 

12def test_help(): 1abcdefgh

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

14 assert result.exit_code == 0 1abcdefgh

15 assert "[OPTIONS] COMMAND [ARGS]..." in result.output 1abcdefgh

16 assert "Commands" in result.output 1abcdefgh

17 assert "items" in result.output 1abcdefgh

18 assert "users" in result.output 1abcdefgh

19 

20 

21def test_help_items(): 1abcdefgh

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

23 assert result.exit_code == 0 1abcdefgh

24 assert "[OPTIONS] COMMAND [ARGS]..." in result.output 1abcdefgh

25 assert "Commands" in result.output 1abcdefgh

26 assert "create" in result.output 1abcdefgh

27 assert "delete" in result.output 1abcdefgh

28 assert "sell" in result.output 1abcdefgh

29 

30 

31def test_items_create(): 1abcdefgh

32 result = runner.invoke(app, ["items", "create", "Wand"]) 1abcdefgh

33 assert result.exit_code == 0 1abcdefgh

34 assert "Creating item: Wand" in result.output 1abcdefgh

35 

36 

37def test_items_sell(): 1abcdefgh

38 result = runner.invoke(app, ["items", "sell", "Vase"]) 1abcdefgh

39 assert result.exit_code == 0 1abcdefgh

40 assert "Selling item: Vase" in result.output 1abcdefgh

41 

42 

43def test_items_delete(): 1abcdefgh

44 result = runner.invoke(app, ["items", "delete", "Vase"]) 1abcdefgh

45 assert result.exit_code == 0 1abcdefgh

46 assert "Deleting item: Vase" in result.output 1abcdefgh

47 

48 

49def test_help_users(): 1abcdefgh

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

51 assert result.exit_code == 0 1abcdefgh

52 assert "[OPTIONS] COMMAND [ARGS]..." in result.output 1abcdefgh

53 assert "Commands" in result.output 1abcdefgh

54 assert "create" in result.output 1abcdefgh

55 assert "delete" in result.output 1abcdefgh

56 assert "sell" not in result.output 1abcdefgh

57 

58 

59def test_users_create(): 1abcdefgh

60 result = runner.invoke(app, ["users", "create", "Camila"]) 1abcdefgh

61 assert result.exit_code == 0 1abcdefgh

62 assert "Creating user: Camila" in result.output 1abcdefgh

63 

64 

65def test_users_delete(): 1abcdefgh

66 result = runner.invoke(app, ["users", "delete", "Camila"]) 1abcdefgh

67 assert result.exit_code == 0 1abcdefgh

68 assert "Deleting user: Camila" in result.output 1abcdefgh

69 

70 

71def test_script(): 1abcdefgh

72 result = subprocess.run( 1abcdefgh

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

74 capture_output=True, 

75 encoding="utf-8", 

76 ) 

77 assert "Usage" in result.stdout 1abcdefgh