-
-
Notifications
You must be signed in to change notification settings - Fork 718
/
Copy pathtest_annotated.py
78 lines (55 loc) · 2.03 KB
/
test_annotated.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import typer
from typer.testing import CliRunner
from typing_extensions import Annotated
from .utils import needs_py310
runner = CliRunner()
def test_annotated_argument_with_default():
app = typer.Typer()
@app.command()
def cmd(val: Annotated[int, typer.Argument()] = 0):
print(f"hello {val}")
result = runner.invoke(app)
assert result.exit_code == 0, result.output
assert "hello 0" in result.output
result = runner.invoke(app, ["42"])
assert result.exit_code == 0, result.output
assert "hello 42" in result.output
@needs_py310
def test_annotated_argument_in_string_type_with_default():
app = typer.Typer()
@app.command()
def cmd(val: "Annotated[int, typer.Argument()]" = 0):
print(f"hello {val}")
result = runner.invoke(app)
assert result.exit_code == 0, result.output
assert "hello 0" in result.output
result = runner.invoke(app, ["42"])
assert result.exit_code == 0, result.output
assert "hello 42" in result.output
def test_annotated_argument_with_default_factory():
app = typer.Typer()
def make_string():
return "I made it"
@app.command()
def cmd(val: Annotated[str, typer.Argument(default_factory=make_string)]):
print(val)
result = runner.invoke(app)
assert result.exit_code == 0, result.output
assert "I made it" in result.output
result = runner.invoke(app, ["overridden"])
assert result.exit_code == 0, result.output
assert "overridden" in result.output
def test_annotated_option_with_argname_doesnt_mutate_multiple_calls():
app = typer.Typer()
@app.command()
def cmd(force: Annotated[bool, typer.Option("--force")] = False):
if force:
print("Forcing operation")
else:
print("Not forcing")
result = runner.invoke(app)
assert result.exit_code == 0, result.output
assert "Not forcing" in result.output
result = runner.invoke(app, ["--force"])
assert result.exit_code == 0, result.output
assert "Forcing operation" in result.output