test_string_passthrough.py
Go to the documentation of this file.
00001 #!/usr/bin/env python
00002 # Software License Agreement (BSD License)
00003 #
00004 # Copyright (c) 2011, Willow Garage, Inc.
00005 # All rights reserved.
00006 #
00007 # Redistribution and use in source and binary forms, with or without
00008 # modification, are permitted provided that the following conditions
00009 # are met:
00010 #
00011 #  * Redistributions of source code must retain the above copyright
00012 #    notice, this list of conditions and the following disclaimer.
00013 #  * Redistributions in binary form must reproduce the above
00014 #    copyright notice, this list of conditions and the following
00015 #    disclaimer in the documentation and/or other materials provided
00016 #    with the distribution.
00017 #  * Neither the name of Willow Garage, Inc. nor the names of its
00018 #    contributors may be used to endorse or promote products derived
00019 #    from this software without specific prior written permission.
00020 #
00021 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00022 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00023 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00024 # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00025 # COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00026 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00027 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00028 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00029 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00030 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00031 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00032 # POSSIBILITY OF SUCH DAMAGE.
00033 #
00034 # Revision $Id: test_empty_service.py 3803 2009-02-11 02:04:39Z rob_wheeler $
00035 
00036 PKG = 'rosjava'
00037 NAME = 'string_passthrough'
00038 import roslib; roslib.load_manifest(PKG)
00039 
00040 from ros import rospy
00041 from ros import std_msgs
00042 from ros import rostest
00043 
00044 import sys
00045 import time
00046 import unittest
00047 
00048 from std_msgs.msg import String
00049 
00050 class TestStringPassthrough(unittest.TestCase):
00051         
00052     def setUp(self):
00053         rospy.init_node(NAME)
00054         self.nodes = ['/node%s'%(i) for i in xrange(10)]
00055         self.nodes_set = set(self.nodes)
00056         
00057         # keep track of nodes that have done callbacks
00058         self.fixture_nodes_cb = set()
00059         self.test_nodes_cb = set()
00060         
00061         rospy.Subscriber('string_in', String, self.cb_from_fixture)
00062         rospy.Subscriber('string_out', String, self.cb_from_test)
00063         
00064     def cb_from_fixture(self, msg):
00065         self.fixture_nodes_cb.add(msg.data)
00066 
00067     def cb_from_test(self, msg):
00068         self.test_nodes_cb.add(msg.data)
00069 
00070     def test_string_passthrough(self):
00071         # 20 seconds to validate fixture
00072         timeout_t = time.time() + 20.
00073         print "waiting for 20 seconds for fixture to verify"
00074         while not self.fixture_nodes_cb == self.nodes_set and \
00075                 not rospy.is_shutdown() and \
00076                 timeout_t > time.time():
00077             time.sleep(0.2)
00078 
00079         self.failIf(timeout_t < time.time(), "timeout exceeded")
00080         self.failIf(rospy.is_shutdown(), "node shutdown")            
00081         self.assertEquals(self.nodes_set, self.fixture_nodes_cb, "fixture did not validate: %s vs %s"%(self.nodes_set, self.fixture_nodes_cb))
00082 
00083         # another 20 seconds to validate client
00084         timeout_t = time.time() + 20.
00085         print "waiting for 20 seconds for client to verify"
00086         while not self.test_nodes_cb == self.nodes_set and \
00087                 not rospy.is_shutdown() and \
00088                 timeout_t > time.time():
00089             time.sleep(0.2)
00090 
00091         self.assertEquals(self.nodes_set, self.test_nodes_cb, "passthrough did not pass along all message")
00092 
00093         # Create a new Publisher here.  This will validate publisherUpdate()
00094         pub = rospy.Publisher('string_in', String)
00095         msg = 'test_publisherUpdate'
00096         timeout_t = time.time() + 20.
00097         print "waiting for 20 seconds for client to verify"
00098         while not msg in self.nodes_set and \
00099                 not rospy.is_shutdown() and \
00100                 timeout_t > time.time():
00101             pub.publish(data=msg)
00102             time.sleep(0.2)
00103 
00104         
00105 
00106 if __name__ == '__main__':
00107     import rostest
00108     rostest.run(PKG, NAME, TestStringPassthrough, sys.argv)


rosjava_core
Author(s):
autogenerated on Wed Aug 26 2015 16:06:49