Coverage for tests / test_tutorial / test_options / test_required / test_tutorial001_tutorial002.py: 100%

38 statements  

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

1import importlib 1abcdefgh

2import subprocess 1abcdefgh

3import sys 1abcdefgh

4from types import ModuleType 1abcdefgh

5 

6import pytest 1abcdefgh

7import typer 1abcdefgh

8import typer.core 1abcdefgh

9from typer.testing import CliRunner 1abcdefgh

10 

11runner = CliRunner() 1abcdefgh

12 

13 

14@pytest.fixture( 1abcdefgh

15 name="mod", 

16 params=[ 

17 pytest.param("tutorial001_py39"), 

18 pytest.param("tutorial001_an_py39"), 

19 pytest.param("tutorial002_py39"), 

20 ], 

21) 

22def get_mod(request: pytest.FixtureRequest) -> ModuleType: 1abcdefgh

23 module_name = f"docs_src.options.required.{request.param}" 1abcdefgh

24 mod = importlib.import_module(module_name) 1abcdefgh

25 return mod 1abcdefgh

26 

27 

28def test_1(mod: ModuleType): 1abcdefgh

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

30 assert result.exit_code != 0 1abcdefgh

31 assert "Missing option '--lastname'" in result.output 1abcdefgh

32 

33 

34def test_option_lastname(mod: ModuleType): 1abcdefgh

35 result = runner.invoke(mod.app, ["Camila", "--lastname", "Gutiérrez"]) 1abcdefgh

36 assert result.exit_code == 0 1abcdefgh

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

38 

39 

40def test_help(mod: ModuleType): 1abcdefgh

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

42 assert result.exit_code == 0 1abcdefgh

43 assert "--lastname" in result.output 1abcdefgh

44 assert "TEXT" in result.output 1abcdefgh

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

46 

47 

48def test_help_no_rich(monkeypatch: pytest.MonkeyPatch, mod: ModuleType): 1abcdefgh

49 monkeypatch.setattr(typer.core, "HAS_RICH", False) 1abcdefgh

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

51 assert result.exit_code == 0 1abcdefgh

52 assert "--lastname" in result.output 1abcdefgh

53 assert "TEXT" in result.output 1abcdefgh

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

55 

56 

57def test_script(mod: ModuleType): 1abcdefgh

58 result = subprocess.run( 1abcdefgh

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

60 capture_output=True, 

61 encoding="utf-8", 

62 ) 

63 assert "Usage" in result.stdout 1abcdefgh