| """ |
| Tests the basic interface of all robots. |
| |
| This runs some basic sanity checks on the robots, namely, checking that: |
| - Verifies that all single-arm robots have properly defined contact geoms. |
| |
| Obviously, if an environment crashes during runtime, that is considered a failure as well. |
| """ |
| from robosuite.robots import ROBOT_CLASS_MAPPING, FixedBaseRobot, LeggedRobot, WheeledRobot |
|
|
|
|
| def test_all_robots(): |
| for name, robot in ROBOT_CLASS_MAPPING.items(): |
| print(f"Testing {name}") |
| if robot not in [FixedBaseRobot, WheeledRobot, LeggedRobot]: |
| raise ValueError(f"Invalid robot type: {robot}") |
| else: |
| _test_contact_geoms(robot(name)) |
|
|
|
|
| def _test_contact_geoms(robot): |
| robot.load_model() |
| contact_geoms = robot.robot_model._contact_geoms |
| for geom in contact_geoms: |
| assert isinstance(geom, str), f"The geom {geom} is of type {type(geom)}, but should be {type('placeholder')}" |
|
|
|
|
| if __name__ == "__main__": |
| |
| test_all_robots() |
| print("Robot tests completed.") |
|
|