Coverage for tests / test_tutorial / test_arguments / test_help / test_tutorial001.py: 100%

37 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-03-26 21:46 +0000

1import importlib 1abcdefg

2import subprocess 1abcdefg

3import sys 1abcdefg

4from types import ModuleType 1abcdefg

5 

6import pytest 1abcdefg

7import typer 1abcdefg

8from typer.testing import CliRunner 1abcdefg

9 

10runner = CliRunner() 1abcdefg

11 

12 

13@pytest.fixture( 1abcdefg

14 name="mod", 

15 params=[ 

16 pytest.param("tutorial001_py310"), 

17 pytest.param("tutorial001_an_py310"), 

18 ], 

19) 

20def get_mod(request: pytest.FixtureRequest) -> ModuleType: 1abcdefg

21 module_name = f"docs_src.arguments.help.{request.param}" 1abcdefg

22 mod = importlib.import_module(module_name) 1abcdefg

23 return mod 1abcdefg

24 

25 

26def test_help(mod: ModuleType): 1abcdefg

27 result = runner.invoke(mod.app, ["--help"]) 1abcdefg

28 assert result.exit_code == 0 1abcdefg

29 assert "[OPTIONS] NAME" in result.output 1abcdefg

30 assert "Arguments" in result.output 1abcdefg

31 assert "NAME" in result.output 1abcdefg

32 assert "The name of the user to greet" in result.output 1abcdefg

33 assert "[required]" in result.output 1abcdefg

34 

35 

36def test_help_no_rich(monkeypatch: pytest.MonkeyPatch, mod: ModuleType): 1abcdefg

37 monkeypatch.setattr(typer.core, "HAS_RICH", False) 1abcdefg

38 result = runner.invoke(mod.app, ["--help"]) 1abcdefg

39 assert result.exit_code == 0 1abcdefg

40 assert "[OPTIONS] NAME" in result.output 1abcdefg

41 assert "Arguments" in result.output 1abcdefg

42 assert "NAME" in result.output 1abcdefg

43 assert "The name of the user to greet" in result.output 1abcdefg

44 assert "[required]" in result.output 1abcdefg

45 

46 

47def test_call_arg(mod: ModuleType): 1abcdefg

48 result = runner.invoke(mod.app, ["Camila"]) 1abcdefg

49 assert result.exit_code == 0 1abcdefg

50 assert "Hello Camila" in result.output 1abcdefg

51 

52 

53def test_script(mod: ModuleType): 1abcdefg

54 result = subprocess.run( 1abcdefg

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

56 capture_output=True, 

57 encoding="utf-8", 

58 ) 

59 assert "Usage" in result.stdout 1abcdefg