File size: 32,443 Bytes
406662d | 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 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 | # Copyright (c) 2022-2026, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md).
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
from __future__ import annotations
# NOTE: While we don't actually use the simulation app in this test, we still need to launch it
# because warp is only available in the context of a running simulation
"""Launch Isaac Sim Simulator first."""
from isaaclab.app import AppLauncher
# launch omniverse app
simulation_app = AppLauncher(headless=True).app
"""Rest everything follows."""
import copy
import os
from collections.abc import Callable
from dataclasses import MISSING, asdict, field
from functools import wraps
from typing import Any, ClassVar
import pytest
import torch
from isaaclab.utils.configclass import configclass
from isaaclab.utils.dict import class_to_dict, dict_to_md5_hash, update_class_from_dict
from isaaclab.utils.io import dump_yaml, load_yaml
"""
Mock classes and functions.
"""
def dummy_function1() -> int:
"""Dummy function 1."""
return 1
def dummy_function2() -> int:
"""Dummy function 2."""
return 2
def dummy_wrapper(func):
"""Decorator for wrapping function."""
@wraps(func)
def wrapper():
return func() + 1
return wrapper
@dummy_wrapper
def wrapped_dummy_function3():
"""Dummy function 3."""
return 3
@dummy_wrapper
def wrapped_dummy_function4():
"""Dummy function 4."""
return 4
class DummyClass:
"""Dummy class."""
def __init__(self):
"""Initialize dummy class."""
self.a = 1
self.b = 2
"""
Dummy configuration: Basic
"""
def double(x):
"""Dummy function."""
return 2 * x
@configclass
class ModifierCfg:
params: dict[str, Any] = {"A": 1, "B": 2}
@configclass
class ViewerCfg:
eye: list = [7.5, 7.5, 7.5] # field missing on purpose
lookat: list = field(default_factory=lambda: [0.0, 0.0, 0.0])
@configclass
class EnvCfg:
num_envs: int = double(28) # uses function for assignment
episode_length: int = 2000
viewer: ViewerCfg = ViewerCfg()
@configclass
class RobotDefaultStateCfg:
pos = (0.0, 0.0, 0.0) # type annotation missing on purpose (immutable)
rot: tuple = (1.0, 0.0, 0.0, 0.0)
dof_pos: tuple = (0.0, 0.0, 0.0, 0.0, 0.0, 0.0)
dof_vel = [0.0, 0.0, 0.0, 0.0, 0.0, 1.0] # type annotation missing on purpose (mutable)
@configclass
class BasicDemoCfg:
"""Dummy configuration class."""
device_id: int = 0
env: EnvCfg = EnvCfg()
robot_default_state: RobotDefaultStateCfg = RobotDefaultStateCfg()
list_config = [ModifierCfg(), ModifierCfg(params={"A": 3, "B": 4})]
@configclass
class BasicDemoPostInitCfg:
"""Dummy configuration class."""
device_id: int = 0
env: EnvCfg = EnvCfg()
robot_default_state: RobotDefaultStateCfg = RobotDefaultStateCfg()
def __post_init__(self):
self.device_id = 1
self.add_variable = 3
@configclass
class BasicDemoTorchCfg:
"""Dummy configuration class with a torch tensor ."""
some_number: int = 0
some_tensor: torch.Tensor = torch.Tensor([1, 2, 3])
@configclass
class BasicActuatorCfg:
"""Dummy configuration class for ActuatorBase config."""
joint_names_expr: list[str] = ["some_string"]
joint_parameter_lookup: list[list[float]] = [[1, 2, 3], [4, 5, 6]]
stiffness: float = 1.0
damping: float = 2.0
"""
Dummy configuration to check type annotations ordering.
"""
@configclass
class TypeAnnotationOrderingDemoCfg:
"""Config class with type annotations."""
anymal: RobotDefaultStateCfg = RobotDefaultStateCfg()
unitree: RobotDefaultStateCfg = RobotDefaultStateCfg()
franka: RobotDefaultStateCfg = RobotDefaultStateCfg()
@configclass
class NonTypeAnnotationOrderingDemoCfg:
"""Config class without type annotations."""
anymal = RobotDefaultStateCfg()
unitree = RobotDefaultStateCfg()
franka = RobotDefaultStateCfg()
@configclass
class InheritedNonTypeAnnotationOrderingDemoCfg(NonTypeAnnotationOrderingDemoCfg):
"""Inherited config class without type annotations."""
pass
"""
Dummy configuration: Inheritance
"""
@configclass
class ParentDemoCfg:
"""Dummy parent configuration with missing fields."""
a: int = MISSING # add new missing field
b = 2 # type annotation missing on purpose
c: RobotDefaultStateCfg = MISSING # add new missing field
m: RobotDefaultStateCfg = RobotDefaultStateCfg() # Add class type with defaults
j: list[str] = MISSING # add new missing field
i: list[str] = MISSING # add new missing field
func: Callable = MISSING # add new missing field
@configclass
class ChildADemoCfg(ParentDemoCfg):
"""Dummy child configuration with missing fields."""
func = dummy_function1 # set default value for missing field
c = RobotDefaultStateCfg() # set default value for missing field
func_2: Callable = MISSING # add new missing field
d: int = MISSING # add new missing field
k: list[str] = ["c", "d"]
e: ViewerCfg = MISSING # add new missing field
dummy_class = DummyClass
def __post_init__(self):
self.b = 3 # change value of existing field
self.m.rot = (2.0, 0.0, 0.0, 0.0) # change value of default
self.i = ["a", "b"] # change value of existing field
@configclass
class ChildBDemoCfg(ParentDemoCfg):
"""Dummy child configuration to test inheritance across instances."""
a = 100 # set default value for missing field
j = ["3", "4"] # set default value for missing field
def __post_init__(self):
self.b = 8 # change value of existing field
self.i = ["1", "2"] # change value of existing field
@configclass
class ChildChildDemoCfg(ChildADemoCfg):
"""Dummy child configuration with missing fields."""
func_2 = dummy_function2
d = 2 # set default value for missing field
def __post_init__(self):
"""Post initialization function."""
super().__post_init__()
self.b = 4 # set default value for missing field
self.f = "new" # add new missing field
"""
Configuration with class inside.
"""
@configclass
class DummyClassCfg:
"""Dummy class configuration with class type."""
class_name_1: type = DummyClass
class_name_2: type[DummyClass] = DummyClass
class_name_3 = DummyClass
class_name_4: ClassVar[type[DummyClass]] = DummyClass
b: str = "dummy"
"""
Configuration with nested classes.
"""
@configclass
class OutsideClassCfg:
"""Outermost dummy configuration."""
@configclass
class InsideClassCfg:
"""Inner dummy configuration."""
@configclass
class InsideInsideClassCfg:
"""Dummy configuration with class type."""
u: list[int] = [1, 2, 3]
class_type: type = DummyClass
b: str = "dummy"
inside: InsideClassCfg = InsideClassCfg()
x: int = 20
def __post_init__(self):
self.inside.b = "dummy_changed"
"""
Dummy configuration: Functions
"""
@configclass
class FunctionsDemoCfg:
"""Dummy configuration class with functions as attributes."""
func = dummy_function1
wrapped_func = wrapped_dummy_function3
func_in_dict = {"func": dummy_function1}
@configclass
class FunctionImplementedDemoCfg:
"""Dummy configuration class with functions as attributes."""
func = dummy_function1
a: int = 5
k = 100.0
def set_a(self, a: int):
self.a = a
@configclass
class ClassFunctionImplementedDemoCfg:
"""Dummy configuration class with function members defined in the class."""
a: int = 5
def instance_method(self):
print("Value of a: ", self.a)
@classmethod
def class_method(cls, value: int) -> ClassFunctionImplementedDemoCfg:
return cls(a=value)
@property
def a_proxy(self) -> int:
return self.a
@a_proxy.setter
def a_proxy(self, value: int):
self.a = value
"""
Dummy configuration: Nested dictionaries
"""
@configclass
class NestedDictAndListCfg:
"""Dummy configuration class with nested dictionaries and lists."""
dict_1: dict = {"dict_2": {"func": dummy_function1}}
list_1: list[EnvCfg] = [EnvCfg(), EnvCfg()]
"""
Dummy configuration: Missing attributes
"""
@configclass
class MissingParentDemoCfg:
"""Dummy parent configuration with missing fields."""
a: int = MISSING
@configclass
class InsideClassCfg:
"""Inner dummy configuration."""
@configclass
class InsideInsideClassCfg:
"""Inner inner dummy configuration."""
a: str = MISSING
inside: str = MISSING
inside_dict = {"a": MISSING}
inside_nested_dict = {"a": {"b": "hello", "c": MISSING, "d": InsideInsideClassCfg()}}
inside_tuple = (10, MISSING, 20)
inside_list = [MISSING, MISSING, 2]
b: InsideClassCfg = InsideClassCfg()
@configclass
class MissingChildDemoCfg(MissingParentDemoCfg):
"""Dummy child configuration with missing fields."""
c: Callable = MISSING
d: int | None = None
e: dict = {}
"""
Test solutions: Basic
"""
basic_demo_cfg_correct = {
"env": {"num_envs": 56, "episode_length": 2000, "viewer": {"eye": [7.5, 7.5, 7.5], "lookat": [0.0, 0.0, 0.0]}},
"robot_default_state": {
"pos": (0.0, 0.0, 0.0),
"rot": (1.0, 0.0, 0.0, 0.0),
"dof_pos": (0.0, 0.0, 0.0, 0.0, 0.0, 0.0),
"dof_vel": [0.0, 0.0, 0.0, 0.0, 0.0, 1.0],
},
"device_id": 0,
"list_config": [{"params": {"A": 1, "B": 2}}, {"params": {"A": 3, "B": 4}}],
}
basic_demo_cfg_change_correct = {
"env": {"num_envs": 22, "episode_length": 2000, "viewer": {"eye": (2.0, 2.0, 2.0), "lookat": [0.0, 0.0, 0.0]}},
"robot_default_state": {
"pos": (0.0, 0.0, 0.0),
"rot": (1.0, 0.0, 0.0, 0.0),
"dof_pos": (0.0, 0.0, 0.0, 0.0, 0.0, 0.0),
"dof_vel": [0.0, 0.0, 0.0, 0.0, 0.0, 1.0],
},
"device_id": 0,
"list_config": [{"params": {"A": 1, "B": 2}}, {"params": {"A": 3, "B": 4}}],
}
basic_demo_cfg_change_with_none_correct = {
"env": {"num_envs": 22, "episode_length": 2000, "viewer": None},
"robot_default_state": {
"pos": (0.0, 0.0, 0.0),
"rot": (1.0, 0.0, 0.0, 0.0),
"dof_pos": (0.0, 0.0, 0.0, 0.0, 0.0, 0.0),
"dof_vel": [0.0, 0.0, 0.0, 0.0, 0.0, 1.0],
},
"device_id": 0,
"list_config": [{"params": {"A": 1, "B": 2}}, {"params": {"A": 3, "B": 4}}],
}
basic_demo_cfg_change_with_tuple_correct = {
"env": {"num_envs": 56, "episode_length": 2000, "viewer": {"eye": [7.5, 7.5, 7.5], "lookat": [0.0, 0.0, 0.0]}},
"robot_default_state": {
"pos": (0.0, 0.0, 0.0),
"rot": (1.0, 0.0, 0.0, 0.0),
"dof_pos": (0.0, 0.0, 0.0, 0.0, 0.0, 0.0),
"dof_vel": [0.0, 0.0, 0.0, 0.0, 0.0, 1.0],
},
"device_id": 0,
"list_config": [{"params": {"A": -1, "B": -2}}, {"params": {"A": -3, "B": -4}}],
}
basic_demo_cfg_nested_dict_and_list = {
"dict_1": {
"dict_2": {"func": dummy_function2},
},
"list_1": [
{"num_envs": 23, "episode_length": 3000, "viewer": {"eye": [5.0, 5.0, 5.0], "lookat": [0.0, 0.0, 0.0]}},
{"num_envs": 24, "episode_length": 2000, "viewer": {"eye": [6.0, 6.0, 6.0], "lookat": [0.0, 0.0, 0.0]}},
],
}
basic_demo_post_init_cfg_correct = {
"env": {"num_envs": 56, "episode_length": 2000, "viewer": {"eye": [7.5, 7.5, 7.5], "lookat": [0.0, 0.0, 0.0]}},
"robot_default_state": {
"pos": (0.0, 0.0, 0.0),
"rot": (1.0, 0.0, 0.0, 0.0),
"dof_pos": (0.0, 0.0, 0.0, 0.0, 0.0, 0.0),
"dof_vel": [0.0, 0.0, 0.0, 0.0, 0.0, 1.0],
},
"device_id": 1,
"add_variable": 3,
}
"""
Test solutions: Functions
"""
functions_demo_cfg_correct = {
"func": "test_configclass:dummy_function1",
"wrapped_func": "test_configclass:wrapped_dummy_function3",
"func_in_dict": {"func": "test_configclass:dummy_function1"},
}
functions_demo_cfg_for_updating = {
"func": "test_configclass:dummy_function2",
"wrapped_func": "test_configclass:wrapped_dummy_function4",
"func_in_dict": {"func": "test_configclass:dummy_function2"},
}
"""
Test solutions: Missing attributes
"""
validity_expected_fields = [
"a",
"b.inside",
"b.inside_dict.a",
"b.inside_nested_dict.a.c",
"b.inside_nested_dict.a.d.a",
"b.inside_tuple[1]",
"b.inside_list[0]",
"b.inside_list[1]",
"c",
]
"""
Test fixtures.
"""
def test_str():
"""Test printing the configuration."""
cfg = BasicDemoCfg()
print()
print(cfg)
def test_str_dict():
"""Test printing the configuration using dataclass utility."""
cfg = BasicDemoCfg()
print()
print("Using dataclass function: ", asdict(cfg))
print("Using internal function: ", cfg.to_dict())
assert asdict(cfg) == cfg.to_dict()
def test_dict_conversion():
"""Test dictionary conversion of configclass instance."""
cfg = BasicDemoCfg()
# dataclass function
assert asdict(cfg) == basic_demo_cfg_correct
assert asdict(cfg.env) == basic_demo_cfg_correct["env"]
# utility function
assert class_to_dict(cfg) == basic_demo_cfg_correct
assert class_to_dict(cfg.env) == basic_demo_cfg_correct["env"]
# internal function
assert cfg.to_dict() == basic_demo_cfg_correct
assert cfg.env.to_dict() == basic_demo_cfg_correct["env"]
torch_cfg = BasicDemoTorchCfg()
torch_cfg_dict = torch_cfg.to_dict()
# We have to do a manual check because torch.Tensor does not work with assertDictEqual.
assert torch_cfg_dict["some_number"] == 0
assert torch.all(torch_cfg_dict["some_tensor"] == torch.tensor([1, 2, 3]))
def test_actuator_cfg_dict_conversion():
"""Test dict conversion of ActuatorConfig."""
# create a basic RemotizedPDActuator config
actuator_cfg = BasicActuatorCfg()
# return writable attributes of config object
actuator_cfg_dict_attr = actuator_cfg.__dict__
# check if __dict__ attribute of config is not empty
assert len(actuator_cfg_dict_attr) > 0
# class_to_dict utility function should return a primitive dictionary
actuator_cfg_dict = class_to_dict(actuator_cfg)
assert isinstance(actuator_cfg_dict, dict)
def test_dict_conversion_order():
"""Tests that order is conserved when converting to dictionary."""
true_outer_order = ["device_id", "env", "robot_default_state", "list_config"]
true_env_order = ["num_envs", "episode_length", "viewer"]
# create config
cfg = BasicDemoCfg()
# check ordering
for label, parsed_value in zip(true_outer_order, cfg.__dict__.keys()):
assert label == parsed_value
for label, parsed_value in zip(true_env_order, cfg.env.__dict__.keys()):
assert label == parsed_value
# convert config to dictionary
cfg_dict = class_to_dict(cfg)
# check ordering
for label, parsed_value in zip(true_outer_order, cfg_dict.keys()):
assert label == parsed_value
for label, parsed_value in zip(true_env_order, cfg_dict["env"].keys()):
assert label == parsed_value
# check ordering when copied
cfg_dict_copied = copy.deepcopy(cfg_dict)
cfg_dict_copied.pop("list_config")
# check ordering
for label, parsed_value in zip(true_outer_order, cfg_dict_copied.keys()):
assert label == parsed_value
for label, parsed_value in zip(true_env_order, cfg_dict_copied["env"].keys()):
assert label == parsed_value
def test_config_update_via_constructor():
"""Test updating configclass through initialization."""
cfg = BasicDemoCfg(env=EnvCfg(num_envs=22, viewer=ViewerCfg(eye=(2.0, 2.0, 2.0))))
assert asdict(cfg) == basic_demo_cfg_change_correct
def test_config_update_after_init():
"""Test updating configclass using instance members."""
cfg = BasicDemoCfg()
cfg.env.num_envs = 22
cfg.env.viewer.eye = (2.0, 2.0, 2.0) # note: changes from list to tuple
assert asdict(cfg) == basic_demo_cfg_change_correct
def test_config_update_dict():
"""Test updating configclass using dictionary."""
cfg = BasicDemoCfg()
cfg_dict = {"env": {"num_envs": 22, "viewer": {"eye": (2.0, 2.0, 2.0)}}}
update_class_from_dict(cfg, cfg_dict)
assert asdict(cfg) == basic_demo_cfg_change_correct
# check types are also correct
assert isinstance(cfg.env.viewer, ViewerCfg)
assert isinstance(cfg.env.viewer.eye, tuple)
def test_config_update_dict_with_none():
"""Test updating configclass using a dictionary that contains None."""
cfg = BasicDemoCfg()
cfg_dict = {"env": {"num_envs": 22, "viewer": None}}
update_class_from_dict(cfg, cfg_dict)
assert asdict(cfg) == basic_demo_cfg_change_with_none_correct
def test_config_update_dict_tuple():
"""Test updating configclass using a dictionary that modifies a tuple."""
cfg = BasicDemoCfg()
cfg_dict = {"list_config": [{"params": {"A": -1, "B": -2}}, {"params": {"A": -3, "B": -4}}]}
update_class_from_dict(cfg, cfg_dict)
assert asdict(cfg) == basic_demo_cfg_change_with_tuple_correct
def test_config_update_nested_dict():
"""Test updating configclass with sub-dictionaries."""
cfg = NestedDictAndListCfg()
cfg_dict = {
"dict_1": {"dict_2": {"func": "test_configclass:dummy_function2"}},
"list_1": [
{"num_envs": 23, "episode_length": 3000, "viewer": {"eye": [5.0, 5.0, 5.0]}},
{"num_envs": 24, "viewer": {"eye": [6.0, 6.0, 6.0]}},
],
}
update_class_from_dict(cfg, cfg_dict)
assert asdict(cfg) == basic_demo_cfg_nested_dict_and_list
# check types are also correct
assert isinstance(cfg.list_1[0], EnvCfg)
assert isinstance(cfg.list_1[1], EnvCfg)
assert isinstance(cfg.list_1[0].viewer, ViewerCfg)
assert isinstance(cfg.list_1[1].viewer, ViewerCfg)
def test_config_update_different_iterable_lengths():
"""Iterables are whole replaced, even if their lengths are different."""
# original cfg has length-6 tuple and list
cfg = RobotDefaultStateCfg()
assert cfg.dof_pos == (0.0, 0.0, 0.0, 0.0, 0.0, 0.0)
assert cfg.dof_vel == [0.0, 0.0, 0.0, 0.0, 0.0, 1.0]
# patch uses different lengths
patch = {
"dof_pos": (1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0), # longer tuple
"dof_vel": [9.0, 8.0, 7.0], # shorter list
}
# should not raise
update_class_from_dict(cfg, patch)
# whole sequences are replaced
assert cfg.dof_pos == (1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0)
assert cfg.dof_vel == [9.0, 8.0, 7.0]
def test_config_update_dict_using_internal():
"""Test updating configclass from a dictionary using configclass method."""
cfg = BasicDemoCfg()
cfg_dict = {"env": {"num_envs": 22, "viewer": {"eye": (2.0, 2.0, 2.0)}}}
cfg.from_dict(cfg_dict)
assert cfg.to_dict() == basic_demo_cfg_change_correct
def test_config_update_dict_using_post_init():
cfg = BasicDemoPostInitCfg()
assert cfg.to_dict() == basic_demo_post_init_cfg_correct
def test_invalid_update_key():
"""Test invalid key update."""
cfg = BasicDemoCfg()
cfg_dict = {"env": {"num_envs": 22, "viewer": {"pos": (2.0, 2.0, 2.0)}}}
with pytest.raises(KeyError):
update_class_from_dict(cfg, cfg_dict)
def test_multiple_instances():
"""Test multiple instances with twice instantiation."""
# create two config instances
cfg1 = BasicDemoCfg()
cfg2 = BasicDemoCfg()
# check variables
# mutable -- variables should be different
assert id(cfg1.env.viewer.eye) != id(cfg2.env.viewer.eye)
assert id(cfg1.env.viewer.lookat) != id(cfg2.env.viewer.lookat)
assert id(cfg1.robot_default_state) != id(cfg2.robot_default_state)
# immutable -- variables are the same
assert id(cfg1.robot_default_state.dof_pos) == id(cfg2.robot_default_state.dof_pos)
assert id(cfg1.env.num_envs) == id(cfg2.env.num_envs)
assert id(cfg1.device_id) == id(cfg2.device_id)
# check values
assert cfg1.env.to_dict() == cfg2.env.to_dict()
assert cfg1.robot_default_state.to_dict() == cfg2.robot_default_state.to_dict()
def test_alter_values_multiple_instances():
"""Test alterations in multiple instances of the same configclass."""
# create two config instances
cfg1 = BasicDemoCfg()
cfg2 = BasicDemoCfg()
# alter configurations
cfg1.env.num_envs = 22 # immutable data: int
cfg1.env.viewer.eye[0] = 1.0 # mutable data: list
cfg1.env.viewer.lookat[2] = 12.0 # mutable data: list
# check variables
# values should be different
assert cfg1.env.num_envs != cfg2.env.num_envs
assert cfg1.env.viewer.eye != cfg2.env.viewer.eye
assert cfg1.env.viewer.lookat != cfg2.env.viewer.lookat
# mutable -- variables are different ids
assert id(cfg1.env.viewer.eye) != id(cfg2.env.viewer.eye)
assert id(cfg1.env.viewer.lookat) != id(cfg2.env.viewer.lookat)
# immutable -- altered variables are different ids
assert id(cfg1.env.num_envs) != id(cfg2.env.num_envs)
def test_multiple_instances_with_replace():
"""Test multiple instances with creation through replace function."""
# create two config instances
cfg1 = BasicDemoCfg()
cfg2 = cfg1.replace()
# check variable IDs
# mutable -- variables should be different
assert id(cfg1.env.viewer.eye) != id(cfg2.env.viewer.eye)
assert id(cfg1.env.viewer.lookat) != id(cfg2.env.viewer.lookat)
assert id(cfg1.robot_default_state) != id(cfg2.robot_default_state)
# immutable -- variables are the same
assert id(cfg1.robot_default_state.dof_pos) == id(cfg2.robot_default_state.dof_pos)
assert id(cfg1.env.num_envs) == id(cfg2.env.num_envs)
assert id(cfg1.device_id) == id(cfg2.device_id)
# check values
assert cfg1.to_dict() == cfg2.to_dict()
def test_alter_values_multiple_instances_wth_replace():
"""Test alterations in multiple instances through replace function."""
# create two config instances
cfg1 = BasicDemoCfg()
cfg2 = cfg1.replace(device_id=1)
# alter configurations
cfg1.env.num_envs = 22 # immutable data: int
cfg1.env.viewer.eye[0] = 1.0 # mutable data: list
cfg1.env.viewer.lookat[2] = 12.0 # mutable data: list
# check variables
# values should be different
assert cfg1.env.num_envs != cfg2.env.num_envs
assert cfg1.env.viewer.eye != cfg2.env.viewer.eye
assert cfg1.env.viewer.lookat != cfg2.env.viewer.lookat
# mutable -- variables are different ids
assert id(cfg1.env.viewer.eye) != id(cfg2.env.viewer.eye)
assert id(cfg1.env.viewer.lookat) != id(cfg2.env.viewer.lookat)
# immutable -- altered variables are different ids
assert id(cfg1.env.num_envs) != id(cfg2.env.num_envs)
assert id(cfg1.device_id) != id(cfg2.device_id)
def test_configclass_type_ordering():
"""Checks ordering of config objects when no type annotation is provided."""
cfg_1 = TypeAnnotationOrderingDemoCfg()
cfg_2 = NonTypeAnnotationOrderingDemoCfg()
cfg_3 = InheritedNonTypeAnnotationOrderingDemoCfg()
# check ordering
assert list(cfg_1.__dict__.keys()) == list(cfg_2.__dict__.keys())
assert list(cfg_3.__dict__.keys()) == list(cfg_2.__dict__.keys())
assert list(cfg_1.__dict__.keys()) == list(cfg_3.__dict__.keys())
def test_functions_config():
"""Tests having functions as values in the configuration instance."""
cfg = FunctionsDemoCfg()
# check types
assert cfg.__annotations__["func"] is type(dummy_function1)
assert cfg.__annotations__["wrapped_func"] is type(wrapped_dummy_function3)
assert cfg.__annotations__["func_in_dict"] is dict
# check calling
assert cfg.func() == 1
assert cfg.wrapped_func() == 4
assert cfg.func_in_dict["func"]() == 1
def test_function_impl_config():
"""Tests having function defined in the class instance."""
cfg = FunctionImplementedDemoCfg()
# change value
assert cfg.a == 5
cfg.set_a(10)
assert cfg.a == 10
def test_class_function_impl_config():
"""Tests having class function defined in the class instance."""
cfg = ClassFunctionImplementedDemoCfg()
# check that the annotations are correct
assert cfg.__annotations__ == {"a": "int"}
# check all methods are callable
cfg.instance_method()
new_cfg1 = cfg.class_method(20)
# check value is correct
assert new_cfg1.a == 20
# create the same config instance using class method
new_cfg2 = ClassFunctionImplementedDemoCfg.class_method(20)
# check value is correct
assert new_cfg2.a == 20
def test_class_property_impl_config():
"""Tests having class property defined in the class instance."""
cfg = ClassFunctionImplementedDemoCfg()
# check that the annotations are correct
assert cfg.__annotations__ == {"a": "int"}
# check all methods are callable
cfg.instance_method()
# check value is correct
assert cfg.a == 5
assert cfg.a_proxy == 5
# set through property
cfg.a_proxy = 10
assert cfg.a == 10
assert cfg.a_proxy == 10
def test_dict_conversion_functions_config():
"""Tests conversion of config with functions into dictionary."""
cfg = FunctionsDemoCfg()
cfg_dict = class_to_dict(cfg)
assert cfg_dict["func"] == functions_demo_cfg_correct["func"]
assert cfg_dict["wrapped_func"] == functions_demo_cfg_correct["wrapped_func"]
assert cfg_dict["func_in_dict"]["func"] == functions_demo_cfg_correct["func_in_dict"]["func"]
def test_update_functions_config_with_functions():
"""Tests updating config with functions."""
cfg = FunctionsDemoCfg()
# update config
update_class_from_dict(cfg, functions_demo_cfg_for_updating)
# check calling
assert cfg.func() == 2
assert cfg.wrapped_func() == 5
assert cfg.func_in_dict["func"]() == 2
def test_missing_type_in_config():
"""Tests missing type annotation in config.
Should complain that 'c' is missing type annotation since it cannot be inferred
from 'MISSING' value.
"""
with pytest.raises(TypeError):
@configclass
class MissingTypeDemoCfg:
a: int = 1
b = 2
c = MISSING
def test_missing_default_value_in_config():
"""Tests missing default value in config.
Should complain that 'a' is missing default value since it cannot be inferred
from type annotation.
"""
with pytest.raises(ValueError):
@configclass
class MissingTypeDemoCfg:
a: int
b = 2
def test_required_argument_for_missing_type_in_config():
"""Tests required positional argument for missing type annotation in config creation."""
@configclass
class MissingTypeDemoCfg:
a: int = 1
b = 2
c: int = MISSING
# should complain that 'c' is missed in positional arguments
# TODO: Uncomment this when we move to 3.10.
# with self.assertRaises(TypeError):
# cfg = MissingTypeDemoCfg(a=1)
# should not complain
cfg = MissingTypeDemoCfg(a=1, c=3)
assert cfg.a == 1
assert cfg.b == 2
def test_config_inheritance():
"""Tests that inheritance works properly."""
# check variables
cfg_a = ChildADemoCfg(a=20, d=3, e=ViewerCfg(), j=["c", "d"])
assert cfg_a.func == dummy_function1
assert cfg_a.a == 20
assert cfg_a.d == 3
assert cfg_a.j == ["c", "d"]
# check post init
assert cfg_a.b == 3
assert cfg_a.i == ["a", "b"]
assert cfg_a.m.rot == (2.0, 0.0, 0.0, 0.0)
def test_config_inheritance_independence():
"""Tests that subclass instantions have fully unique members,
rather than references to members of the parent class"""
# instantiate two classes which inherit from a shared parent,
# but which will differently modify their members in their
# __init__ and __post_init__
cfg_a = ChildADemoCfg()
cfg_b = ChildBDemoCfg()
# Test various combinations of initialization
# and defaults across inherited members in
# instances to verify independence between the subclasses
assert isinstance(cfg_a.a, type(MISSING))
assert cfg_b.a == 100
assert cfg_a.b == 3
assert cfg_b.b == 8
assert cfg_a.c == RobotDefaultStateCfg()
assert isinstance(cfg_b.c, type(MISSING))
assert cfg_a.m.rot == (2.0, 0.0, 0.0, 0.0)
assert cfg_b.m.rot == (1.0, 0.0, 0.0, 0.0)
assert isinstance(cfg_a.j, type(MISSING))
assert cfg_b.j == ["3", "4"]
assert cfg_a.i == ["a", "b"]
assert cfg_b.i == ["1", "2"]
assert cfg_a.func == dummy_function1
assert isinstance(cfg_b.func, type(MISSING))
# Explicitly assert that members are not the same object
# for different levels and kinds of data types
assert cfg_a.m != cfg_b.m
assert cfg_a.m.rot != cfg_b.m.rot
assert cfg_a.i != cfg_b.i
assert cfg_a.b != cfg_b.b
def test_config_double_inheritance():
"""Tests that inheritance works properly when inheriting twice."""
# check variables
cfg = ChildChildDemoCfg(a=20, d=3, e=ViewerCfg(), j=["c", "d"])
assert cfg.func == dummy_function1
assert cfg.func_2 == dummy_function2
assert cfg.a == 20
assert cfg.d == 3
assert cfg.j == ["c", "d"]
# check post init
assert cfg.b == 4
assert cfg.f == "new"
assert cfg.i == ["a", "b"]
def test_config_with_class_type():
"""Tests that configclass works properly with class type."""
cfg = DummyClassCfg()
# since python 3.10, annotations are stored as strings
annotations = {k: eval(v) if isinstance(v, str) else v for k, v in cfg.__annotations__.items()}
# check types
assert annotations["class_name_1"] is type
assert annotations["class_name_2"] == type[DummyClass]
assert annotations["class_name_3"] == type[DummyClass]
assert annotations["class_name_4"] is ClassVar[type[DummyClass]]
# check values
assert cfg.class_name_1 == DummyClass
assert cfg.class_name_2 == DummyClass
assert cfg.class_name_3 == DummyClass
assert cfg.class_name_4 == DummyClass
assert cfg.b == "dummy"
def test_nested_config_class_declarations():
"""Tests that configclass works properly with nested class class declarations."""
cfg = OutsideClassCfg()
# check types
assert "InsideClassCfg" not in cfg.__annotations__
assert "InsideClassCfg" not in OutsideClassCfg.__annotations__
assert "InsideInsideClassCfg" not in OutsideClassCfg.InsideClassCfg.__annotations__
assert "InsideInsideClassCfg" not in cfg.inside.__annotations__
# check values
assert cfg.inside.class_type == DummyClass
assert cfg.inside.b == "dummy_changed"
assert cfg.x == 20
def test_config_dumping():
"""Check that config dumping works properly."""
# file for dumping
dirname = os.path.dirname(os.path.abspath(__file__))
filename = os.path.join(dirname, "output", "configclass", "test_config.yaml")
# create config
cfg = ChildADemoCfg(a=20, d=3, e=ViewerCfg(), j=["c", "d"])
# save config
dump_yaml(filename, cfg)
# load config
cfg_loaded = load_yaml(filename)
# check dictionaries are the same
assert list(cfg.to_dict().keys()) == list(cfg_loaded.keys())
assert cfg.to_dict() == cfg_loaded
# save config with sorted order won't work!
# save config
dump_yaml(filename, cfg, sort_keys=True)
# load config
cfg_loaded = load_yaml(filename)
# check dictionaries are the same
assert list(cfg.to_dict().keys()) != list(cfg_loaded.keys())
assert cfg.to_dict() == cfg_loaded
def test_config_md5_hash():
"""Check that config md5 hash generation works properly."""
# create config
cfg = ChildADemoCfg(a=20, d=3, e=ViewerCfg(), j=["c", "d"])
# generate md5 hash
md5_hash_1 = dict_to_md5_hash(cfg.to_dict())
md5_hash_2 = dict_to_md5_hash(cfg.to_dict())
assert md5_hash_1 == md5_hash_2
def test_validity():
"""Check that invalid configurations raise errors."""
cfg = MissingChildDemoCfg()
with pytest.raises(TypeError) as context:
cfg.validate()
# check that the expected missing fields are in the error message
error_message = str(context.value)
for elem in validity_expected_fields:
assert elem in error_message
# check that no more than the expected missing fields are in the error message
assert len(error_message.split("\n")) - 2 == len(validity_expected_fields)
|