test_static_publisher.py
Go to the documentation of this file.
1 #! /usr/bin/env 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 
44 
45 class TestStaticPublisher(unittest.TestCase):
46  """
47  These tests ensure the static transform publisher dies gracefully when
48  provided with an invalid (or non-existent) transform parameter.
49 
50  These tests are started by the static_publisher.launch, which loads
51  parameters into the param server.
52 
53  We check the output to make sure the correct error is occurring, since the
54  return code is always -1 (255).
55 
56  Note that this *could* cause a problem if a valid TF is stored in the param
57  server for one of the names; in this case the subprocess would never return
58  and the test would run forever.
59  """
60 
62  # Start the publisher with no argument.
63  cmd = 'rosrun tf2_ros static_transform_publisher'
64  with self.assertRaises(subprocess.CalledProcessError) as cm:
65  ret = subprocess.check_output(
66  cmd.split(' '), stderr=subprocess.STDOUT)
67  self.assertEqual(255, cm.exception.returncode)
68  self.assertIn('not having the right number of arguments',
69  cm.exception.output)
70 
72  # Here there is no paramater by that name.
73  cmd = 'rosrun tf2_ros static_transform_publisher /test_tf2/tf_null'
74  with self.assertRaises(subprocess.CalledProcessError) as cm:
75  ret = subprocess.check_output(
76  cmd.split(' '), stderr=subprocess.STDOUT)
77 
78  self.assertEqual(255, cm.exception.returncode)
79  self.assertIn('Could not read TF', cm.exception.output)
80 
82  # Here there is an invalid parameter stored in the parameter server.
83  cmd = 'rosrun tf2_ros static_transform_publisher /test_tf2/tf_invalid'
84  with self.assertRaises(subprocess.CalledProcessError) as cm:
85  ret = subprocess.check_output(
86  cmd.split(' '), stderr=subprocess.STDOUT)
87 
88  self.assertEqual(255, cm.exception.returncode)
89  self.assertIn('Could not validate XmlRpcC', cm.exception.output)
90 
91 
92 if __name__ == '__main__':
93  rospy.init_node("test_static_publisher_py")
94  import rostest
95  rostest.rosrun(PKG, 'test_static_publisher_py', TestStaticPublisher)


test_tf2
Author(s): Tully Foote, Eitan Marder-Eppstein
autogenerated on Mon Jun 27 2022 02:43:28