Coverage for tests / test_tutorial / test_parameter_types / test_file / test_tutorial005.py: 100%

26 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 pathlib import Path 1abcdefg

5from types import ModuleType 1abcdefg

6 

7import pytest 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("tutorial005_py310"), 

17 pytest.param("tutorial005_an_py310"), 

18 ], 

19) 

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

21 module_name = f"docs_src.parameter_types.file.{request.param}" 1abcdefg

22 mod = importlib.import_module(module_name) 1abcdefg

23 return mod 1abcdefg

24 

25 

26def test_main(tmpdir, mod: ModuleType): 1abcdefg

27 config_file = Path(tmpdir) / "config.txt" 1abcdefg

28 if config_file.exists(): # pragma: no cover 1abcdefg

29 config_file.unlink() 

30 config_file.write_text("") 

31 result = runner.invoke(mod.app, ["--config", f"{config_file}"]) 1abcdefg

32 result = runner.invoke(mod.app, ["--config", f"{config_file}"]) 1abcdefg

33 result = runner.invoke(mod.app, ["--config", f"{config_file}"]) 1abcdefg

34 text = config_file.read_text() 1abcdefg

35 config_file.unlink() 1abcdefg

36 assert result.exit_code == 0 1abcdefg

37 assert "Config line written" 1abcdefg

38 assert "This is a single line\nThis is a single line\nThis is a single line" in text 1abcdefg

39 

40 

41def test_script(mod: ModuleType): 1abcdefg

42 result = subprocess.run( 1abcdefg

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

44 capture_output=True, 

45 encoding="utf-8", 

46 ) 

47 assert "Usage" in result.stdout 1abcdefg