Coverage for tests / test_tutorial / test_arguments / test_default / test_tutorial002.py: 100%

31 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

7from typer.testing import CliRunner 1abcdefgh

8 

9runner = CliRunner() 1abcdefgh

10 

11 

12@pytest.fixture( 1abcdefgh

13 name="mod", 

14 params=[ 

15 pytest.param("tutorial002_py39"), 

16 pytest.param("tutorial002_an_py39"), 

17 ], 

18) 

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

20 module_name = f"docs_src.arguments.default.{request.param}" 1abcdefgh

21 mod = importlib.import_module(module_name) 1abcdefgh

22 return mod 1abcdefgh

23 

24 

25def test_help(mod: ModuleType): 1abcdefgh

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

27 assert result.exit_code == 0 1abcdefgh

28 assert "[OPTIONS] [NAME]" in result.output 1abcdefgh

29 assert "Arguments" in result.output 1abcdefgh

30 assert "[default: (dynamic)]" in result.output 1abcdefgh

31 

32 

33def test_call_no_arg(mod: ModuleType): 1abcdefgh

34 greetings = ["Hello Deadpool", "Hello Rick", "Hello Morty", "Hello Hiro"] 1abcdefgh

35 for _i in range(3): 1abcdefgh

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

37 assert result.exit_code == 0 1abcdefgh

38 assert any(greet in result.output for greet in greetings) 1abcdefgh

39 

40 

41def test_call_arg(mod: ModuleType): 1abcdefgh

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

43 assert result.exit_code == 0 1abcdefgh

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

45 

46 

47def test_script(mod: ModuleType): 1abcdefgh

48 result = subprocess.run( 1abcdefgh

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

50 capture_output=True, 

51 encoding="utf-8", 

52 ) 

53 assert "Usage" in result.stdout 1abcdefgh