Coverage for tests / test_tutorial / test_multiple_values / test_options_with_multiple_values / test_tutorial001.py: 100%
34 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-02-09 12:36 +0000
« 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
6import pytest 1abcdefgh
7from typer.testing import CliRunner 1abcdefgh
9runner = CliRunner() 1abcdefgh
12@pytest.fixture( 1abcdefgh
13 name="mod",
14 params=[
15 pytest.param("tutorial001_py39"),
16 pytest.param("tutorial001_an_py39"),
17 ],
18)
19def get_mod(request: pytest.FixtureRequest) -> ModuleType: 1abcdefgh
20 module_name = ( 1abcdefgh
21 f"docs_src.multiple_values.options_with_multiple_values.{request.param}"
22 )
23 mod = importlib.import_module(module_name) 1abcdefgh
24 return mod 1abcdefgh
27def test_main(mod: ModuleType): 1abcdefgh
28 result = runner.invoke(mod.app) 1abcdefgh
29 assert result.exit_code != 0 1abcdefgh
30 assert "No user provided" in result.output 1abcdefgh
31 assert "Aborted" in result.output 1abcdefgh
34def test_user_1(mod: ModuleType): 1abcdefgh
35 result = runner.invoke(mod.app, ["--user", "Camila", "50", "yes"]) 1abcdefgh
36 assert result.exit_code == 0 1abcdefgh
37 assert "The username Camila has 50 coins" in result.output 1abcdefgh
38 assert "And this user is a wizard!" in result.output 1abcdefgh
41def test_user_2(mod: ModuleType): 1abcdefgh
42 result = runner.invoke(mod.app, ["--user", "Morty", "3", "no"]) 1abcdefgh
43 assert result.exit_code == 0 1abcdefgh
44 assert "The username Morty has 3 coins" in result.output 1abcdefgh
45 assert "And this user is a wizard!" not in result.output 1abcdefgh
48def test_invalid_user(mod: ModuleType): 1abcdefgh
49 result = runner.invoke(mod.app, ["--user", "Camila", "50"]) 1abcdefgh
50 assert result.exit_code != 0 1abcdefgh
51 assert "Option '--user' requires 3 arguments" in result.output 1abcdefgh
54def test_script(mod: ModuleType): 1abcdefgh
55 result = subprocess.run( 1abcdefgh
56 [sys.executable, "-m", "coverage", "run", mod.__file__, "--help"],
57 capture_output=True,
58 encoding="utf-8",
59 )
60 assert "Usage" in result.stdout 1abcdefgh