Franka_ROS2/franka_moveit_config/test/srdf_tests.py

43 lines
1.4 KiB
Python
Raw Normal View History

2023-08-30 13:50:48 +00:00
# Copyright (c) 2021 Franka Emika GmbH
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from os import path
from ament_index_python.packages import get_package_share_directory
import xacro
panda_xacro_file_name = path.join(get_package_share_directory('franka_moveit_config'), 'srdf',
'panda_arm.srdf.xacro')
def test_load():
urdf = xacro.process_file(panda_xacro_file_name).toxml()
assert urdf.find('panda_rightfinger') != -1
def test_load_without_gripper():
urdf = xacro.process_file(panda_xacro_file_name,
mappings={'hand': 'false'}).toxml()
assert urdf.find('panda_rightfinger') == -1
def test_load_with_arm_id():
urdf = xacro.process_file(panda_xacro_file_name,
mappings={'arm_id': 'totally_different_arm'}).toxml()
assert urdf.find('totally_different_arm_joint1') != -1
if __name__ == '__main__':
pass