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 TEST(tf2, setTransformFail)
00038 {
00039   tf2::BufferCore tfc;
00040   geometry_msgs::TransformStamped st;
00041   EXPECT_FALSE(tfc.setTransform(st, "authority1"));
00042 
00043 }
00044 
00045 TEST(tf2, setTransformValid)
00046 {
00047   tf2::BufferCore tfc;
00048   geometry_msgs::TransformStamped st;
00049   st.header.frame_id = "foo";
00050   st.header.stamp = ros::Time(1.0);
00051   st.child_frame_id = "child";
00052   st.transform.rotation.w = 1;
00053   EXPECT_TRUE(tfc.setTransform(st, "authority1"));
00054 
00055 }
00056 
00057 TEST(tf2, setTransformInvalidQuaternion)
00058 {
00059   tf2::BufferCore tfc;
00060   geometry_msgs::TransformStamped st;
00061   st.header.frame_id = "foo";
00062   st.header.stamp = ros::Time(1.0);
00063   st.child_frame_id = "child";
00064   st.transform.rotation.w = 0;
00065   EXPECT_FALSE(tfc.setTransform(st, "authority1"));
00066 
00067 }
00068 
00069 TEST(tf2_lookupTransform, LookupException_Nothing_Exists)
00070 {
00071   tf2::BufferCore tfc;
00072   EXPECT_THROW(tfc.lookupTransform("a", "b", ros::Time().fromSec(1.0)), tf2::LookupException);
00073 
00074 }
00075 
00076 TEST(tf2_canTransform, Nothing_Exists)
00077 {
00078   tf2::BufferCore tfc;
00079   EXPECT_FALSE(tfc.canTransform("a", "b", ros::Time().fromSec(1.0)));
00080 
00081   std::string error_msg = std::string();
00082   EXPECT_FALSE(tfc.canTransform("a", "b", ros::Time().fromSec(1.0), &error_msg));
00083   ASSERT_STREQ(error_msg.c_str(), "canTransform: target_frame a does not exist. canTransform: source_frame b does not exist.");
00084 
00085 }
00086 
00087 TEST(tf2_lookupTransform, LookupException_One_Exists)
00088 {
00089   tf2::BufferCore tfc;
00090   geometry_msgs::TransformStamped st;
00091   st.header.frame_id = "foo";
00092   st.header.stamp = ros::Time(1.0);
00093   st.child_frame_id = "child";
00094   st.transform.rotation.w = 1;
00095   EXPECT_TRUE(tfc.setTransform(st, "authority1"));
00096   EXPECT_THROW(tfc.lookupTransform("foo", "bar", ros::Time().fromSec(1.0)), tf2::LookupException);
00097 
00098 }
00099 
00100 TEST(tf2_canTransform, One_Exists)
00101 {
00102   tf2::BufferCore tfc;
00103   geometry_msgs::TransformStamped st;
00104   st.header.frame_id = "foo";
00105   st.header.stamp = ros::Time(1.0);
00106   st.child_frame_id = "child";
00107   st.transform.rotation.w = 1;
00108   EXPECT_TRUE(tfc.setTransform(st, "authority1"));
00109   EXPECT_FALSE(tfc.canTransform("foo", "bar", ros::Time().fromSec(1.0)));
00110 }
00111 
00112 
00113 int main(int argc, char **argv){
00114   testing::InitGoogleTest(&argc, argv);
00115   ros::Time::init(); //needed for ros::TIme::now()
00116   return RUN_ALL_TESTS();
00117 }


tf2
Author(s): Tully Foote, Eitan Marder-Eppstein, Wim Meeussen
autogenerated on Mon Oct 2 2017 02:24:34