| | |
| | |
| | |
| | |
| |
|
| | |
| | |
| |
|
| | from __future__ import annotations |
| |
|
| | from isaaclab.app import AppLauncher |
| |
|
| | |
| | HEADLESS = True |
| |
|
| | |
| | app_launcher = AppLauncher(headless=HEADLESS) |
| | simulation_app = app_launcher.app |
| |
|
| | import importlib |
| |
|
| | import numpy as np |
| | import pytest |
| | import torch |
| |
|
| | import carb |
| | import omni.usd |
| | from isaacsim.core.prims import XFormPrim |
| |
|
| | from isaaclab.devices import OpenXRDevice, OpenXRDeviceCfg |
| | from isaaclab.devices.openxr import XrCfg |
| | from isaaclab.devices.retargeter_base import RetargeterBase, RetargeterCfg |
| | from isaaclab.envs import ManagerBasedEnv, ManagerBasedEnvCfg |
| | from isaaclab.scene import InteractiveSceneCfg |
| | from isaaclab.utils import configclass |
| |
|
| |
|
| | class NoOpRetargeter(RetargeterBase): |
| | """A no-op retargeter that requests hand and head tracking but returns empty tensor.""" |
| |
|
| | def __init__(self, cfg: RetargeterCfg): |
| | super().__init__(cfg) |
| |
|
| | def get_requirements(self) -> list[RetargeterBase.Requirement]: |
| | """Request hand and head tracking to trigger data collection.""" |
| | return [ |
| | RetargeterBase.Requirement.HAND_TRACKING, |
| | RetargeterBase.Requirement.HEAD_TRACKING, |
| | ] |
| |
|
| | def retarget(self, data): |
| | """Return empty tensor.""" |
| | return torch.tensor([], device=self._sim_device) |
| |
|
| |
|
| | @configclass |
| | class EmptyManagerCfg: |
| | """Empty manager.""" |
| |
|
| | pass |
| |
|
| |
|
| | @configclass |
| | class EmptySceneCfg(InteractiveSceneCfg): |
| | """Configuration for an empty scene.""" |
| |
|
| | pass |
| |
|
| |
|
| | @configclass |
| | class EmptyEnvCfg(ManagerBasedEnvCfg): |
| | """Configuration for the empty test environment.""" |
| |
|
| | scene: EmptySceneCfg = EmptySceneCfg(num_envs=1, env_spacing=1.0) |
| | actions: EmptyManagerCfg = EmptyManagerCfg() |
| | observations: EmptyManagerCfg = EmptyManagerCfg() |
| |
|
| | def __post_init__(self): |
| | """Post initialization.""" |
| | self.decimation = 5 |
| | self.episode_length_s = 30.0 |
| | self.sim.dt = 0.01 |
| | self.sim.render_interval = 2 |
| |
|
| |
|
| | @pytest.fixture |
| | def mock_xrcore(mocker): |
| | """Set up a mock for XRCore and related classes.""" |
| | |
| | xr_core_mock = mocker.MagicMock() |
| | xr_pose_validity_flags_mock = mocker.MagicMock() |
| |
|
| | |
| | xr_pose_validity_flags_mock.POSITION_VALID = 1 |
| | xr_pose_validity_flags_mock.ORIENTATION_VALID = 2 |
| |
|
| | |
| | singleton_mock = mocker.MagicMock() |
| | xr_core_mock.get_singleton.return_value = singleton_mock |
| |
|
| | |
| | message_bus_mock = mocker.MagicMock() |
| | singleton_mock.get_message_bus.return_value = message_bus_mock |
| | message_bus_mock.create_subscription_to_pop_by_type.return_value = mocker.MagicMock() |
| |
|
| | |
| | left_hand_mock = mocker.MagicMock() |
| | right_hand_mock = mocker.MagicMock() |
| | head_mock = mocker.MagicMock() |
| |
|
| | def get_input_device_mock(device_path): |
| | device_map = { |
| | "/user/hand/left": left_hand_mock, |
| | "/user/hand/right": right_hand_mock, |
| | "/user/head": head_mock, |
| | } |
| | return device_map.get(device_path) |
| |
|
| | singleton_mock.get_input_device.side_effect = get_input_device_mock |
| |
|
| | |
| | joint_pose_mock = mocker.MagicMock() |
| | joint_pose_mock.validity_flags = ( |
| | xr_pose_validity_flags_mock.POSITION_VALID | xr_pose_validity_flags_mock.ORIENTATION_VALID |
| | ) |
| |
|
| | pose_matrix_mock = mocker.MagicMock() |
| | pose_matrix_mock.ExtractTranslation.return_value = [0.1, 0.2, 0.3] |
| |
|
| | rotation_quat_mock = mocker.MagicMock() |
| | rotation_quat_mock.GetImaginary.return_value = [0.1, 0.2, 0.3] |
| | rotation_quat_mock.GetReal.return_value = 0.9 |
| |
|
| | pose_matrix_mock.ExtractRotationQuat.return_value = rotation_quat_mock |
| | joint_pose_mock.pose_matrix = pose_matrix_mock |
| |
|
| | joint_poses = {"palm": joint_pose_mock, "wrist": joint_pose_mock} |
| | left_hand_mock.get_all_virtual_world_poses.return_value = joint_poses |
| | right_hand_mock.get_all_virtual_world_poses.return_value = joint_poses |
| |
|
| | head_mock.get_virtual_world_pose.return_value = pose_matrix_mock |
| |
|
| | |
| | device_mod = importlib.import_module("isaaclab.devices.openxr.openxr_device") |
| | mocker.patch.object(device_mod, "XRCore", xr_core_mock) |
| | mocker.patch.object(device_mod, "XRPoseValidityFlags", xr_pose_validity_flags_mock) |
| |
|
| | return { |
| | "XRCore": xr_core_mock, |
| | "XRPoseValidityFlags": xr_pose_validity_flags_mock, |
| | "singleton": singleton_mock, |
| | "message_bus": message_bus_mock, |
| | "left_hand": left_hand_mock, |
| | "right_hand": right_hand_mock, |
| | "head": head_mock, |
| | } |
| |
|
| |
|
| | @pytest.fixture |
| | def empty_env(): |
| | """Fixture to create and cleanup an empty environment.""" |
| | |
| | omni.usd.get_context().new_stage() |
| | |
| | env_cfg = EmptyEnvCfg() |
| | env = ManagerBasedEnv(cfg=env_cfg) |
| |
|
| | yield env, env_cfg |
| |
|
| | |
| | env.close() |
| |
|
| |
|
| | @pytest.mark.isaacsim_ci |
| | def test_xr_anchor(empty_env, mock_xrcore): |
| | """Test XR anchor creation and configuration.""" |
| | env, env_cfg = empty_env |
| | env_cfg.xr = XrCfg(anchor_pos=(1, 2, 3), anchor_rot=(0, 1, 0, 0)) |
| |
|
| | device = OpenXRDevice(OpenXRDeviceCfg(xr_cfg=env_cfg.xr)) |
| |
|
| | |
| | xr_anchor_prim = XFormPrim("/World/XRAnchor") |
| | assert xr_anchor_prim.is_valid() |
| |
|
| | position, orientation = xr_anchor_prim.get_world_poses() |
| | np.testing.assert_almost_equal(position.tolist(), [[1, 2, 3]]) |
| | np.testing.assert_almost_equal(orientation.tolist(), [[0, 1, 0, 0]]) |
| |
|
| | |
| | assert carb.settings.get_settings().get("/persistent/xr/profile/ar/anchorMode") == "custom anchor" |
| | assert carb.settings.get_settings().get("/xrstage/profile/ar/customAnchor") == "/World/XRAnchor" |
| |
|
| | device.reset() |
| |
|
| |
|
| | @pytest.mark.isaacsim_ci |
| | def test_xr_anchor_default(empty_env, mock_xrcore): |
| | """Test XR anchor creation with default configuration.""" |
| | env, _ = empty_env |
| | |
| | device = OpenXRDevice(OpenXRDeviceCfg()) |
| |
|
| | |
| | xr_anchor_prim = XFormPrim("/World/XRAnchor") |
| | assert xr_anchor_prim.is_valid() |
| |
|
| | position, orientation = xr_anchor_prim.get_world_poses() |
| | np.testing.assert_almost_equal(position.tolist(), [[0, 0, 0]]) |
| | np.testing.assert_almost_equal(orientation.tolist(), [[1, 0, 0, 0]]) |
| |
|
| | |
| | assert carb.settings.get_settings().get("/persistent/xr/profile/ar/anchorMode") == "custom anchor" |
| | assert carb.settings.get_settings().get("/xrstage/profile/ar/customAnchor") == "/World/XRAnchor" |
| |
|
| | device.reset() |
| |
|
| |
|
| | @pytest.mark.isaacsim_ci |
| | def test_xr_anchor_multiple_devices(empty_env, mock_xrcore): |
| | """Test XR anchor behavior with multiple devices.""" |
| | env, _ = empty_env |
| | |
| | device_1 = OpenXRDevice(OpenXRDeviceCfg()) |
| | device_2 = OpenXRDevice(OpenXRDeviceCfg()) |
| |
|
| | |
| | xr_anchor_prim = XFormPrim("/World/XRAnchor") |
| | assert xr_anchor_prim.is_valid() |
| |
|
| | position, orientation = xr_anchor_prim.get_world_poses() |
| | np.testing.assert_almost_equal(position.tolist(), [[0, 0, 0]]) |
| | np.testing.assert_almost_equal(orientation.tolist(), [[1, 0, 0, 0]]) |
| |
|
| | |
| | assert carb.settings.get_settings().get("/persistent/xr/profile/ar/anchorMode") == "custom anchor" |
| | assert carb.settings.get_settings().get("/xrstage/profile/ar/customAnchor") == "/World/XRAnchor" |
| |
|
| | device_1.reset() |
| | device_2.reset() |
| |
|
| |
|
| | @pytest.mark.isaacsim_ci |
| | def test_get_raw_data(empty_env, mock_xrcore): |
| | """Test the _get_raw_data method returns correctly formatted tracking data.""" |
| | env, _ = empty_env |
| | |
| | retargeter = NoOpRetargeter(RetargeterCfg()) |
| | device = OpenXRDevice(OpenXRDeviceCfg(), retargeters=[retargeter]) |
| |
|
| | |
| | raw_data = device._get_raw_data() |
| |
|
| | |
| | from isaaclab.devices.device_base import DeviceBase |
| |
|
| | assert DeviceBase.TrackingTarget.HAND_LEFT in raw_data |
| | assert DeviceBase.TrackingTarget.HAND_RIGHT in raw_data |
| | assert DeviceBase.TrackingTarget.HEAD in raw_data |
| |
|
| | |
| | left_hand = raw_data[DeviceBase.TrackingTarget.HAND_LEFT] |
| | assert "palm" in left_hand |
| | assert "wrist" in left_hand |
| |
|
| | |
| | palm_pose = left_hand["palm"] |
| | assert len(palm_pose) == 7 |
| | np.testing.assert_almost_equal(palm_pose[:3], [0.1, 0.2, 0.3]) |
| | np.testing.assert_almost_equal(palm_pose[3:], [0.9, 0.1, 0.2, 0.3]) |
| |
|
| | |
| | head_pose = raw_data[DeviceBase.TrackingTarget.HEAD] |
| | assert len(head_pose) == 7 |
| | np.testing.assert_almost_equal(head_pose[:3], [0.1, 0.2, 0.3]) |
| | np.testing.assert_almost_equal(head_pose[3:], [0.9, 0.1, 0.2, 0.3]) |
| |
|