| | |
| | |
| | |
| | |
| |
|
| | from __future__ import annotations |
| |
|
| | |
| | |
| | """Launch Isaac Sim Simulator first.""" |
| |
|
| | from isaaclab.app import AppLauncher |
| |
|
| | |
| | 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] |
| | lookat: list = field(default_factory=lambda: [0.0, 0.0, 0.0]) |
| |
|
| |
|
| | @configclass |
| | class EnvCfg: |
| | num_envs: int = double(28) |
| | episode_length: int = 2000 |
| | viewer: ViewerCfg = ViewerCfg() |
| |
|
| |
|
| | @configclass |
| | class RobotDefaultStateCfg: |
| | pos = (0.0, 0.0, 0.0) |
| | 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] |
| |
|
| |
|
| | @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 |
| | b = 2 |
| | c: RobotDefaultStateCfg = MISSING |
| | m: RobotDefaultStateCfg = RobotDefaultStateCfg() |
| | j: list[str] = MISSING |
| | i: list[str] = MISSING |
| | func: Callable = MISSING |
| |
|
| |
|
| | @configclass |
| | class ChildADemoCfg(ParentDemoCfg): |
| | """Dummy child configuration with missing fields.""" |
| |
|
| | func = dummy_function1 |
| | c = RobotDefaultStateCfg() |
| |
|
| | func_2: Callable = MISSING |
| | d: int = MISSING |
| | k: list[str] = ["c", "d"] |
| | e: ViewerCfg = MISSING |
| |
|
| | dummy_class = DummyClass |
| |
|
| | def __post_init__(self): |
| | self.b = 3 |
| | self.m.rot = (2.0, 0.0, 0.0, 0.0) |
| | self.i = ["a", "b"] |
| |
|
| |
|
| | @configclass |
| | class ChildBDemoCfg(ParentDemoCfg): |
| | """Dummy child configuration to test inheritance across instances.""" |
| |
|
| | a = 100 |
| | j = ["3", "4"] |
| |
|
| | def __post_init__(self): |
| | self.b = 8 |
| | self.i = ["1", "2"] |
| |
|
| |
|
| | @configclass |
| | class ChildChildDemoCfg(ChildADemoCfg): |
| | """Dummy child configuration with missing fields.""" |
| |
|
| | func_2 = dummy_function2 |
| | d = 2 |
| |
|
| | def __post_init__(self): |
| | """Post initialization function.""" |
| | super().__post_init__() |
| | self.b = 4 |
| | self.f = "new" |
| |
|
| |
|
| | """ |
| | 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() |
| | |
| | assert asdict(cfg) == basic_demo_cfg_correct |
| | assert asdict(cfg.env) == basic_demo_cfg_correct["env"] |
| | |
| | assert class_to_dict(cfg) == basic_demo_cfg_correct |
| | assert class_to_dict(cfg.env) == basic_demo_cfg_correct["env"] |
| | |
| | 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() |
| | |
| | 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.""" |
| | |
| | actuator_cfg = BasicActuatorCfg() |
| | |
| | actuator_cfg_dict_attr = actuator_cfg.__dict__ |
| | |
| | assert len(actuator_cfg_dict_attr) > 0 |
| | |
| | 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"] |
| | |
| | cfg = BasicDemoCfg() |
| | |
| | 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 |
| | |
| | cfg_dict = class_to_dict(cfg) |
| | |
| | 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 |
| | |
| | cfg_dict_copied = copy.deepcopy(cfg_dict) |
| | cfg_dict_copied.pop("list_config") |
| | |
| | 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) |
| | 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 |
| |
|
| | |
| | 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 |
| |
|
| | |
| | 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.""" |
| |
|
| | |
| | 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 = { |
| | "dof_pos": (1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0), |
| | "dof_vel": [9.0, 8.0, 7.0], |
| | } |
| |
|
| | |
| | update_class_from_dict(cfg, patch) |
| |
|
| | |
| | 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.""" |
| | |
| | cfg1 = BasicDemoCfg() |
| | cfg2 = BasicDemoCfg() |
| |
|
| | |
| | |
| | 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) |
| | |
| | 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) |
| |
|
| | |
| | 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.""" |
| | |
| | cfg1 = BasicDemoCfg() |
| | cfg2 = BasicDemoCfg() |
| |
|
| | |
| | cfg1.env.num_envs = 22 |
| | cfg1.env.viewer.eye[0] = 1.0 |
| | cfg1.env.viewer.lookat[2] = 12.0 |
| |
|
| | |
| | |
| | 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 |
| | |
| | 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.env.num_envs) != id(cfg2.env.num_envs) |
| |
|
| |
|
| | def test_multiple_instances_with_replace(): |
| | """Test multiple instances with creation through replace function.""" |
| | |
| | cfg1 = BasicDemoCfg() |
| | cfg2 = cfg1.replace() |
| |
|
| | |
| | |
| | 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) |
| | |
| | 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) |
| |
|
| | |
| | assert cfg1.to_dict() == cfg2.to_dict() |
| |
|
| |
|
| | def test_alter_values_multiple_instances_wth_replace(): |
| | """Test alterations in multiple instances through replace function.""" |
| | |
| | cfg1 = BasicDemoCfg() |
| | cfg2 = cfg1.replace(device_id=1) |
| |
|
| | |
| | cfg1.env.num_envs = 22 |
| | cfg1.env.viewer.eye[0] = 1.0 |
| | cfg1.env.viewer.lookat[2] = 12.0 |
| |
|
| | |
| | |
| | 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 |
| | |
| | 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.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() |
| |
|
| | |
| | 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() |
| | |
| | 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 |
| | |
| | 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() |
| | |
| | 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() |
| |
|
| | |
| | assert cfg.__annotations__ == {"a": "int"} |
| |
|
| | |
| | cfg.instance_method() |
| | new_cfg1 = cfg.class_method(20) |
| | |
| | assert new_cfg1.a == 20 |
| |
|
| | |
| | new_cfg2 = ClassFunctionImplementedDemoCfg.class_method(20) |
| | |
| | assert new_cfg2.a == 20 |
| |
|
| |
|
| | def test_class_property_impl_config(): |
| | """Tests having class property defined in the class instance.""" |
| | cfg = ClassFunctionImplementedDemoCfg() |
| |
|
| | |
| | assert cfg.__annotations__ == {"a": "int"} |
| |
|
| | |
| | cfg.instance_method() |
| |
|
| | |
| | assert cfg.a == 5 |
| | assert cfg.a_proxy == 5 |
| |
|
| | |
| | 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_class_from_dict(cfg, functions_demo_cfg_for_updating) |
| | |
| | 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 |
| |
|
| | |
| | |
| | |
| | |
| | |
| | cfg = MissingTypeDemoCfg(a=1, c=3) |
| |
|
| | assert cfg.a == 1 |
| | assert cfg.b == 2 |
| |
|
| |
|
| | def test_config_inheritance(): |
| | """Tests that inheritance works properly.""" |
| | |
| | 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"] |
| |
|
| | |
| | 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""" |
| | |
| | |
| | |
| | cfg_a = ChildADemoCfg() |
| | cfg_b = ChildBDemoCfg() |
| |
|
| | |
| | |
| | |
| | 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)) |
| |
|
| | |
| | |
| | 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.""" |
| | |
| | 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"] |
| |
|
| | |
| | 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() |
| |
|
| | |
| | annotations = {k: eval(v) if isinstance(v, str) else v for k, v in cfg.__annotations__.items()} |
| | |
| | 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]] |
| | |
| | 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() |
| |
|
| | |
| | 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__ |
| | |
| | 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.""" |
| |
|
| | |
| | dirname = os.path.dirname(os.path.abspath(__file__)) |
| | filename = os.path.join(dirname, "output", "configclass", "test_config.yaml") |
| |
|
| | |
| | cfg = ChildADemoCfg(a=20, d=3, e=ViewerCfg(), j=["c", "d"]) |
| |
|
| | |
| | dump_yaml(filename, cfg) |
| | |
| | cfg_loaded = load_yaml(filename) |
| | |
| | assert list(cfg.to_dict().keys()) == list(cfg_loaded.keys()) |
| | assert cfg.to_dict() == cfg_loaded |
| |
|
| | |
| | |
| | dump_yaml(filename, cfg, sort_keys=True) |
| | |
| | cfg_loaded = load_yaml(filename) |
| | |
| | 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.""" |
| |
|
| | |
| | cfg = ChildADemoCfg(a=20, d=3, e=ViewerCfg(), j=["c", "d"]) |
| |
|
| | |
| | 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() |
| |
|
| | |
| | error_message = str(context.value) |
| | for elem in validity_expected_fields: |
| | assert elem in error_message |
| |
|
| | |
| | assert len(error_message.split("\n")) - 2 == len(validity_expected_fields) |
| |
|