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

29 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("tutorial000_py39"), 

17 pytest.param("tutorial000_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 

26@pytest.fixture(name="app") 1abcdefgh

27def get_app(mod: ModuleType) -> typer.Typer: 1abcdefgh

28 app = typer.Typer() 1abcdefgh

29 app.command()(mod.main) 1abcdefgh

30 return app 1abcdefgh

31 

32 

33def test_cli(app: typer.Typer): 1abcdefgh

34 result = runner.invoke(app, ["World"]) 1abcdefgh

35 assert result.exit_code == 0 1abcdefgh

36 assert "Hello World" in result.output 1abcdefgh

37 

38 

39def test_cli_missing_argument(app: typer.Typer): 1abcdefgh

40 result = runner.invoke(app) 1abcdefgh

41 assert result.exit_code == 2 1abcdefgh

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

43 

44 

45def test_script(mod: ModuleType): 1abcdefgh

46 result = subprocess.run( 1abcdefgh

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

48 capture_output=True, 

49 encoding="utf-8", 

50 ) 

51 assert "Usage" in result.stdout 1abcdefgh