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

32 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

8from typer.testing import CliRunner 1abcdefgh

9 

10runner = CliRunner() 1abcdefgh

11 

12 

13@pytest.fixture( 1abcdefgh

14 name="mod", 

15 params=[ 

16 pytest.param("tutorial001_py39"), 

17 pytest.param("tutorial001_an_py39"), 

18 ], 

19) 

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

21 module_name = f"docs_src.arguments.optional.{request.param}" 1abcdefgh

22 mod = importlib.import_module(module_name) 1abcdefgh

23 return mod 1abcdefgh

24 

25 

26def test_call_no_arg(mod: ModuleType): 1abcdefgh

27 result = runner.invoke(mod.app) 1abcdefgh

28 assert result.exit_code != 0 1abcdefgh

29 assert "Missing argument 'NAME'." in result.output 1abcdefgh

30 

31 

32def test_call_no_arg_standalone(mod: ModuleType): 1abcdefgh

33 # Mainly for coverage 

34 result = runner.invoke(mod.app, standalone_mode=False) 1abcdefgh

35 assert result.exit_code != 0 1abcdefgh

36 

37 

38def test_call_no_arg_no_rich(monkeypatch: pytest.MonkeyPatch, mod: ModuleType): 1abcdefgh

39 # Mainly for coverage 

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

41 result = runner.invoke(mod.app) 1abcdefgh

42 assert result.exit_code != 0 1abcdefgh

43 assert "Error: Missing argument 'NAME'" in result.output 1abcdefgh

44 

45 

46def test_call_arg(mod: ModuleType): 1abcdefgh

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

48 assert result.exit_code == 0 1abcdefgh

49 assert "Hello Camila" in result.output 1abcdefgh

50 

51 

52def test_script(mod: ModuleType): 1abcdefgh

53 result = subprocess.run( 1abcdefgh

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

55 capture_output=True, 

56 encoding="utf-8", 

57 ) 

58 assert "Usage" in result.stdout 1abcdefgh