pxmlw6n2f/Gazebo_Distributed_TCP/gazebo/gui/model/LinkConfig_TEST.cc

130 lines
3.5 KiB
C++

/*
* Copyright (C) 2015 Open Source Robotics Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include "gazebo/gui/ConfigWidget.hh"
#include "gazebo/gui/model/LinkConfig.hh"
#include "gazebo/gui/model/LinkConfig_TEST.hh"
#include "test_config.h"
using namespace gazebo;
using namespace gui;
/////////////////////////////////////////////////
void LinkConfig_TEST::Initialization()
{
LinkConfig lc;
const ConfigWidget *cw = lc.LinkConfigWidget();
QVERIFY(cw != NULL);
QCOMPARE(cw->DoubleWidgetValue("inertial::mass"), 1.0);
QCOMPARE(cw->DoubleWidgetValue("inertial::ixx"), 1.0);
QCOMPARE(cw->DoubleWidgetValue("inertial::iyy"), 1.0);
QCOMPARE(cw->DoubleWidgetValue("inertial::izz"), 1.0);
QVERIFY(cw->BoolWidgetValue("gravity"));
QVERIFY(!cw->BoolWidgetValue("self_collide"));
QVERIFY(!cw->BoolWidgetValue("kinematic"));
}
/////////////////////////////////////////////////
void LinkConfig_TEST::LinkMsgUpdate()
{
gazebo::gui::LinkConfig lc;
msgs::LinkPtr linkMsgPtr(new msgs::Link);
const ConfigWidget *cw = lc.LinkConfigWidget();
QVERIFY(cw != NULL);
linkMsgPtr->set_gravity(false);
linkMsgPtr->set_self_collide(true);
linkMsgPtr->set_kinematic(true);
lc.Update(linkMsgPtr);
QVERIFY(!cw->BoolWidgetValue("gravity"));
QVERIFY(cw->BoolWidgetValue("self_collide"));
QVERIFY(cw->BoolWidgetValue("kinematic"));
}
/////////////////////////////////////////////////
void LinkConfig_TEST::PoseUpdate()
{
gazebo::gui::LinkConfig lc;
const ignition::math::Pose3d pose(5.0, 10.0, 15.0, -0.1, -0.2, -0.3);
const ConfigWidget *cw = lc.LinkConfigWidget();
QVERIFY(cw != NULL);
lc.SetPose(pose);
ignition::math::Pose3d p = cw->PoseWidgetValue("pose");
QCOMPARE(p, pose);
}
/////////////////////////////////////////////////
void LinkConfig_TEST::MassUpdate()
{
gazebo::gui::LinkConfig lc;
const ConfigWidget *cw = lc.LinkConfigWidget();
QVERIFY(cw != NULL);
lc.SetMass(50.0);
QCOMPARE(cw->DoubleWidgetValue("inertial::mass"), 50.0);
}
/////////////////////////////////////////////////
void LinkConfig_TEST::InertiaMatrixUpdate()
{
gazebo::gui::LinkConfig lc;
const ConfigWidget *cw = lc.LinkConfigWidget();
QVERIFY(cw != NULL);
lc.SetInertiaMatrix(1.0, 2.0, 3.0, 4.0, 5.0, 6.0);
QCOMPARE(cw->DoubleWidgetValue("inertial::ixx"), 1.0);
QCOMPARE(cw->DoubleWidgetValue("inertial::iyy"), 2.0);
QCOMPARE(cw->DoubleWidgetValue("inertial::izz"), 3.0);
QCOMPARE(cw->DoubleWidgetValue("inertial::ixy"), 4.0);
QCOMPARE(cw->DoubleWidgetValue("inertial::ixz"), 5.0);
QCOMPARE(cw->DoubleWidgetValue("inertial::iyz"), 6.0);
}
/////////////////////////////////////////////////
void LinkConfig_TEST::InertialPoseUpdate()
{
gazebo::gui::LinkConfig lc;
const ignition::math::Pose3d pose(5.0, 10.0, 15.0, -0.1, -0.2, -0.3);
const ConfigWidget *cw = lc.LinkConfigWidget();
QVERIFY(cw != NULL);
lc.SetInertialPose(pose);
ignition::math::Pose3d p = cw->PoseWidgetValue("inertial::pose");
QCOMPARE(p, pose);
QCOMPARE(p.Pos().X(), pose.Pos().X());
}
// Generate a main function for the test
QTEST_MAIN(LinkConfig_TEST)