Coverage for tests / test_tutorial / test_commands / test_index / test_tutorial003.py: 100%

27 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-02-09 12:36 +0000

1import subprocess 1abcdefgh

2import sys 1abcdefgh

3 

4from typer.testing import CliRunner 1abcdefgh

5 

6from docs_src.commands.index import tutorial003_py39 as mod 1abcdefgh

7 

8app = mod.app 1abcdefgh

9 

10runner = CliRunner() 1abcdefgh

11 

12 

13def test_no_arg(): 1abcdefgh

14 result = runner.invoke(app) 1abcdefgh

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

16 assert "Commands" in result.output 1abcdefgh

17 assert "create" in result.output 1abcdefgh

18 assert "delete" in result.output 1abcdefgh

19 

20 

21def test_no_additional_output(): 1abcdefgh

22 """Ensure that no additional output was generated (cf. PR #1262)""" 

23 result = runner.invoke(app) 1abcdefgh

24 assert result.output.count("Usage") == 1 1abcdefgh

25 assert "Error" not in result.output 1abcdefgh

26 

27 

28def test_create(): 1abcdefgh

29 result = runner.invoke(app, ["create"]) 1abcdefgh

30 assert result.exit_code == 0 1abcdefgh

31 assert "Creating user: Hiro Hamada" in result.output 1abcdefgh

32 

33 

34def test_delete(): 1abcdefgh

35 result = runner.invoke(app, ["delete"]) 1abcdefgh

36 assert result.exit_code == 0 1abcdefgh

37 assert "Deleting user: Hiro Hamada" in result.output 1abcdefgh

38 

39 

40def test_script(): 1abcdefgh

41 result = subprocess.run( 1abcdefgh

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

43 capture_output=True, 

44 encoding="utf-8", 

45 ) 

46 assert "Usage" in result.stdout 1abcdefgh