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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
|
from collections import namedtuple
from typing import Annotated, Dict, List, Optional, TypedDict, Union
import pytest
from cyclopts.argument import (
Argument,
ArgumentCollection,
_resolve_groups_from_callable,
_resolve_parameter_name,
is_typeddict,
)
from cyclopts.group import Group
from cyclopts.parameter import Parameter
from cyclopts.token import Token
Case = namedtuple("TestCase", ["args", "expected"])
def test_argument_collection_no_annotation_no_default():
def foo(a, b):
pass
collection = ArgumentCollection._from_callable(foo)
assert len(collection) == 2
assert collection[0].field_info.name == "a"
assert collection[0].hint is str
assert collection[0].keys == ()
assert collection[0]._accepts_keywords is False
assert collection[1].field_info.name == "b"
assert collection[1].hint is str
assert collection[1].keys == ()
assert collection[1]._accepts_keywords is False
def test_argument_collection_no_annotation_default():
def foo(a="foo", b=100):
pass
collection = ArgumentCollection._from_callable(foo)
assert len(collection) == 2
assert collection[0].field_info.name == "a"
assert collection[0].hint is str
assert collection[0].keys == ()
assert collection[0]._accepts_keywords is False
assert collection[1].field_info.name == "b"
assert collection[1].hint is int
assert collection[1].keys == ()
assert collection[1]._accepts_keywords is False
def test_argument_collection_basic_annotation():
def foo(a: str, b: int):
pass
collection = ArgumentCollection._from_callable(foo)
assert len(collection) == 2
assert collection[0].field_info.name == "a"
assert collection[0].hint is str
assert collection[0].keys == ()
assert collection[0]._accepts_keywords is False
assert collection[1].field_info.name == "b"
assert collection[1].hint is int
assert collection[1].keys == ()
assert collection[1]._accepts_keywords is False
@pytest.mark.parametrize("type_", [dict, Dict])
def test_argument_collection_bare_dict(type_):
def foo(a: type_, b: int): # pyright: ignore
pass
collection = ArgumentCollection._from_callable(foo)
assert len(collection) == 2
assert collection[0].field_info.name == "a"
assert collection[0].parameter.name == ("--a",)
assert collection[0].hint is type_
assert collection[0].keys == ()
assert collection[0]._accepts_keywords is True
assert collection[0]._accepts_arbitrary_keywords is True
assert collection[1].field_info.name == "b"
assert collection[1].parameter.name == ("--b",)
assert collection[1].hint is int
assert collection[1].keys == ()
assert collection[1]._accepts_keywords is False
def test_argument_collection_typing_dict():
def foo(a: Dict[str, int], b: int):
pass
collection = ArgumentCollection._from_callable(foo)
assert len(collection) == 2
assert collection[0].field_info.name == "a"
assert collection[0].hint == Dict[str, int]
assert collection[0].keys == ()
assert collection[0]._accepts_keywords is True
assert collection[0]._accepts_arbitrary_keywords is True
assert collection[1].field_info.name == "b"
assert collection[1].hint is int
assert collection[1].keys == ()
assert collection[1]._accepts_keywords is False
def test_argument_collection_typeddict():
class ExampleTypedDict(TypedDict):
foo: str
bar: int
def foo(a: ExampleTypedDict, b: int):
pass
collection = ArgumentCollection._from_callable(foo)
assert len(collection) == 4
assert collection[0].field_info.name == "a"
assert collection[0].parameter.name == ("--a",)
assert collection[0].hint is ExampleTypedDict
assert collection[0].keys == ()
assert collection[0]._accepts_keywords is True
assert collection[0].children
assert collection[1].field_info.name == "foo"
assert collection[1].parameter.name == ("--a.foo",)
assert collection[1].hint is str
assert collection[1].keys == ("foo",)
assert collection[1]._accepts_keywords is False
assert not collection[1].children
assert collection[2].field_info.name == "bar"
assert collection[2].parameter.name == ("--a.bar",)
assert collection[2].hint is int
assert collection[2].keys == ("bar",)
assert collection[2]._accepts_keywords is False
assert not collection[2].children
assert collection[3].field_info.name == "b"
assert collection[3].parameter.name == ("--b",)
assert collection[3].hint is int
assert collection[3].keys == ()
assert collection[3]._accepts_keywords is False
assert not collection[3].children
def test_argument_collection_typeddict_nested():
class Inner(TypedDict):
fizz: float
buzz: Annotated[complex, Parameter(name="bazz")]
class ExampleTypedDict(TypedDict):
foo: Inner
bar: int
def foo(a: ExampleTypedDict, b: int):
pass
collection = ArgumentCollection._from_callable(foo)
assert len(collection) == 6
assert collection[0].field_info.name == "a"
assert collection[0].parameter.name == ("--a",)
assert collection[0].hint is ExampleTypedDict
assert collection[0].keys == ()
assert collection[0]._accepts_keywords is True
assert collection[0].children
assert collection[1].field_info.name == "foo"
assert collection[1].parameter.name == ("--a.foo",)
assert collection[1].hint is Inner
assert collection[1].keys == ("foo",)
assert collection[1]._accepts_keywords is True
assert collection[1].children
assert collection[2].field_info.name == "fizz"
assert collection[2].parameter.name == ("--a.foo.fizz",)
assert collection[2].hint is float
assert collection[2].keys == ("foo", "fizz")
assert collection[2]._accepts_keywords is False
assert not collection[2].children
assert collection[3].field_info.name == "buzz"
assert collection[3].parameter.name == ("--a.foo.bazz",)
assert collection[3].hint is complex
assert collection[3].keys == ("foo", "buzz")
assert collection[3]._accepts_keywords is False
assert not collection[3].children
assert collection[4].field_info.name == "bar"
assert collection[4].parameter.name == ("--a.bar",)
assert collection[4].hint is int
assert collection[4].keys == ("bar",)
assert collection[4]._accepts_keywords is False
assert not collection[4].children
assert collection[5].field_info.name == "b"
assert collection[5].parameter.name == ("--b",)
assert collection[5].hint is int
assert collection[5].keys == ()
assert collection[5]._accepts_keywords is False
assert not collection[5].children
def test_argument_collection_typeddict_annotated_keys_name_change():
class ExampleTypedDict(TypedDict):
foo: Annotated[str, Parameter(name="fizz")]
bar: Annotated[int, Parameter(name="buzz")]
def foo(a: ExampleTypedDict, b: int):
pass
collection = ArgumentCollection._from_callable(foo)
assert len(collection) == 4
assert collection[0].field_info.name == "a"
assert collection[0].parameter.name == ("--a",)
assert collection[0].hint is ExampleTypedDict
assert collection[0].keys == ()
assert collection[0]._accepts_keywords is True
assert collection[0].children
assert collection[1].field_info.name == "foo"
assert collection[1].parameter.name == ("--a.fizz",)
assert collection[1].hint is str
assert collection[1].keys == ("foo",)
assert collection[1]._accepts_keywords is False
assert not collection[1].children
assert collection[2].field_info.name == "bar"
assert collection[2].parameter.name == ("--a.buzz",)
assert collection[2].hint is int
assert collection[2].keys == ("bar",)
assert collection[2]._accepts_keywords is False
assert not collection[2].children
assert collection[3].field_info.name == "b"
assert collection[3].parameter.name == ("--b",)
assert collection[3].hint is int
assert collection[3].keys == ()
assert collection[3]._accepts_keywords is False
assert not collection[3].children
def test_argument_collection_typeddict_annotated_keys_name_override():
class ExampleTypedDict(TypedDict):
foo: Annotated[str, Parameter(name="--fizz")]
bar: Annotated[int, Parameter(name="--buzz")]
def foo(a: ExampleTypedDict, b: int):
pass
collection = ArgumentCollection._from_callable(foo)
assert len(collection) == 4
assert collection[0].field_info.name == "a"
assert collection[0].parameter.name == ("--a",)
assert collection[0].hint is ExampleTypedDict
assert collection[0].keys == ()
assert collection[0]._accepts_keywords is True
assert collection[0].children
assert collection[1].field_info.name == "foo"
assert collection[1].parameter.name == ("--fizz",)
assert collection[1].hint is str
assert collection[1].keys == ("foo",)
assert collection[1]._accepts_keywords is False
assert not collection[1].children
assert collection[2].field_info.name == "bar"
assert collection[2].parameter.name == ("--buzz",)
assert collection[2].hint is int
assert collection[2].keys == ("bar",)
assert collection[2]._accepts_keywords is False
assert not collection[2].children
assert collection[3].field_info.name == "b"
assert collection[3].parameter.name == ("--b",)
assert collection[3].hint is int
assert collection[3].keys == ()
assert collection[3]._accepts_keywords is False
assert not collection[3].children
def test_argument_collection_typeddict_flatten_root():
class ExampleTypedDict(TypedDict):
foo: str
bar: int
def foo(a: Annotated[ExampleTypedDict, Parameter(name="*")], b: int):
pass
collection = ArgumentCollection._from_callable(foo)
assert collection[0].field_info.name == "a"
assert collection[0].parameter.name == ("*",)
assert collection[0].hint is ExampleTypedDict
assert collection[0].keys == ()
assert collection[0]._accepts_keywords is True
assert collection[0].children
assert collection[1].field_info.name == "foo"
assert collection[1].parameter.name == ("--foo",)
assert collection[1].hint is str
assert collection[1].keys == ("foo",)
assert collection[1]._accepts_keywords is False
assert not collection[1].children
assert collection[2].field_info.name == "bar"
assert collection[2].parameter.name == ("--bar",)
assert collection[2].hint is int
assert collection[2].keys == ("bar",)
assert collection[2]._accepts_keywords is False
assert not collection[2].children
assert collection[3].field_info.name == "b"
assert collection[3].parameter.name == ("--b",)
assert collection[3].hint is int
assert collection[3].keys == ()
assert collection[3]._accepts_keywords is False
assert not collection[3].children
def test_argument_collection_var_positional():
def foo(a: int, *b: float):
pass
collection = ArgumentCollection._from_callable(foo)
assert len(collection) == 2
assert collection[0].parameter.name == ("--a",)
assert collection[0].hint is int
assert collection[0].keys == ()
assert collection[0]._accepts_keywords is False
assert collection[1].field_info.name == "b"
assert collection[1].parameter.name == ("B",)
assert collection[1].hint == tuple[float, ...]
assert collection[1].keys == ()
assert collection[1]._accepts_keywords is False
def test_argument_collection_var_keyword():
def foo(a: int, **b: float):
pass
collection = ArgumentCollection._from_callable(foo)
assert len(collection) == 2
assert collection[0].field_info.name == "a"
assert collection[0].parameter.name == ("--a",)
assert collection[0].hint is int
assert collection[0].keys == ()
assert collection[0]._accepts_keywords is False
assert collection[1].field_info.name == "b"
assert collection[1].parameter.name == ("--[KEYWORD]",)
assert collection[1].hint == dict[str, float]
assert collection[1].keys == ()
assert collection[1]._accepts_keywords is True
def test_argument_collection_var_keyword_named():
def foo(a: int, **b: Annotated[float, Parameter(name=("--foo", "--bar"))]):
pass
collection = ArgumentCollection._from_callable(foo)
assert len(collection) == 2
assert collection[0].field_info.name == "a"
assert collection[0].parameter.name == ("--a",)
assert collection[0].hint is int
assert collection[0].keys == ()
assert collection[0]._accepts_keywords is False
assert collection[1].field_info.name == "b"
assert collection[1].parameter.name == ("--foo", "--bar")
assert collection[1].hint == dict[str, float]
assert collection[1].keys == ()
assert collection[1]._accepts_keywords is True
def test_argument_collection_var_keyword_match():
def foo(a: int, **b: float):
pass
collection = ArgumentCollection._from_callable(foo)
argument, keys, _ = collection.match("--fizz")
assert keys == ("fizz",)
assert argument.field_info.name == "b"
@pytest.mark.parametrize(
"args, expected",
[
Case(args=(), expected=()),
Case(args=(("foo",),), expected=("--foo",)),
Case(args=(("--foo",),), expected=("--foo",)),
Case(args=(("--foo", "--bar"),), expected=("--foo", "--bar")),
Case(args=(("--foo",), ("--bar",)), expected=("--bar",)),
Case(args=(("--foo",), ("baz",)), expected=("--foo.baz",)),
Case(args=(("--foo",), ("--bar", "baz")), expected=("--bar", "--foo.baz")),
Case(args=(("--foo", "--bar"), ("baz",)), expected=("--foo.baz", "--bar.baz")),
Case(args=(("*",), ("bar",)), expected=("--bar",)),
Case(args=(("--foo", "*"), ("bar",)), expected=("--foo.bar", "--bar")),
Case(args=(("--foo",), ("*",), ("bar",)), expected=("--foo.bar",)),
Case(args=(("foo",), ("--bar",)), expected=("--bar",)),
Case(args=(("foo",), ("bar",)), expected=("--foo.bar",)),
],
)
def test_resolve_parameter_name(args, expected):
assert _resolve_parameter_name(*args) == expected
def test_resolve_groups_from_callable():
class User(TypedDict):
name: Annotated[str, Parameter(group="Inside Typed Dict")]
age: Annotated[int, Parameter(group="Inside Typed Dict")]
height: float
def build(
config1: str,
config2: Annotated[str, Parameter()],
flag1: Annotated[bool, Parameter(group="Flags")] = False,
flag2: Annotated[bool, Parameter(group=("Flags", "Other Flags"))] = False,
user: Optional[User] = None,
):
pass
actual = _resolve_groups_from_callable(build)
assert actual == [Group("Parameters"), Group("Flags"), Group("Other Flags"), Group("Inside Typed Dict")]
def test_argument_convert():
argument = Argument(
hint=List[int],
tokens=[
Token(value="42", source="test"),
Token(value="70", source="test"),
],
)
assert argument.convert() == [42, 70]
def test_argument_convert_dict():
def foo(bar: Dict[str, int]):
pass
collection = ArgumentCollection._from_callable(foo)
assert len(collection) == 1
argument = collection[0]
# Sanity check the match method
assert argument.match("--bar.buzz") == (("buzz",), None)
argument.append(Token(value="7", source="test", keys=("fizz",)))
argument.append(Token(value="12", source="test", keys=("buzz",)))
assert argument.convert() == {"fizz": 7, "buzz": 12}
def test_argument_convert_var_keyword():
def foo(**kwargs: int):
pass
collection = ArgumentCollection._from_callable(foo)
assert len(collection) == 1
argument = collection[0]
# Sanity check the match method
assert argument.match("--fizz") == (("fizz",), None)
argument.append(Token(value="7", source="test", keys=("fizz",)))
argument.append(Token(value="12", source="test", keys=("buzz",)))
assert argument.convert() == {"fizz": 7, "buzz": 12}
def test_argument_convert_cparam_provided():
def my_converter(type_, tokens):
return f"my_converter_{tokens[0].value}"
argument = Argument(
hint=str,
tokens=[Token(value="my_value", source="test")],
parameter=Parameter(
converter=my_converter,
),
)
assert argument.convert() == "my_converter_my_value"
class ExampleTypedDict(TypedDict):
foo: str
bar: int
@pytest.mark.parametrize(
"hint",
[
ExampleTypedDict,
Optional[ExampleTypedDict],
Annotated[ExampleTypedDict, "foo"],
# A union including a Typed Dict is allowed.
Union[ExampleTypedDict, str, int],
],
)
def test_is_typed_dict_true(hint):
assert is_typeddict(hint)
@pytest.mark.parametrize(
"hint",
[
list,
dict,
Dict,
Dict[str, int],
],
)
def test_is_typed_dict_false(hint):
assert not is_typeddict(hint)
|