-
Notifications
You must be signed in to change notification settings - Fork 985
Add namespace capabilities to moveit_commander #835
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
63b8afa
f640008
4a04ecf
1b56d4f
cc60eaa
388da27
627782b
0bcc54b
5334cb5
b9fb86d
48fc9ce
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| if (CATKIN_ENABLE_TESTING) | ||
| find_package(moveit_resources) | ||
| find_package(rostest) | ||
|
|
||
| add_rostest(python_moveit_commander.test) | ||
| add_rostest(python_moveit_commander_ns.test) | ||
| endif() | ||
|
|
||
| install(PROGRAMS python_moveit_commander.py | ||
| python_moveit_commander_ns.py | ||
| DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/test) | ||
|
|
||
| install(FILES python_moveit_commander.test | ||
| python_moveit_commander_ns.test | ||
| DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/test) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,102 @@ | ||
| #!/usr/bin/env python | ||
|
|
||
| # Software License Agreement (BSD License) | ||
| # | ||
| # Copyright (c) 2012, Willow Garage, Inc. | ||
| # 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 Willow Garage, Inc. 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: William Baker | ||
|
|
||
| import unittest | ||
| import numpy as np | ||
| import rospy | ||
| import rostest | ||
| import os | ||
|
|
||
| from moveit_commander import RobotCommander | ||
|
|
||
|
|
||
| class PythonMoveitCommanderTest(unittest.TestCase): | ||
| PLANNING_GROUP = "manipulator" | ||
|
|
||
| @classmethod | ||
| def setUpClass(self): | ||
| self.commander = RobotCommander("robot_description") | ||
| self.group = self.commander.get_group(self.PLANNING_GROUP) | ||
|
|
||
| @classmethod | ||
| def tearDown(self): | ||
| pass | ||
|
|
||
| def check_target_setting(self, expect, *args): | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. rename something like |
||
| if len(args) == 0: | ||
| args = [expect] | ||
| self.group.set_joint_value_target(*args) | ||
| res = self.group.get_joint_value_target() | ||
| self.assertTrue(np.all(np.asarray(res) == np.asarray(expect)), | ||
| "Setting failed for %s, values: %s" % (type(args[0]), res)) | ||
|
|
||
| def test_target_setting(self): | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think I understand this test but it took me a few minutes to parse what you are doing here. You are testing all the different ways to assign joint values correct? Changing
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've just copy and pasta'd the tests from here: |
||
| n = self.group.get_variable_count() | ||
| self.check_target_setting([0.1] * n) | ||
| self.check_target_setting((0.2,) * n) | ||
| self.check_target_setting(np.zeros(n)) | ||
| self.check_target_setting([0.3] * n, {name: 0.3 for name in self.group.get_active_joints()}) | ||
| self.check_target_setting([0.5] + [0.3]*(n-1), "joint_1", 0.5) | ||
|
|
||
| def plan(self, target): | ||
| self.group.set_joint_value_target(target) | ||
| return self.group.plan() | ||
|
|
||
| def test_validation(self): | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. rename something like |
||
| current = np.asarray(self.group.get_current_joint_values()) | ||
|
|
||
| plan1 = self.plan(current + 0.2) | ||
| plan2 = self.plan(current + 0.2) | ||
|
|
||
| # first plan should execute | ||
| self.assertTrue(self.group.execute(plan1)) | ||
|
|
||
| # second plan should be invalid now (due to modified start point) and rejected | ||
| self.assertFalse(self.group.execute(plan2)) | ||
|
|
||
| # newly planned trajectory should execute again | ||
| plan3 = self.plan(current) | ||
| self.assertTrue(self.group.execute(plan3)) | ||
|
|
||
|
|
||
| if __name__ == '__main__': | ||
| PKGNAME = 'moveit_ros_planning_interface' | ||
| NODENAME = 'moveit_test_python_moveit_commander' | ||
| rospy.init_node(NODENAME) | ||
| rostest.rosrun(PKGNAME, NODENAME, PythonMoveitCommanderTest) | ||
|
|
||
| # suppress cleanup segfault | ||
| os._exit(0) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| <launch> | ||
| <include file="$(find moveit_resources)/fanuc_moveit_config/launch/test_environment.launch"/> | ||
| <test pkg="moveit_commander" type="python_moveit_commander.py" test-name="python_moveit_commander" | ||
| time-limit="300" args=""/> | ||
| </launch> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,106 @@ | ||
| #!/usr/bin/env python | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please add standard BSD license with your name and short description |
||
| # Software License Agreement (BSD License) | ||
| # | ||
| # Copyright (c) 2012, Willow Garage, Inc. | ||
| # 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 Willow Garage, Inc. 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: William Baker | ||
| # | ||
| # This test is used to ensure planning with a RobotCommander is | ||
| # possbile if the robot's move_group node is in a different namespace | ||
|
|
||
| import unittest | ||
| import numpy as np | ||
| import rospy | ||
| import rostest | ||
| import os | ||
|
|
||
| from moveit_commander import RobotCommander | ||
|
|
||
|
|
||
| class PythonMoveitCommanderNsTest(unittest.TestCase): | ||
| PLANNING_GROUP = "manipulator" | ||
| PLANNING_NS = "test_ns/" | ||
|
|
||
| @classmethod | ||
| def setUpClass(self): | ||
| self.commander = RobotCommander("%srobot_description"%self.PLANNING_NS, self.PLANNING_NS) | ||
| self.group = self.commander.get_group(self.PLANNING_GROUP) | ||
|
|
||
| @classmethod | ||
| def tearDown(self): | ||
| pass | ||
|
|
||
| def check_target_setting(self, expect, *args): | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. rename something like |
||
| if len(args) == 0: | ||
| args = [expect] | ||
| self.group.set_joint_value_target(*args) | ||
| res = self.group.get_joint_value_target() | ||
| self.assertTrue(np.all(np.asarray(res) == np.asarray(expect)), | ||
| "Setting failed for %s, values: %s" % (type(args[0]), res)) | ||
|
|
||
| def test_target_setting(self): | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. rename something like |
||
| n = self.group.get_variable_count() | ||
| self.check_target_setting([0.1] * n) | ||
| self.check_target_setting((0.2,) * n) | ||
| self.check_target_setting(np.zeros(n)) | ||
| self.check_target_setting([0.3] * n, {name: 0.3 for name in self.group.get_active_joints()}) | ||
| self.check_target_setting([0.5] + [0.3]*(n-1), "joint_1", 0.5) | ||
|
|
||
| def plan(self, target): | ||
| self.group.set_joint_value_target(target) | ||
| return self.group.plan() | ||
|
|
||
| def test_validation(self): | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same as above |
||
| current = np.asarray(self.group.get_current_joint_values()) | ||
|
|
||
| plan1 = self.plan(current + 0.2) | ||
| plan2 = self.plan(current + 0.2) | ||
|
|
||
| # first plan should execute | ||
| self.assertTrue(self.group.execute(plan1)) | ||
|
|
||
| # second plan should be invalid now (due to modified start point) and rejected | ||
| self.assertFalse(self.group.execute(plan2)) | ||
|
|
||
| # newly planned trajectory should execute again | ||
| plan3 = self.plan(current) | ||
| self.assertTrue(self.group.execute(plan3)) | ||
|
|
||
|
|
||
| if __name__ == '__main__': | ||
| PKGNAME = 'moveit_ros_planning_interface' | ||
| NODENAME = 'moveit_test_python_moveit_commander_ns' | ||
| rospy.init_node(NODENAME) | ||
| rostest.rosrun(PKGNAME, NODENAME, PythonMoveitCommanderNsTest) | ||
|
|
||
| # suppress cleanup segfault | ||
| os._exit(0) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| <launch> | ||
| <include ns="test_ns" file="$(find moveit_resources)/fanuc_moveit_config/launch/test_environment.launch"/> | ||
| <test pkg="moveit_commander" type="python_moveit_commander_ns.py" test-name="python_moveit_commander_ns" | ||
| time-limit="300" args=""/> | ||
| </launch> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add standard BSD license with your name and short description