00001 #!/usr/bin/env python 00002 00003 # Copyright (C) 2014, PAL Robotics S.L. 00004 # 00005 # Redistribution and use in source and binary forms, with or without 00006 # modification, are permitted provided that the following conditions are met: 00007 # * Redistributions of source code must retain the above copyright notice, 00008 # this list of conditions and the following disclaimer. 00009 # * Redistributions in binary form must reproduce the above copyright 00010 # notice, this list of conditions and the following disclaimer in the 00011 # documentation and/or other materials provided with the distribution. 00012 # * Neither the name of PAL Robotics S.L. nor the names of its 00013 # contributors may be used to endorse or promote products derived from 00014 # this software without specific prior written permission. 00015 # 00016 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00017 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00018 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00019 # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 00020 # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00021 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00022 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00023 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 00024 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00025 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00026 # POSSIBILITY OF SUCH DAMAGE. 00027 00028 import rospy 00029 from controller_manager_tests import ControllerManagerDummy 00030 from controller_manager_msgs.msg import ControllerState 00031 from controller_manager_msgs.srv import ListControllersResponse, LoadController 00032 00033 if __name__ == '__main__': 00034 rospy.init_node('multi_cm_dummy') 00035 00036 # Valid controller managers in different namespaces 00037 cm_root = ControllerManagerDummy('/') 00038 cm_foo1 = ControllerManagerDummy('/foo/robot/controller_manager1') 00039 cm_foo2 = ControllerManagerDummy('/foo/robot/controller_manager2') 00040 cm_default = ControllerManagerDummy() 00041 00042 c_foo = ControllerState() 00043 c_foo.name = 'foo_controller' 00044 c_foo.type = 'foo_base/foo' 00045 c_foo.state = 'running' 00046 c_foo.hardware_interface='hardware_interface::FooInterface' 00047 00048 c_bar = ControllerState() 00049 c_bar.name = 'bar_controller' 00050 c_bar.type = 'bar_base/bar' 00051 c_bar.state = 'stopped' 00052 c_bar.hardware_interface='hardware_interface::BarInterface' 00053 00054 resp = ListControllersResponse() 00055 resp.controller = [c_foo, c_bar] 00056 cm_default.list_ctrl_resp = resp 00057 00058 # Partial controller manager ROS API: missing service 00059 cm_incomplete = ControllerManagerDummy('/incomplete') 00060 cm_incomplete.reload_libs.shutdown() 00061 00062 # Partial controller manager ROS API: service with wrong type 00063 cm_bad_type = ControllerManagerDummy('/bad_type') 00064 cm_bad_type.unload_ctrl.shutdown() 00065 cm_bad_type.unload_ctrl = rospy.Service('/bad_type/unload_controller', 00066 LoadController, # NOTE: Wrong type 00067 cm_bad_type._unload_ctrl_cb) 00068 00069 rospy.spin()