File size: 35,558 Bytes
e40d9d0 |
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 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 |
import re
from importlib import import_module
from typing import Any, Dict, Optional
import pytest
from omegaconf import (
MISSING,
AnyNode,
DictConfig,
KeyValidationError,
MissingMandatoryValue,
OmegaConf,
ReadonlyConfigError,
ValidationError,
_utils,
)
from omegaconf.errors import ConfigKeyError
from tests import Color
class EnumConfigAssignments:
legal = [
(Color.RED, Color.RED),
(Color.GREEN, Color.GREEN),
(Color.BLUE, Color.BLUE),
("RED", Color.RED),
("GREEN", Color.GREEN),
("BLUE", Color.BLUE),
("Color.RED", Color.RED),
("Color.GREEN", Color.GREEN),
("Color.BLUE", Color.BLUE),
(1, Color.RED),
(2, Color.GREEN),
(3, Color.BLUE),
]
illegal = ["foo", True, False, 4, 1.0]
class IntegersConfigAssignments:
legal = [("10", 10), ("-10", -10), 100, 0, 1, 1]
illegal = ["foo", 1.0, float("inf"), float("nan"), Color.BLUE]
class StringConfigAssignments:
legal = ["10", "-10", "foo", "", (Color.BLUE, "Color.BLUE")]
illegal: Any = []
class FloatConfigAssignments:
legal = [
("inf", float("inf")),
("-inf", float("-inf")),
(10, 10.0),
(10.1, 10.1),
("10.2", 10.2),
("10e-3", 10e-3),
]
illegal = ["foo", True, False, Color.BLUE]
class BoolConfigAssignments:
legal = [
(True, True),
("Y", True),
("true", True),
("Yes", True),
("On", True),
("1", True),
(100, True),
(False, False),
("N", False),
("false", False),
("No", False),
("Off", False),
("0", False),
(0, False),
]
illegal = [100.0, Color.BLUE]
class AnyTypeConfigAssignments:
legal = [True, False, 10, 10.0, "foobar", Color.BLUE]
illegal: Any = []
@pytest.mark.parametrize(
"class_type",
[
"tests.structured_conf.data.dataclasses",
"tests.structured_conf.data.attr_classes",
],
)
class TestConfigs:
def test_nested_config_is_none(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.NestedWithNone)
assert cfg == {"plugin": None}
assert OmegaConf.get_type(cfg, "plugin") is None
assert _utils.get_ref_type(cfg, "plugin") == Optional[module.Plugin]
def test_nested_config(self, class_type: str) -> None:
module: Any = import_module(class_type)
def validate(cfg: DictConfig) -> None:
assert cfg == {
"default_value": {
"with_default": 10,
"null_default": None,
"mandatory_missing": "???",
"interpolation": "${value_at_root}",
},
"user_provided_default": {
"with_default": 42,
"null_default": None,
"mandatory_missing": "???",
"interpolation": "${value_at_root}",
},
"value_at_root": 1000,
}
with pytest.raises(ValidationError):
cfg.user_provided_default = 10
with pytest.raises(ValidationError):
cfg.default_value = 10
# assign subclass
cfg.default_value = module.NestedSubclass()
assert cfg.default_value == {
"additional": 20,
"with_default": 10,
"null_default": None,
"mandatory_missing": "???",
"interpolation": "${value_at_root}",
}
# assign original ref type back
cfg.default_value = module.Nested()
assert cfg.default_value == module.Nested()
with pytest.warns(UserWarning):
conf1 = OmegaConf.structured(module.NestedConfig)
validate(conf1)
conf1 = OmegaConf.structured(module.NestedConfig(default_value=module.Nested()))
validate(conf1)
def test_value_without_a_default(self, class_type: str) -> None:
module: Any = import_module(class_type)
with pytest.raises(
ValueError,
match=re.escape(
"Missing default value for NoDefaultErrors.no_default,"
" to indicate default must be populated later use OmegaConf.MISSING"
),
):
OmegaConf.structured(module.NoDefaultErrors)
OmegaConf.structured(module.NoDefaultErrors(no_default=10)) == {
"no_default": 10
}
def test_union_errors(self, class_type: str) -> None:
module: Any = import_module(class_type)
with pytest.raises(ValueError):
OmegaConf.structured(module.UnionError)
def test_config_with_list(self, class_type: str) -> None:
module: Any = import_module(class_type)
def validate(cfg: DictConfig) -> None:
assert cfg == {"list1": [1, 2, 3], "list2": [1, 2, 3], "missing": MISSING}
with pytest.raises(ValidationError):
cfg.list1[1] = "foo"
assert OmegaConf.is_missing(cfg, "missing")
conf1 = OmegaConf.structured(module.ConfigWithList)
validate(conf1)
conf1 = OmegaConf.structured(module.ConfigWithList())
validate(conf1)
def test_assignment_to_nested_structured_config(self, class_type: str) -> None:
module: Any = import_module(class_type)
with pytest.warns(UserWarning):
conf = OmegaConf.structured(module.NestedConfig)
with pytest.raises(ValidationError):
conf.default_value = 10
conf.default_value = module.Nested()
def test_assignment_to_structured_inside_dict_config(self, class_type: str) -> None:
module: Any = import_module(class_type)
conf = OmegaConf.create({"val": module.Nested})
with pytest.raises(ValidationError):
conf.val = 10
def test_config_with_dict(self, class_type: str) -> None:
module: Any = import_module(class_type)
def validate(cfg: DictConfig) -> None:
assert cfg == {"dict1": {"foo": "bar"}, "missing": MISSING}
assert OmegaConf.is_missing(cfg, "missing")
conf1 = OmegaConf.structured(module.ConfigWithDict)
validate(conf1)
conf1 = OmegaConf.structured(module.ConfigWithDict())
validate(conf1)
def test_structured_config_struct_behavior(self, class_type: str) -> None:
module: Any = import_module(class_type)
def validate(cfg: DictConfig) -> None:
assert not OmegaConf.is_struct(cfg)
with pytest.raises(AttributeError):
# noinspection PyStatementEffect
cfg.foo
cfg.dict1.foo = 10
assert cfg.dict1.foo == 10
# setting struct False on a specific typed node opens it up even though it's
# still typed
OmegaConf.set_struct(cfg, False)
cfg.foo = 20
assert cfg.foo == 20
conf = OmegaConf.structured(module.ConfigWithDict)
validate(conf)
conf = OmegaConf.structured(module.ConfigWithDict())
validate(conf)
@pytest.mark.parametrize( # type:ignore
"tested_type,assignment_data, init_dict",
[
# Use class to build config
("BoolConfig", BoolConfigAssignments, {}),
("IntegersConfig", IntegersConfigAssignments, {}),
("FloatConfig", FloatConfigAssignments, {}),
("StringConfig", StringConfigAssignments, {}),
("EnumConfig", EnumConfigAssignments, {}),
# Use instance to build config
("BoolConfig", BoolConfigAssignments, {"with_default": False}),
("IntegersConfig", IntegersConfigAssignments, {"with_default": 42}),
("FloatConfig", FloatConfigAssignments, {"with_default": 42.0}),
("StringConfig", StringConfigAssignments, {"with_default": "fooooooo"}),
("EnumConfig", EnumConfigAssignments, {"with_default": Color.BLUE}),
("AnyTypeConfig", AnyTypeConfigAssignments, {}),
],
)
def test_field_with_default_value(
self,
class_type: str,
tested_type: str,
init_dict: Dict[str, Any],
assignment_data: Any,
) -> None:
module: Any = import_module(class_type)
input_class = getattr(module, tested_type)
def validate(input_: Any, expected: Any) -> None:
conf = OmegaConf.structured(input_)
# Test access
assert conf.with_default == expected.with_default
assert conf.null_default is None
# Test that accessing a variable without a default value
# results in a MissingMandatoryValue exception
with pytest.raises(MissingMandatoryValue):
# noinspection PyStatementEffect
conf.mandatory_missing
# Test interpolation preserves type and value
assert type(conf.with_default) == type(conf.interpolation) # noqa E721
assert conf.with_default == conf.interpolation
# Test that assignment of illegal values
for illegal_value in assignment_data.illegal:
with pytest.raises(ValidationError):
conf.with_default = illegal_value
with pytest.raises(ValidationError):
conf.null_default = illegal_value
with pytest.raises(ValidationError):
conf.mandatory_missing = illegal_value
# Test assignment of legal values
for legal_value in assignment_data.legal:
expected_data = legal_value
if isinstance(legal_value, tuple):
expected_data = legal_value[1]
legal_value = legal_value[0]
conf.with_default = legal_value
conf.null_default = legal_value
conf.mandatory_missing = legal_value
msg = "Error: {} : {}".format(input_class.__name__, legal_value)
assert conf.with_default == expected_data, msg
assert conf.null_default == expected_data, msg
assert conf.mandatory_missing == expected_data, msg
validate(input_class, input_class())
validate(input_class(**init_dict), input_class(**init_dict))
@pytest.mark.parametrize( # type: ignore
"input_init, expected_init",
[
# attr class as class
(None, {}),
# attr class object with custom values
({"int_default": 30}, {"int_default": 30}),
# dataclass as class
(None, {}),
# dataclass as object with custom values
({"int_default": 30}, {"int_default": 30}),
],
)
def test_untyped(
self, class_type: str, input_init: Any, expected_init: Any
) -> None:
module: Any = import_module(class_type)
input_ = module.AnyTypeConfig
expected = input_(**expected_init)
if input_init is not None:
input_ = input_(**input_init)
conf = OmegaConf.structured(input_)
assert conf.null_default == expected.null_default
assert conf.int_default == expected.int_default
assert conf.float_default == expected.float_default
assert conf.str_default == expected.str_default
assert conf.bool_default == expected.bool_default
# yes, this is weird.
assert "mandatory_missing" in conf.keys() and "mandatory_missing" not in conf
with pytest.raises(MissingMandatoryValue):
# noinspection PyStatementEffect
conf.mandatory_missing
assert type(conf._get_node("null_default")) == AnyNode
assert type(conf._get_node("int_default")) == AnyNode
assert type(conf._get_node("float_default")) == AnyNode
assert type(conf._get_node("str_default")) == AnyNode
assert type(conf._get_node("bool_default")) == AnyNode
assert type(conf._get_node("mandatory_missing")) == AnyNode
assert conf.int_default == expected.int_default
with pytest.raises(ValidationError):
conf.typed_int_default = "foo"
values = [10, True, False, None, 1.0, -1.0, "10", float("inf")]
for val in values:
conf.null_default = val
conf.int_default = val
conf.float_default = val
conf.str_default = val
conf.bool_default = val
assert conf.null_default == val
assert conf.int_default == val
assert conf.float_default == val
assert conf.str_default == val
assert conf.bool_default == val
def test_interpolation(self, class_type: str) -> Any:
module: Any = import_module(class_type)
input_ = module.Interpolation()
conf = OmegaConf.structured(input_)
assert conf.x == input_.x
assert conf.z1 == conf.x
assert conf.z2 == f"{conf.x}_{conf.y}"
assert type(conf.x) == int
assert type(conf.y) == int
assert type(conf.z1) == int
assert type(conf.z2) == str
@pytest.mark.parametrize( # type: ignore
"tested_type",
[
"BoolOptional",
"IntegerOptional",
"FloatOptional",
"StringOptional",
"ListOptional",
"TupleOptional",
"EnumOptional",
"StructuredOptional",
"DictOptional",
],
)
def test_optional(self, class_type: str, tested_type: str) -> None:
module: Any = import_module(class_type)
input_ = getattr(module, tested_type)
obj = input_()
conf = OmegaConf.structured(input_)
# verify non-optional fields are rejecting None
with pytest.raises(ValidationError):
conf.not_optional = None
assert conf.as_none is None
assert conf.with_default == obj.with_default
# assign None to an optional field
conf.with_default = None
assert conf.with_default is None
def test_typed_list(self, class_type: str) -> None:
module: Any = import_module(class_type)
input_ = module.WithTypedList
conf = OmegaConf.structured(input_)
with pytest.raises(ValidationError):
conf.list[0] = "fail"
with pytest.raises(ValidationError):
conf.list.append("fail")
with pytest.raises(ValidationError):
cfg2 = OmegaConf.create({"list": ["fail"]})
OmegaConf.merge(conf, cfg2)
def test_typed_dict(self, class_type: str) -> None:
module: Any = import_module(class_type)
input_ = module.WithTypedDict
conf = OmegaConf.structured(input_)
with pytest.raises(ValidationError):
conf.dict["foo"] = "fail"
with pytest.raises(ValidationError):
OmegaConf.merge(conf, OmegaConf.create({"dict": {"foo": "fail"}}))
def test_merged_type1(self, class_type: str) -> None:
# Test that the merged type is that of the last merged config
module: Any = import_module(class_type)
input_ = module.WithTypedDict
conf = OmegaConf.structured(input_)
res = OmegaConf.merge(OmegaConf.create(), conf)
assert OmegaConf.get_type(res) == input_
def test_merged_type2(self, class_type: str) -> None:
# Test that the merged type is that of the last merged config
module: Any = import_module(class_type)
input_ = module.WithTypedDict
conf = OmegaConf.structured(input_)
res = OmegaConf.merge(conf, {"dict": {"foo": 99}})
assert OmegaConf.get_type(res) == input_
def test_merged_with_subclass(self, class_type: str) -> None:
# Test that the merged type is that of the last merged config
module: Any = import_module(class_type)
c1 = OmegaConf.structured(module.Plugin)
c2 = OmegaConf.structured(module.ConcretePlugin)
res = OmegaConf.merge(c1, c2)
assert OmegaConf.get_type(res) == module.ConcretePlugin
def test_merge_missing_structured_config_is_missing(self, class_type: str) -> None:
# Test that the merged type is that of the last merged config
module: Any = import_module(class_type)
c1 = OmegaConf.structured(module.MissingStructuredConfigField)
assert OmegaConf.is_missing(c1, "plugin")
c2 = OmegaConf.merge(c1, module.MissingStructuredConfigField)
assert OmegaConf.is_missing(c2, "plugin")
def test_merge_none_is_none(self, class_type: str) -> None:
# Test that the merged type is that of the last merged config
module: Any = import_module(class_type)
c1 = OmegaConf.structured(module.StructuredOptional)
assert c1.with_default == module.Nested()
c2 = OmegaConf.merge(c1, {"with_default": None})
assert OmegaConf.is_none(c2, "with_default")
def test_merge_with_subclass_into_missing(self, class_type: str) -> None:
module: Any = import_module(class_type)
base = OmegaConf.structured(module.PluginHolder)
assert _utils.get_ref_type(base, "missing") == module.Plugin
assert OmegaConf.get_type(base, "missing") is None
res = OmegaConf.merge(base, {"missing": module.Plugin})
assert OmegaConf.get_type(res) == module.PluginHolder
assert _utils.get_ref_type(base, "missing") == module.Plugin
assert OmegaConf.get_type(res, "missing") == module.Plugin
def test_merged_with_nons_subclass(self, class_type: str) -> None:
module: Any = import_module(class_type)
c1 = OmegaConf.structured(module.Plugin)
c2 = OmegaConf.structured(module.FaultyPlugin)
with pytest.raises(ValidationError):
OmegaConf.merge(c1, c2)
def test_merge_into_Dict(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.DictExamples)
res = OmegaConf.merge(cfg, {"strings": {"x": "abc"}})
assert res.strings == {"a": "foo", "b": "bar", "x": "abc"}
def test_merge_user_list_with_wrong_key(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.UserList)
with pytest.raises(ConfigKeyError):
OmegaConf.merge(cfg, {"list": [{"foo": "var"}]})
def test_merge_list_with_correct_type(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.UserList)
user = module.User(name="John", age=21)
res = OmegaConf.merge(cfg, {"list": [user]})
assert res.list == [user]
def test_merge_dict_with_wrong_type(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.UserDict)
with pytest.raises(ValidationError):
OmegaConf.merge(cfg, {"dict": {"foo": "var"}})
def test_merge_dict_with_correct_type(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.UserDict)
user = module.User(name="John", age=21)
res = OmegaConf.merge(cfg, {"dict": {"foo": user}})
assert res.dict == {"foo": user}
def test_typed_dict_key_error(self, class_type: str) -> None:
module: Any = import_module(class_type)
input_ = module.ErrorDictIntKey
with pytest.raises(KeyValidationError):
OmegaConf.structured(input_)
def test_typed_dict_value_error(self, class_type: str) -> None:
module: Any = import_module(class_type)
input_ = module.ErrorDictUnsupportedValue
with pytest.raises(ValidationError):
OmegaConf.structured(input_)
def test_typed_list_value_error(self, class_type: str) -> None:
module: Any = import_module(class_type)
input_ = module.ErrorListUnsupportedValue
with pytest.raises(ValidationError):
OmegaConf.structured(input_)
@pytest.mark.parametrize( # type: ignore
"example", ["ListExamples", "TupleExamples"]
)
def test_list_examples(self, class_type: str, example: str) -> None:
module: Any = import_module(class_type)
input_ = getattr(module, example)
conf = OmegaConf.structured(input_)
def test_any(name: str) -> None:
conf[name].append(True)
conf[name].extend([Color.RED, 3.1415])
conf[name][2] = False
assert conf[name] == [1, "foo", False, Color.RED, 3.1415]
# any and untyped
test_any("any")
# test ints
with pytest.raises(ValidationError):
conf.ints[0] = "foo"
conf.ints.append(10)
assert conf.ints == [1, 2, 10]
# test strings
conf.strings.append(Color.BLUE)
assert conf.strings == ["foo", "bar", "Color.BLUE"]
# test booleans
with pytest.raises(ValidationError):
conf.booleans[0] = "foo"
conf.booleans.append(True)
conf.booleans.append("off")
conf.booleans.append(1)
assert conf.booleans == [True, False, True, False, True]
# test colors
with pytest.raises(ValidationError):
conf.colors[0] = "foo"
conf.colors.append(Color.BLUE)
conf.colors.append("RED")
conf.colors.append("Color.GREEN")
conf.colors.append(3)
assert conf.colors == [
Color.RED,
Color.GREEN,
Color.BLUE,
Color.RED,
Color.GREEN,
Color.BLUE,
]
def test_dict_examples(self, class_type: str) -> None:
module: Any = import_module(class_type)
conf = OmegaConf.structured(module.DictExamples)
def test_any(name: str) -> None:
conf[name].c = True
conf[name].d = Color.RED
conf[name].e = 3.1415
assert conf[name] == {
"a": 1,
"b": "foo",
"c": True,
"d": Color.RED,
"e": 3.1415,
}
# any and untyped
test_any("any")
# test ints
with pytest.raises(ValidationError):
conf.ints.a = "foo"
conf.ints.c = 10
assert conf.ints == {"a": 10, "b": 20, "c": 10}
# test strings
conf.strings.c = Color.BLUE
assert conf.strings == {"a": "foo", "b": "bar", "c": "Color.BLUE"}
# tests booleans
with pytest.raises(ValidationError):
conf.booleans.a = "foo"
conf.booleans.c = True
conf.booleans.d = "off"
conf.booleans.e = 1
assert conf.booleans == {
"a": True,
"b": False,
"c": True,
"d": False,
"e": True,
}
# test colors
with pytest.raises(ValidationError):
conf.colors.foo = "foo"
conf.colors.c = Color.BLUE
conf.colors.d = "RED"
conf.colors.e = "Color.GREEN"
conf.colors.f = 3
assert conf.colors == {
"red": Color.RED,
"green": Color.GREEN,
"blue": Color.BLUE,
"c": Color.BLUE,
"d": Color.RED,
"e": Color.GREEN,
"f": Color.BLUE,
}
def test_enum_key(self, class_type: str) -> None:
module: Any = import_module(class_type)
conf = OmegaConf.structured(module.DictWithEnumKeys)
# When an Enum is a dictionary key the name of the Enum is actually used
# as the key
assert conf.enum_key.RED == "red"
assert conf.enum_key["GREEN"] == "green"
assert conf.enum_key[Color.GREEN] == "green"
conf.enum_key["BLUE"] = "Blue too"
assert conf.enum_key[Color.BLUE] == "Blue too"
with pytest.raises(KeyValidationError):
conf.enum_key["error"] = "error"
def test_dict_of_objects(self, class_type: str) -> None:
module: Any = import_module(class_type)
conf = OmegaConf.structured(module.DictOfObjects)
assert conf.users.joe.age == 18
assert conf.users.joe.name == "Joe"
conf.users.bond = module.User(name="James Bond", age=7)
assert conf.users.bond.name == "James Bond"
assert conf.users.bond.age == 7
with pytest.raises(ValidationError):
conf.users.fail = "fail"
def test_list_of_objects(self, class_type: str) -> None:
module: Any = import_module(class_type)
conf = OmegaConf.structured(module.ListOfObjects)
assert conf.users[0].age == 18
assert conf.users[0].name == "Joe"
conf.users.append(module.User(name="James Bond", age=7))
assert conf.users[1].name == "James Bond"
assert conf.users[1].age == 7
with pytest.raises(ValidationError):
conf.users.append("fail")
def test_promote_api(self, class_type: str) -> None:
module: Any = import_module(class_type)
conf = OmegaConf.create(module.AnyTypeConfig)
conf._promote(None)
assert conf == OmegaConf.create(module.AnyTypeConfig)
with pytest.raises(ValueError):
conf._promote(42)
assert conf == OmegaConf.create(module.AnyTypeConfig)
def test_promote_to_class(self, class_type: str) -> None:
module: Any = import_module(class_type)
conf = OmegaConf.create(module.AnyTypeConfig)
assert OmegaConf.get_type(conf) == module.AnyTypeConfig
conf._promote(module.BoolConfig)
assert OmegaConf.get_type(conf) == module.BoolConfig
assert conf.with_default is True
assert conf.null_default is None
assert OmegaConf.is_missing(conf, "mandatory_missing")
def test_promote_to_object(self, class_type: str) -> None:
module: Any = import_module(class_type)
conf = OmegaConf.create(module.AnyTypeConfig)
assert OmegaConf.get_type(conf) == module.AnyTypeConfig
conf._promote(module.BoolConfig(with_default=False))
assert OmegaConf.get_type(conf) == module.BoolConfig
assert conf.with_default is False
def test_set_key_with_with_dataclass(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.create({"foo": [1, 2]})
cfg.foo = module.ListClass()
def test_set_list_correct_type(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.ListClass)
value = [1, 2, 3]
cfg.list = value
cfg.tuple = value
assert cfg.list == value
assert cfg.tuple == value
@pytest.mark.parametrize("value", [1, True, "str", 3.1415, ["foo", True, 1.2]]) # type: ignore
def test_assign_wrong_type_to_list(self, class_type: str, value: Any) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.ListClass)
with pytest.raises(ValidationError):
cfg.list = value
with pytest.raises(ValidationError):
cfg.tuple = value
@pytest.mark.parametrize( # type: ignore
"value", [1, True, "str", 3.1415, ["foo", True, 1.2], {"foo": True}]
)
def test_assign_wrong_type_to_dict(self, class_type: str, value: Any) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.ConfigWithDict2)
with pytest.raises(ValidationError):
cfg.dict1 = value
def validate_frozen_impl(conf: DictConfig) -> None:
with pytest.raises(ReadonlyConfigError):
conf.x = 20
with pytest.raises(ReadonlyConfigError):
conf.list[0] = 10
with pytest.raises(ReadonlyConfigError):
conf.user.age = 20
# merge into is rejected because it mutates a readonly object
with pytest.raises(ReadonlyConfigError):
conf.merge_with({"user": {"name": "iceman"}})
# Normal merge is allowed.
ret = OmegaConf.merge(conf, {"user": {"name": "iceman"}})
assert ret == {"user": {"name": "iceman", "age": 10}, "x": 10, "list": [1, 2, 3]}
with pytest.raises(ReadonlyConfigError):
ret.user.age = 20
def test_attr_frozen() -> None:
from tests.structured_conf.data.attr_classes import FrozenClass
validate_frozen_impl(OmegaConf.structured(FrozenClass))
validate_frozen_impl(OmegaConf.structured(FrozenClass()))
def test_dataclass_frozen() -> None:
from tests.structured_conf.data.dataclasses import FrozenClass
validate_frozen_impl(OmegaConf.structured(FrozenClass))
validate_frozen_impl(OmegaConf.structured(FrozenClass()))
@pytest.mark.parametrize(
"class_type",
[
"tests.structured_conf.data.dataclasses",
"tests.structured_conf.data.attr_classes",
],
)
class TestDictSubclass:
def test_str2str(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.DictSubclass.Str2Str())
cfg.hello = "world"
assert cfg.hello == "world"
with pytest.raises(KeyValidationError):
cfg[Color.RED] = "fail"
def test_str2str_as_sub_node(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.create({"foo": module.DictSubclass.Str2Str})
assert OmegaConf.get_type(cfg.foo) == module.DictSubclass.Str2Str
assert _utils.get_ref_type(cfg.foo) == Optional[module.DictSubclass.Str2Str]
cfg.foo.hello = "world"
assert cfg.foo.hello == "world"
with pytest.raises(KeyValidationError):
cfg.foo[Color.RED] = "fail"
def test_color2str(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.DictSubclass.Color2Str())
cfg[Color.RED] = "red"
with pytest.raises(KeyValidationError):
cfg.greeen = "nope"
def test_color2color(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.DictSubclass.Color2Color())
# add key
cfg[Color.RED] = "GREEN"
assert cfg[Color.RED] == Color.GREEN
# replace key
cfg[Color.RED] = "RED"
assert cfg[Color.RED] == Color.RED
cfg[Color.BLUE] = Color.BLUE
assert cfg[Color.BLUE] == Color.BLUE
cfg.RED = Color.RED
assert cfg.RED == Color.RED
with pytest.raises(ValidationError):
# bad value
cfg[Color.GREEN] = 10
with pytest.raises(KeyValidationError):
# bad key
cfg.greeen = "nope"
def test_str2user(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.DictSubclass.Str2User())
cfg.bond = module.User(name="James Bond", age=7)
assert cfg.bond.name == "James Bond"
assert cfg.bond.age == 7
with pytest.raises(ValidationError):
# bad value
cfg.hello = "world"
with pytest.raises(KeyValidationError):
# bad key
cfg[Color.BLUE] = "nope"
def test_str2str_with_field(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.DictSubclass.Str2StrWithField())
assert cfg.foo == "bar"
cfg.hello = "world"
assert cfg.hello == "world"
with pytest.raises(KeyValidationError):
cfg[Color.RED] = "fail"
def test_str2int_with_field_of_different_type(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.DictSubclass.Str2IntWithStrField())
assert cfg.foo == "bar"
cfg.one = 1
assert cfg.one == 1
with pytest.raises(ValidationError):
# bad
cfg.hello = "world"
class TestErrors:
def test_usr2str(self, class_type: str) -> None:
module: Any = import_module(class_type)
with pytest.raises(KeyValidationError):
OmegaConf.structured(module.DictSubclass.Error.User2Str())
def test_construct_from_another_retain_node_types(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg1 = OmegaConf.create(module.User(name="James Bond", age=7))
with pytest.raises(ValidationError):
cfg1.age = "not a number"
cfg2 = OmegaConf.create(cfg1)
with pytest.raises(ValidationError):
cfg2.age = "not a number"
def test_nested_with_any_var_type(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.NestedWithAny)
assert cfg == {
"var": {
"with_default": 10,
"null_default": None,
"mandatory_missing": "???",
"interpolation": "${value_at_root}",
}
}
def test_noop_merge_into_frozen(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.ContainsFrozen)
ret = OmegaConf.merge(cfg, {"x": 20, "frozen": {}})
assert ret == {
"x": 20,
"frozen": {"user": {"name": "Bart", "age": 10}, "x": 10, "list": [1, 2, 3]},
}
def test_merge_into_none_list(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.ListOptional)
assert OmegaConf.merge(cfg, {"as_none": [4, 5, 6]}) == {
"with_default": [1, 2, 3],
"as_none": [4, 5, 6],
"not_optional": [1, 2, 3],
}
assert OmegaConf.merge(cfg, cfg) == cfg
def test_merge_into_none_dict(self, class_type: str) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.DictOptional)
assert OmegaConf.merge(cfg, {"as_none": {"x": 100}}) == {
"with_default": {"a": 10},
"as_none": {"x": 100},
"not_optional": {"a": 10},
}
assert OmegaConf.merge(cfg, cfg) == cfg
@pytest.mark.parametrize( # type: ignore
"update_value,expected",
[
pytest.param([], {"list": []}, id="empty"),
pytest.param(
[{"name": "Bond"}],
{"list": [{"name": "Bond", "age": "???"}]},
id="partial",
),
pytest.param(
[{"name": "Bond", "age": 7}],
{"list": [{"name": "Bond", "age": 7}]},
id="complete",
),
pytest.param(
[{"age": "double o seven"}],
pytest.raises(ValidationError),
id="complete",
),
],
)
def test_update_userlist(
self, class_type: str, update_value: Any, expected: Any
) -> None:
module: Any = import_module(class_type)
cfg = OmegaConf.structured(module.UserList)
if isinstance(expected, dict):
OmegaConf.update(cfg, "list", update_value, merge=True)
assert cfg == expected
else:
with pytest.raises(ValidationError):
OmegaConf.update(cfg, "list", update_value, merge=True)
|