simple_tf2_core.cpp
Go to the documentation of this file.
00001 /*
00002  * Copyright (c) 2008, Willow Garage, Inc.
00003  * All rights reserved.
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  * 
00008  *     * Redistributions of source code must retain the above copyright
00009  *       notice, this list of conditions and the following disclaimer.
00010  *     * Redistributions in binary form must reproduce the above copyright
00011  *       notice, this list of conditions and the following disclaimer in the
00012  *       documentation and/or other materials provided with the distribution.
00013  *     * Neither the name of the Willow Garage, Inc. nor the names of its
00014  *       contributors may be used to endorse or promote products derived from
00015  *       this software without specific prior written permission.
00016  * 
00017  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00018  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00019  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00020  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
00021  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
00022  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
00023  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
00024  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
00025  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
00026  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00027  * POSSIBILITY OF SUCH DAMAGE.
00028  */
00029 
00030 #include <gtest/gtest.h>
00031 #include <tf2/buffer_core.h>
00032 #include <sys/time.h>
00033 #include <ros/ros.h>
00034 #include "tf2/LinearMath/Vector3.h"
00035 #include "tf2/exceptions.h"
00036 
00037 void seed_rand()
00038 {
00039   //Seed random number generator with current microseond count
00040   timeval temp_time_struct;
00041   gettimeofday(&temp_time_struct,NULL);
00042   srand(temp_time_struct.tv_usec);
00043 };
00044 
00045 void generate_rand_vectors(double scale, uint64_t runs, std::vector<double>& xvalues, std::vector<double>& yvalues, std::vector<double>&zvalues)
00046 {
00047   seed_rand();
00048   for ( uint64_t i = 0; i < runs ; i++ )
00049   {
00050     xvalues[i] = 1.0 * ((double) rand() - (double)RAND_MAX /2.0) /(double)RAND_MAX;
00051     yvalues[i] = 1.0 * ((double) rand() - (double)RAND_MAX /2.0) /(double)RAND_MAX;
00052     zvalues[i] = 1.0 * ((double) rand() - (double)RAND_MAX /2.0) /(double)RAND_MAX;
00053   }
00054 }
00055 
00056 
00057 
00058 TEST(tf2, setTransformFail)
00059 {
00060   tf2::BufferCore tfc;
00061   geometry_msgs::TransformStamped st;
00062   EXPECT_FALSE(tfc.setTransform(st, "authority1"));
00063   
00064 }
00065 
00066 TEST(tf2, setTransformValid)
00067 {
00068   tf2::BufferCore tfc;
00069   geometry_msgs::TransformStamped st;
00070   st.header.frame_id = "foo";
00071   st.header.stamp = ros::Time(1.0);
00072   st.child_frame_id = "child";
00073   st.transform.rotation.w = 1;
00074   EXPECT_TRUE(tfc.setTransform(st, "authority1"));
00075   
00076 }
00077 
00078 TEST(tf2_lookupTransform, LookupException_Nothing_Exists)
00079 {
00080   tf2::BufferCore tfc;
00081   EXPECT_THROW(tfc.lookupTransform("a", "b", ros::Time().fromSec(1.0)), tf2::LookupException);
00082   
00083 }
00084 
00085 TEST(tf2_canTransform, Nothing_Exists)
00086 {
00087   tf2::BufferCore tfc;
00088   EXPECT_FALSE(tfc.canTransform("a", "b", ros::Time().fromSec(1.0)));
00089   
00090 }
00091 
00092 TEST(tf2_lookupTransform, LookupException_One_Exists)
00093 {
00094   tf2::BufferCore tfc;
00095   geometry_msgs::TransformStamped st;
00096   st.header.frame_id = "foo";
00097   st.header.stamp = ros::Time(1.0);
00098   st.child_frame_id = "child";
00099   st.transform.rotation.w = 1;
00100   EXPECT_TRUE(tfc.setTransform(st, "authority1"));
00101   EXPECT_THROW(tfc.lookupTransform("foo", "bar", ros::Time().fromSec(1.0)), tf2::LookupException);
00102   
00103 }
00104 
00105 TEST(tf2_canTransform, One_Exists)
00106 {
00107   tf2::BufferCore tfc;
00108   geometry_msgs::TransformStamped st;
00109   st.header.frame_id = "foo";
00110   st.header.stamp = ros::Time(1.0);
00111   st.child_frame_id = "child";
00112   st.transform.rotation.w = 1;
00113   EXPECT_TRUE(tfc.setTransform(st, "authority1"));
00114   EXPECT_FALSE(tfc.canTransform("foo", "bar", ros::Time().fromSec(1.0)));
00115 }
00116 
00117 
00118 int main(int argc, char **argv){
00119   testing::InitGoogleTest(&argc, argv);
00120   ros::Time::init(); //needed for ros::TIme::now()
00121   return RUN_ALL_TESTS();
00122 }


tf2
Author(s): Tully Foote, Eitan Marder-Eppstein, Wim Meeussen
autogenerated on Thu Aug 27 2015 13:09:58