forked from moveit/moveit2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
230 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
...z_industrial_motion_planner/test/integration_tests/launch/python_move_group_planning.test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0"?> | ||
<launch> | ||
<!-- Start joint_state_publisher, robot_state_publisher, and MoveGroup --> | ||
<include file="$(find moveit_resources_panda_moveit_config)/launch/test_environment.launch"/> | ||
|
||
<!-- Test MoveGroupInterface for Python --> | ||
<test pkg="pilz_industrial_motion_planner" type="python_move_group_planning.py" test-name="python_move_group_planning" | ||
time-limit="300" args=""/> | ||
</launch> |
118 changes: 118 additions & 0 deletions
118
...s/pilz_industrial_motion_planner/test/integration_tests/src/python_move_group_planning.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
#!/usr/bin/env python | ||
|
||
# Software License Agreement (BSD License) | ||
# | ||
# Copyright (c) 2021, Cristian C. Beltran-Hernandez | ||
# All rights reserved. | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions | ||
# are met: | ||
# | ||
# * Redistributions of source code must retain the above copyright | ||
# notice, this list of conditions and the following disclaimer. | ||
# * Redistributions in binary form must reproduce the above | ||
# copyright notice, this list of conditions and the following | ||
# disclaimer in the documentation and/or other materials provided | ||
# with the distribution. | ||
# * Neither the name of Cristian C. Beltran-Hernandez nor the names of its | ||
# contributors may be used to endorse or promote products derived | ||
# from this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
# POSSIBILITY OF SUCH DAMAGE. | ||
# | ||
# Author: Cristian C. Beltran-Hernandez | ||
# | ||
# This test is used to ensure planning with an attached object | ||
# correctly validates collision states between the attached objects | ||
# and the environment | ||
|
||
import unittest | ||
import numpy as np | ||
import rospy | ||
import rostest | ||
import os | ||
|
||
from moveit_msgs.msg import MoveItErrorCodes | ||
import moveit_commander | ||
|
||
from geometry_msgs.msg import PoseStamped | ||
|
||
|
||
class PythonMoveGroupPlanningTest(unittest.TestCase): | ||
@classmethod | ||
def setUpClass(self): | ||
PLANNING_GROUP = "panda_arm" | ||
self.group = moveit_commander.MoveGroupCommander(PLANNING_GROUP) | ||
self.planning_scene_interface = moveit_commander.PlanningSceneInterface( | ||
synchronous=True | ||
) | ||
|
||
@classmethod | ||
def tearDown(self): | ||
pass | ||
|
||
def test_planning_with_collision_objects(self): | ||
# Add obstacle to the world | ||
ps = PoseStamped() | ||
ps.header.frame_id = "world" | ||
ps.pose.position.x = 0.4 | ||
ps.pose.position.y = 0.1 | ||
ps.pose.position.z = 0.25 | ||
self.planning_scene_interface.add_box( | ||
name="box1", pose=ps, size=(0.1, 0.1, 0.5) | ||
) | ||
|
||
# Attach object to robot's TCP | ||
ps2 = PoseStamped() | ||
tcp_link = self.group.get_end_effector_link() | ||
ps2.header.frame_id = tcp_link | ||
ps2.pose.position.z = 0.15 | ||
self.planning_scene_interface.attach_box( | ||
link=tcp_link, | ||
name="box2", | ||
pose=ps2, | ||
size=(0.1, 0.1, 0.1), | ||
touch_links=["panda_rightfinger", "panda_leftfinger"], | ||
) | ||
|
||
# Plan a motion where the attached object 'box2' collides with the obstacle 'box1' | ||
target_pose = self.group.get_current_pose(tcp_link) | ||
target_pose.pose.position.y += 0.1 | ||
|
||
# # Set planner to be Pilz's Linear Planner | ||
# self.group.set_planning_pipeline_id("pilz_industrial_motion_planner") | ||
# self.group.set_planner_id("LIN") | ||
# self.group.set_pose_target(target_pose) | ||
# success, plan, time, error_code = self.group.plan() | ||
|
||
# # Planning should fail | ||
# self.assertEqual(error_code.val, MoveItErrorCodes.INVALID_MOTION_PLAN) | ||
|
||
# Set planner to be Pilz's Point-To-Point Planner | ||
self.group.set_planning_pipeline_id("pilz_industrial_motion_planner") | ||
self.group.set_planner_id("PTP") | ||
self.group.set_pose_target(target_pose) | ||
success, plan, time, error_code = self.group.plan() | ||
|
||
# Planning should fail | ||
self.assertFalse(success) | ||
self.assertEqual(error_code.val, MoveItErrorCodes.INVALID_MOTION_PLAN) | ||
|
||
|
||
if __name__ == "__main__": | ||
PKGNAME = "moveit_ros_planning_interface" | ||
NODENAME = "moveit_test_python_move_group" | ||
rospy.init_node(NODENAME) | ||
rostest.rosrun(PKGNAME, NODENAME, PythonMoveGroupPlanningTest) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.