test_static_publisher.py
Go to the documentation of this file.
1 #! /usr/bin/python
2 #***********************************************************
3 #* Software License Agreement (BSD License)
4 #*
5 #* Copyright (c) 2016, Felix Duvallet
6 #* All rights reserved.
7 #*
8 #* Redistribution and use in source and binary forms, with or without
9 #* modification, are permitted provided that the following conditions
10 #* are met:
11 #*
12 #* * Redistributions of source code must retain the above copyright
13 #* notice, this list of conditions and the following disclaimer.
14 #* * Redistributions in binary form must reproduce the above
15 #* copyright notice, this list of conditions and the following
16 #* disclaimer in the documentation and/or other materials provided
17 #* with the distribution.
18 #* * Neither the name of Willow Garage, Inc. nor the names of its
19 #* contributors may be used to endorse or promote products derived
20 #* from this software without specific prior written permission.
21 #*
22 #* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 #* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 #* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25 #* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26 #* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27 #* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28 #* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29 #* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30 #* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 #* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32 #* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 #* POSSIBILITY OF SUCH DAMAGE.
34 #*
35 #* Author: Felix Duvallet
36 #***********************************************************
37 
38 import subprocess
39 import unittest
40 
41 import rospy
42 PKG = 'test_tf2'
43 import roslib; roslib.load_manifest(PKG)
44 
45 
46 class TestStaticPublisher(unittest.TestCase):
47  """
48  These tests ensure the static transform publisher dies gracefully when
49  provided with an invalid (or non-existent) transform parameter.
50 
51  These tests are started by the static_publisher.launch, which loads
52  parameters into the param server.
53 
54  We check the output to make sure the correct error is occurring, since the
55  return code is always -1 (255).
56 
57  Note that this *could* cause a problem if a valid TF is stored in the param
58  server for one of the names; in this case the subprocess would never return
59  and the test would run forever.
60  """
61 
63  # Start the publisher with no argument.
64  cmd = 'rosrun tf2_ros static_transform_publisher'
65  with self.assertRaises(subprocess.CalledProcessError) as cm:
66  ret = subprocess.check_output(
67  cmd.split(' '), stderr=subprocess.STDOUT)
68  self.assertEqual(255, cm.exception.returncode)
69  self.assertIn('not having the right number of arguments',
70  cm.exception.output)
71 
73  # Here there is no paramater by that name.
74  cmd = 'rosrun tf2_ros static_transform_publisher /test_tf2/tf_null'
75  with self.assertRaises(subprocess.CalledProcessError) as cm:
76  ret = subprocess.check_output(
77  cmd.split(' '), stderr=subprocess.STDOUT)
78 
79  self.assertEqual(255, cm.exception.returncode)
80  self.assertIn('Could not read TF', cm.exception.output)
81 
83  # Here there is an invalid parameter stored in the parameter server.
84  cmd = 'rosrun tf2_ros static_transform_publisher /test_tf2/tf_invalid'
85  with self.assertRaises(subprocess.CalledProcessError) as cm:
86  ret = subprocess.check_output(
87  cmd.split(' '), stderr=subprocess.STDOUT)
88 
89  self.assertEqual(255, cm.exception.returncode)
90  self.assertIn('Could not validate XmlRpcC', cm.exception.output)
91 
92 
93 if __name__ == '__main__':
94  rospy.init_node("test_static_publisher_py")
95  import rostest
96  rostest.rosrun(PKG, 'test_static_publisher_py', TestStaticPublisher)


test_tf2
Author(s): Tully Foote, Eitan Marder-Eppstein
autogenerated on Fri Oct 16 2020 19:09:05