test_int64_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 = 'int64_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 Int64
00049 
00050 class TestInt64Passthrough(unittest.TestCase):
00051         
00052     def setUp(self):
00053         rospy.init_node(NAME)
00054         
00055         # keep track of Nth and (N-1)th message
00056         self.fixture_prev = self.fixture_curr = None
00057         self.test_prev = self.test_curr = None
00058         
00059         rospy.Subscriber('int64_in', Int64, self.cb_from_fixture)
00060         rospy.Subscriber('int64_out', Int64, self.cb_from_test)
00061         
00062     def cb_from_fixture(self, msg):
00063         self.fixture_prev = self.fixture_curr
00064         self.fixture_curr = msg
00065 
00066     def cb_from_test(self, msg):
00067         self.test_prev = self.test_curr
00068         self.test_curr = msg
00069 
00070     def test_int64_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 self.fixture_prev is None 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.failIf(self.fixture_prev is None, "no data from fixture")
00082         self.failIf(self.fixture_curr is None, "no data from fixture")
00083         self.assertEquals(self.fixture_prev.data + 1, self.fixture_curr.data, "fixture should incr by one")
00084 
00085         # another 20 seconds to validate client
00086         timeout_t = time.time() + 20.
00087         print "waiting for 20 seconds for client to verify"
00088         while self.test_prev is None and \
00089                 not rospy.is_shutdown() and \
00090                 timeout_t > time.time():
00091             time.sleep(0.2)
00092 
00093         self.failIf(self.test_prev is None, "no data from test")
00094         self.assertEquals(self.test_prev.data + 1, self.test_curr.data, "test does not appear to match fixture data")
00095 
00096 
00097 if __name__ == '__main__':
00098     import rostest
00099     rostest.run(PKG, NAME, TestInt64Passthrough, sys.argv)


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