rviz_robot_builder_test.cc
Go to the documentation of this file.
1 /******************************************************************************
2 Copyright (c) 2017, Alexander W. Winkler. All rights reserved.
3 
4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions are met:
6 
7 * Redistributions of source code must retain the above copyright notice, this
8  list of conditions and the following disclaimer.
9 
10 * Redistributions in binary form must reproduce the above copyright notice,
11  this list of conditions and the following disclaimer in the documentation
12  and/or other materials provided with the distribution.
13 
14 * Neither the name of the copyright holder nor the names of its
15  contributors may be used to endorse or promote products derived from
16  this software without specific prior written permission.
17 
18 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 ******************************************************************************/
29 
30 #include <gtest/gtest.h>
31 
33 
34 using namespace xpp;
35 
36 TEST(RvizRobotBuilder, BuildRobotState)
37 {
38  RvizRobotBuilder builder;
39 
40  // defines the robot state
41  xpp_msgs::RobotParameters params_msg;
42  params_msg.base_mass = 30.0; // [kg]
43  params_msg.ee_max_dev.x = params_msg.ee_max_dev.x = params_msg.ee_max_dev.z = 0.1;
44  builder.SetRobotParameters(params_msg);
45 
46  // create a biped robot standing 0.6m tall
47  xpp_msgs::RobotStateCartesian state_msg;
48  state_msg.ee_motion.resize(2);
49  state_msg.ee_forces.resize(2);
50  state_msg.base.pose.position.z = 0.6; // [m]
51  state_msg.ee_contact = { true, true };
52  state_msg.ee_motion.at(0).pos.y = 0.2; // leg leg
53  state_msg.ee_motion.at(1).pos.y = -0.2; // right leg
54  state_msg.ee_forces.at(0).z = params_msg.base_mass*9.81/2.; // leg leg
55  state_msg.ee_forces.at(1).z = params_msg.base_mass*9.81/2.; // right leg
56 
57  auto rviz_markers = builder.BuildRobotState(state_msg);
58 
59  // mostly checking for segfaults here
60  EXPECT_FALSE(rviz_markers.markers.empty());
61 }
void SetRobotParameters(const xpp_msgs::RobotParameters &msg)
Provides additional robot info that can be used for visualization.
TEST(RvizRobotBuilder, BuildRobotState)
MarkerArray BuildRobotState(const xpp_msgs::RobotStateCartesian &msg) const
Constructs the RVIZ markers from the ROS message.
Constructs RVIZ markers that visualize a Cartesian robot state.


xpp_vis
Author(s): Alexander W. Winkler
autogenerated on Sun Apr 7 2019 02:34:51