1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
|
/*
* Copyright 2019 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 <gtest/gtest.h>
#include <ignition/math/Pose3.hh>
#include <iostream>
#include <string>
#include "sdf/Actor.hh"
#include "sdf/Collision.hh"
#include "sdf/Filesystem.hh"
#include "sdf/Frame.hh"
#include "sdf/Geometry.hh"
#include "sdf/Joint.hh"
#include "sdf/JointAxis.hh"
#include "sdf/Light.hh"
#include "sdf/Link.hh"
#include "sdf/Mesh.hh"
#include "sdf/Model.hh"
#include "sdf/parser.hh"
#include "sdf/Root.hh"
#include "sdf/SDFImpl.hh"
#include "sdf/Visual.hh"
#include "sdf/World.hh"
#include "test_config.h"
#include "test_utils.hh"
/////////////////////////////////////////////////
std::string findFileCb(const std::string &_input)
{
return sdf::testing::TestFile("integration", "model", _input);
}
//////////////////////////////////////////////////
TEST(IncludesTest, Includes)
{
sdf::setFindCallback(findFileCb);
const auto worldFile = sdf::testing::TestFile("sdf", "includes.sdf");
sdf::Root root;
sdf::Errors errors = root.Load(worldFile);
for (auto e : errors)
std::cout << e.Message() << std::endl;
EXPECT_TRUE(errors.empty());
ASSERT_NE(nullptr, root.Element());
EXPECT_EQ(worldFile, root.Element()->FilePath());
EXPECT_EQ("1.8", root.Element()->OriginalVersion());
const sdf::World *world = root.WorldByIndex(0);
ASSERT_NE(nullptr, world);
EXPECT_EQ("1.8", world->Element()->OriginalVersion());
// Actors
EXPECT_EQ(2u, world->ActorCount());
EXPECT_FALSE(world->ActorNameExists(""));
// Actor without overrides
EXPECT_NE(nullptr, world->ActorByIndex(0));
EXPECT_TRUE(world->ActorNameExists("actor"));
const auto *actor = world->ActorByIndex(0);
EXPECT_EQ("1.6", actor->Element()->OriginalVersion());
const auto actorFile = sdf::testing::TestFile(
"integration", "model", "test_actor", "model.sdf");
EXPECT_EQ(actorFile, actor->FilePath());
EXPECT_EQ("actor", actor->Name());
EXPECT_EQ(ignition::math::Pose3d(0, 0, 0, 0, 0, 0), actor->RawPose());
EXPECT_EQ("", actor->PoseRelativeTo());
EXPECT_EQ("meshes/skin.dae", actor->SkinFilename());
EXPECT_DOUBLE_EQ(1.0, actor->SkinScale());
EXPECT_EQ(1u, actor->AnimationCount());
EXPECT_NE(nullptr, actor->AnimationByIndex(0));
EXPECT_EQ(nullptr, actor->AnimationByIndex(1));
EXPECT_EQ(actorFile, actor->AnimationByIndex(0)->FilePath());
EXPECT_EQ("meshes/animation.dae", actor->AnimationByIndex(0)->Filename());
EXPECT_DOUBLE_EQ(1.0, actor->AnimationByIndex(0)->Scale());
EXPECT_TRUE(actor->AnimationByIndex(0)->InterpolateX());
EXPECT_FALSE(actor->AnimationNameExists(""));
EXPECT_TRUE(actor->AnimationNameExists("walking"));
EXPECT_EQ(1u, actor->TrajectoryCount());
EXPECT_NE(nullptr, actor->TrajectoryByIndex(0));
EXPECT_EQ(nullptr, actor->TrajectoryByIndex(1));
EXPECT_EQ(0u, actor->TrajectoryByIndex(0)->Id());
EXPECT_EQ("walking", actor->TrajectoryByIndex(0)->Type());
EXPECT_EQ(4u, actor->TrajectoryByIndex(0)->WaypointCount());
EXPECT_TRUE(actor->TrajectoryIdExists(0));
EXPECT_FALSE(actor->TrajectoryIdExists(1));
EXPECT_TRUE(actor->ScriptLoop());
EXPECT_DOUBLE_EQ(1.0, actor->ScriptDelayStart());
EXPECT_TRUE(actor->ScriptAutoStart());
ASSERT_NE(nullptr, actor->Element());
EXPECT_FALSE(actor->Element()->HasElement("plugin"));
// Actor with overrides
EXPECT_NE(nullptr, world->ActorByIndex(1));
EXPECT_TRUE(world->ActorNameExists("override_actor_name"));
const auto *actor1 = world->ActorByIndex(1);
EXPECT_EQ("override_actor_name", actor1->Name());
EXPECT_EQ(ignition::math::Pose3d(7, 8, 9, 0, 0, 0), actor1->RawPose());
EXPECT_EQ("", actor1->PoseRelativeTo());
ASSERT_NE(nullptr, actor1->Element());
EXPECT_TRUE(actor1->Element()->HasElement("plugin"));
// Lights
EXPECT_EQ(2u, world->LightCount());
EXPECT_FALSE(world->LightNameExists(""));
// Light without overrides
const auto *pointLight = world->LightByIndex(0);
ASSERT_NE(nullptr, pointLight);
EXPECT_EQ("point_light", pointLight->Name());
EXPECT_EQ(sdf::LightType::POINT, pointLight->Type());
EXPECT_FALSE(pointLight->CastShadows());
EXPECT_EQ(ignition::math::Pose3d(1, 2, 10, 0, 0, 0), pointLight->RawPose());
EXPECT_EQ("world", pointLight->PoseRelativeTo());
EXPECT_DOUBLE_EQ(123.5, pointLight->AttenuationRange());
EXPECT_DOUBLE_EQ(1.0, pointLight->LinearAttenuationFactor());
EXPECT_DOUBLE_EQ(0.0, pointLight->ConstantAttenuationFactor());
EXPECT_DOUBLE_EQ(20.2, pointLight->QuadraticAttenuationFactor());
EXPECT_EQ("1.6", pointLight->Element()->OriginalVersion());
ASSERT_NE(nullptr, pointLight->Element());
// Light with overrides
const auto *pointLight1 = world->LightByIndex(1);
ASSERT_NE(nullptr, pointLight1);
EXPECT_EQ("override_light_name", pointLight1->Name());
EXPECT_EQ(ignition::math::Pose3d(4, 5, 6, 0, 0, 0), pointLight1->RawPose());
EXPECT_EQ("", pointLight1->PoseRelativeTo());
// Models
EXPECT_EQ(3u, world->ModelCount());
EXPECT_FALSE(world->ModelNameExists(""));
// Model without overrides
const sdf::Model *model = world->ModelByIndex(0);
ASSERT_NE(nullptr, model);
EXPECT_EQ("test_model", model->Name());
EXPECT_FALSE(model->Static());
EXPECT_EQ(1u, model->LinkCount());
ASSERT_FALSE(nullptr == model->LinkByIndex(0));
ASSERT_FALSE(nullptr == model->LinkByName("link"));
EXPECT_EQ(model->LinkByName("link")->Name(), model->LinkByIndex(0)->Name());
EXPECT_TRUE(nullptr == model->LinkByIndex(1));
EXPECT_TRUE(model->LinkNameExists("link"));
EXPECT_FALSE(model->LinkNameExists("coconut"));
EXPECT_EQ("1.6", model->Element()->OriginalVersion());
const auto modelFile = sdf::testing::TestFile(
"integration", "model", "test_model", "model.sdf");
const auto *link = model->LinkByName("link");
ASSERT_NE(nullptr, link);
EXPECT_EQ("1.6", link->Element()->OriginalVersion());
const auto *meshCol = link->CollisionByName("mesh_col");
ASSERT_NE(nullptr, meshCol);
ASSERT_NE(nullptr, meshCol->Geom());
EXPECT_EQ(sdf::GeometryType::MESH, meshCol->Geom()->Type());
const auto *meshColGeom = meshCol->Geom()->MeshShape();
ASSERT_NE(nullptr, meshColGeom);
EXPECT_EQ("meshes/mesh.dae", meshColGeom->Uri());
EXPECT_EQ(modelFile, meshColGeom->FilePath());
EXPECT_TRUE(ignition::math::Vector3d(0.1, 0.2, 0.3) ==
meshColGeom->Scale());
EXPECT_EQ("my_submesh", meshColGeom->Submesh());
EXPECT_TRUE(meshColGeom->CenterSubmesh());
const auto *meshVis = link->VisualByName("mesh_vis");
ASSERT_NE(nullptr, meshVis);
ASSERT_NE(nullptr, meshVis->Geom());
EXPECT_EQ(sdf::GeometryType::MESH, meshVis->Geom()->Type());
const auto *meshVisGeom = meshVis->Geom()->MeshShape();
EXPECT_EQ(modelFile, meshVisGeom->FilePath());
EXPECT_EQ("meshes/mesh.dae", meshVisGeom->Uri());
EXPECT_TRUE(ignition::math::Vector3d(1.2, 2.3, 3.4) ==
meshVisGeom->Scale());
EXPECT_EQ("another_submesh", meshVisGeom->Submesh());
EXPECT_FALSE(meshVisGeom->CenterSubmesh());
ASSERT_NE(nullptr, model->Element());
EXPECT_FALSE(model->Element()->HasElement("plugin"));
// Model with overrides
const sdf::Model *model1 = world->ModelByIndex(1);
ASSERT_NE(nullptr, model1);
EXPECT_EQ("override_model_name", model1->Name());
EXPECT_TRUE(model1->Static());
EXPECT_EQ(ignition::math::Pose3d(1, 2, 3, 0, 0, 0), model1->RawPose());
EXPECT_EQ("", model1->PoseRelativeTo());
ASSERT_NE(nullptr, model1->Element());
EXPECT_TRUE(model1->Element()->HasElement("plugin"));
const sdf::Model *model2 = world->ModelByIndex(2);
ASSERT_NE(nullptr, model2);
EXPECT_EQ("test_model_with_file", model2->Name());
EXPECT_FALSE(model2->Static());
EXPECT_EQ(1u, model2->LinkCount());
ASSERT_NE(nullptr, model2->LinkByIndex(0));
ASSERT_NE(nullptr, model2->LinkByName("link"));
EXPECT_EQ(model2->LinkByName("link")->Name(), model2->LinkByIndex(0)->Name());
EXPECT_EQ(nullptr, model2->LinkByIndex(1));
EXPECT_TRUE(model2->LinkNameExists("link"));
EXPECT_FALSE(model2->LinkNameExists("coconut"));
EXPECT_EQ("1.6", model2->Element()->OriginalVersion());
}
//////////////////////////////////////////////////
TEST(IncludesTest, Includes_15)
{
sdf::setFindCallback(findFileCb);
const auto worldFile = sdf::testing::TestFile("sdf", "includes_1.5.sdf");
sdf::Root root;
sdf::Errors errors = root.Load(worldFile);
for (auto e : errors)
std::cout << e.Message() << std::endl;
EXPECT_TRUE(errors.empty());
ASSERT_NE(nullptr, root.Element());
EXPECT_EQ(worldFile, root.Element()->FilePath());
const sdf::World *world = root.WorldByIndex(0);
ASSERT_NE(nullptr, world);
// Actor
EXPECT_EQ(1u, world->ActorCount());
EXPECT_NE(nullptr, world->ActorByIndex(0));
EXPECT_EQ(nullptr, world->ActorByIndex(1));
EXPECT_FALSE(world->ActorNameExists(""));
EXPECT_TRUE(world->ActorNameExists("actor"));
const auto *actor = world->ActorByIndex(0);
// Light
EXPECT_EQ(1u, world->LightCount());
const auto *pointLight = world->LightByIndex(0);
ASSERT_NE(nullptr, pointLight);
EXPECT_EQ("point_light", pointLight->Name());
EXPECT_EQ(sdf::LightType::POINT, pointLight->Type());
// Model
const sdf::Model *model = world->ModelByIndex(0);
ASSERT_NE(nullptr, model);
EXPECT_EQ("test_model", model->Name());
EXPECT_EQ(1u, model->LinkCount());
ASSERT_FALSE(nullptr == model->LinkByName("link"));
const auto *link = model->LinkByName("link");
ASSERT_NE(nullptr, link);
// The root and world were version 1.5
EXPECT_EQ("1.5", root.Element()->OriginalVersion());
EXPECT_EQ("1.5", world->Element()->OriginalVersion());
// The included models were version 1.6
EXPECT_EQ("1.6", actor->Element()->OriginalVersion());
EXPECT_EQ("1.6", pointLight->Element()->OriginalVersion());
EXPECT_EQ("1.6", model->Element()->OriginalVersion());
EXPECT_EQ("1.6", link->Element()->OriginalVersion());
}
//////////////////////////////////////////////////
TEST(IncludesTest, Includes_15_convert)
{
sdf::setFindCallback(findFileCb);
const auto worldFile = sdf::testing::TestFile("sdf", "includes_1.5.sdf");
sdf::SDFPtr sdf(new sdf::SDF());
sdf::init(sdf);
EXPECT_TRUE(sdf::convertFile(worldFile, "1.7", sdf));
sdf::ElementPtr rootElem = sdf->Root();
ASSERT_NE(nullptr, rootElem);
// it is parsed to 1.7
EXPECT_EQ("1.7", rootElem->Get<std::string>("version"));
sdf::ElementPtr worldElem = rootElem->GetElement("world");
ASSERT_NE(nullptr, worldElem);
EXPECT_EQ(worldElem->Get<std::string>("name"), "default");
sdf::ElementPtr actorElem = worldElem->GetElement("actor");
ASSERT_NE(nullptr, actorElem);
EXPECT_EQ(actorElem->Get<std::string>("name"), "actor");
sdf::ElementPtr lightElem = worldElem->GetElement("light");
ASSERT_NE(nullptr, lightElem);
EXPECT_EQ(lightElem->Get<std::string>("name"), "point_light");
sdf::ElementPtr modelElem = worldElem->GetElement("model");
ASSERT_NE(nullptr, modelElem);
EXPECT_EQ(modelElem->Get<std::string>("name"), "test_model");
sdf::ElementPtr linkElem = modelElem->GetElement("link");
ASSERT_NE(nullptr, linkElem);
EXPECT_EQ(linkElem->Get<std::string>("name"), "link");
// The root and world were version 1.5
EXPECT_EQ("1.5", sdf->OriginalVersion());
EXPECT_EQ("1.5", rootElem->OriginalVersion());
EXPECT_EQ("1.5", worldElem->OriginalVersion());
// The included models were version 1.6
EXPECT_EQ("1.6", actorElem->OriginalVersion());
EXPECT_EQ("1.6", lightElem->OriginalVersion());
EXPECT_EQ("1.6", modelElem->OriginalVersion());
EXPECT_EQ("1.6", linkElem->OriginalVersion());
}
//////////////////////////////////////////////////
TEST(IncludesTest, IncludeModelMissingConfig)
{
sdf::setFindCallback(findFileCb);
std::ostringstream stream;
stream
<< "<sdf version='" << SDF_VERSION << "'>"
<< "<include>"
<< " <uri>box_missing_config</uri>"
<< "</include>"
<< "</sdf>";
sdf::SDFPtr sdfParsed(new sdf::SDF());
sdf::init(sdfParsed);
sdf::Errors errors;
ASSERT_TRUE(sdf::readString(stream.str(), sdfParsed, errors));
ASSERT_GE(1u, errors.size());
EXPECT_EQ(1u, errors.size());
std::cout << errors[0] << std::endl;
EXPECT_EQ(errors[0].Code(), sdf::ErrorCode::URI_LOOKUP);
EXPECT_NE(std::string::npos, errors[0].Message().find(
"Unable to resolve uri[box_missing_config] to model path")) << errors[0];
EXPECT_NE(std::string::npos, errors[0].Message().find(
"box_missing_config] since it does not contain a model.config file"))
<< errors[0];
sdf::Root root;
errors = root.Load(sdfParsed);
for (auto e : errors)
std::cout << e.Message() << std::endl;
EXPECT_TRUE(errors.empty());
EXPECT_EQ(nullptr, root.Model());
}
//////////////////////////////////////////////////
/// Check that sdformat natively parses URDF files when there are no custom
/// parsers
TEST(IncludesTest, IncludeUrdf)
{
sdf::setFindCallback(findFileCb);
std::ostringstream stream;
stream
<< "<sdf version='" << SDF_VERSION << "'>"
<< "<include>"
<< " <uri>test_include_urdf</uri>"
<< "</include>"
<< "</sdf>";
sdf::Root root;
sdf::Errors errors = root.LoadSdfString(stream.str());
ASSERT_TRUE(errors.empty()) << errors;
auto model = root.Model();
ASSERT_NE(nullptr, model);
EXPECT_EQ("test_include_urdf", model->Name());
EXPECT_EQ(2u, model->LinkCount());
EXPECT_EQ(1u, model->JointCount());
}
//////////////////////////////////////////////////
TEST(IncludesTest, MergeInclude)
{
using ignition::math::Pose3d;
using ignition::math::Vector3d;
sdf::ParserConfig config;
config.SetFindCallback(findFileCb);
sdf::Root root;
sdf::Errors errors = root.Load(
sdf::testing::TestFile("integration", "merge_include_model.sdf"), config);
EXPECT_TRUE(errors.empty()) << errors;
auto world = root.WorldByIndex(0);
ASSERT_NE(nullptr, world);
auto model = world->ModelByIndex(0);
EXPECT_EQ("robot1", model->Name());
EXPECT_EQ(5u, model->LinkCount());
EXPECT_EQ(4u, model->JointCount());
EXPECT_EQ(1u, model->ModelCount());
ASSERT_NE(nullptr, model->CanonicalLink());
EXPECT_EQ(model->LinkByIndex(0), model->CanonicalLink());
std::string prefixedFrameName;
{
sdf::Root includedModel;
errors = includedModel.Load(
sdf::testing::TestFile("integration", "model",
"merge_robot", "model.sdf"));
EXPECT_TRUE(errors.empty()) << errors;
ASSERT_NE(nullptr, includedModel.Model());
prefixedFrameName = "_merged__"
+ includedModel.Model()->Name() + "__model__";
}
auto resolvePose = [](const sdf::SemanticPose &_semPose)
{
Pose3d result;
sdf::Errors poseErrors = _semPose.Resolve(result);
EXPECT_TRUE(poseErrors.empty()) << poseErrors;
return result;
};
// X_PM - Pose of original model (M) in parent model (P) frame. This is the
// pose override in the //include tag.
const Pose3d X_PM(100, 0, 0, IGN_PI_4, 0, 0);
// X_MRw - Pose of the right wheel in the original model (M) as specified in
// the SDFormat file.
const Pose3d X_MRw(0.554282, -0.625029, -0.025, -1.5707, 0, 0);
// X_MLw - Pose of the left wheel in the original model (M) as specified in
// the SDF file.
const Pose3d X_MLw(0.554282, 0.625029, -0.025, -1.5707, 0, 0);
// Check some poses
{
// Link "chassis"
auto testFrame = model->LinkByName("chassis");
ASSERT_NE(nullptr, testFrame);
EXPECT_EQ(prefixedFrameName, testFrame->PoseRelativeTo());
const Pose3d testPose = resolvePose(testFrame->SemanticPose());
// X_MC - Pose of chassis link(C) in the original model (M) as specified in
// the SDF file.
const Pose3d X_MC(-0.151427, 0, 0.175, 0, 0, 0);
const Pose3d expectedPose = X_PM * X_MC;
EXPECT_EQ(expectedPose, testPose);
}
{
// Link "top"
auto testFrame = model->LinkByName("top");
ASSERT_NE(nullptr, testFrame);
EXPECT_EQ(prefixedFrameName, testFrame->PoseRelativeTo());
const Pose3d testPose = resolvePose(testFrame->SemanticPose());
// From SDFormat file
// X_MT - Pose of top link(T) in the original model (M) as specified in
// the SDF file.
const Pose3d X_MT(0.6, 0, 0.7, 0, 0, 0);
const Pose3d expectedPose = X_PM * X_MT;
EXPECT_EQ(expectedPose, testPose);
}
{
// The pose of right_wheel_joint is specified relative to __model__.
auto testFrame = model->JointByName("right_wheel_joint");
ASSERT_NE(nullptr, testFrame);
EXPECT_EQ(prefixedFrameName, testFrame->PoseRelativeTo());
// Resolve the pose relative to it's child frame (right_wheel)
const Pose3d testPose = resolvePose(testFrame->SemanticPose());
// From SDFormat file
// X_MJr - Pose of right_wheel_joint (Jr) in the original model (M) as
// specified in the SDF file.
const Pose3d X_MJr(1, 0, 0, 0, 0, 0);
const Pose3d expectedPose = X_MRw.Inverse() * X_MJr;
EXPECT_EQ(expectedPose, testPose);
}
{
// The pose of sensor_frame is specified relative to __model__.
auto testFrame = model->FrameByName("sensor_frame");
ASSERT_NE(nullptr, testFrame);
EXPECT_EQ(prefixedFrameName, testFrame->PoseRelativeTo());
// Resolve the pose relative to it's child frame (right_wheel)
const Pose3d testPose = resolvePose(testFrame->SemanticPose());
// From SDFormat file
// X_MS - Pose of sensor_frame (S) in the original model (M) as
// specified in the SDF file.
const Pose3d X_MS(0, 1, 0, 0, IGN_PI_4, 0);
const Pose3d expectedPose = X_PM * X_MS;
EXPECT_EQ(expectedPose, testPose);
}
// Check joint axes
{
// left_wheel_joint's axis is expressed in __model__.
auto joint = model->JointByName("left_wheel_joint");
ASSERT_NE(nullptr, joint);
auto axis = joint->Axis(0);
ASSERT_NE(nullptr, axis);
Vector3d xyz;
sdf::Errors resolveErrors = axis->ResolveXyz(xyz);
EXPECT_TRUE(resolveErrors.empty()) << resolveErrors;
// From SDFormat file
// R_MJl - Rotation of left_wheel_joint (Jl) in the original model (M) as
// specified in the SDF file. This is the same as R_MLw since //joint/pose
// is identity.
const auto R_MJl = X_MLw.Rot();
Vector3d xyzInOrigModel(0, 0, 1);
Vector3d expectedXyz = R_MJl.Inverse() * xyzInOrigModel;
EXPECT_EQ(expectedXyz, xyz);
}
// Verify that plugins get merged
auto modelElem = model->Element();
ASSERT_NE(nullptr, modelElem);
auto pluginElem = modelElem->FindElement("plugin");
ASSERT_NE(nullptr, pluginElem);
EXPECT_EQ("test", pluginElem->Get<std::string>("name"));
// Verify that custom elements get merged
auto customFoo = modelElem->FindElement("custom:foo");
ASSERT_NE(nullptr, customFoo);
EXPECT_EQ("baz", customFoo->Get<std::string>("name"));
// Verify that other non-named elements, such as <static> and <enable_wind> do
// *NOT* get merged. This is also true for unknown elements
EXPECT_FALSE(modelElem->HasElement("unknown_element"));
EXPECT_FALSE(modelElem->HasElement("enable_wind"));
EXPECT_FALSE(modelElem->HasElement("static"));
}
//////////////////////////////////////////////////
TEST(IncludesTest, MergeIncludePlacementFrame)
{
using ignition::math::Pose3d;
sdf::ParserConfig config;
config.SetFindCallback(findFileCb);
sdf::Root root;
sdf::Errors errors = root.Load(
sdf::testing::TestFile("integration", "merge_include_model.sdf"), config);
ASSERT_TRUE(errors.empty()) << errors;
auto world = root.WorldByIndex(0);
ASSERT_NE(nullptr, world);
auto model = world->ModelByIndex(1);
EXPECT_EQ("robot2", model->Name());
EXPECT_EQ(5u, model->LinkCount());
EXPECT_EQ(4u, model->JointCount());
auto topLink = model->LinkByName("top");
ASSERT_NE(nullptr, topLink);
Pose3d topLinkPose;
EXPECT_TRUE(topLink->SemanticPose().Resolve(topLinkPose).empty());
// From SDFormat file
Pose3d expectedtopLinkPose = Pose3d(0, 0, 2, 0, 0, 0);
EXPECT_EQ(expectedtopLinkPose, topLinkPose);
}
//////////////////////////////////////////////////
TEST(IncludesTest, InvalidMergeInclude)
{
sdf::ParserConfig config;
// Using the "file://" URI scheme to allow multiple search paths
config.AddURIPath("file://", sdf::testing::TestFile("sdf"));
config.AddURIPath("file://", sdf::testing::TestFile("integration", "model"));
// Models that are not valid by themselves
{
const std::string sdfString = R"(
<sdf version="1.9">
<model name="M">
<link name="L"/>
<include merge="true">
<uri>file://model_invalid_frame_only.sdf</uri> <!-- NOLINT -->
</include>
</model>
</sdf>)"; // NOLINT
sdf::Root root;
sdf::Errors errors = root.LoadSdfString(sdfString, config);
ASSERT_FALSE(errors.empty());
EXPECT_EQ(sdf::ErrorCode::MODEL_WITHOUT_LINK, errors[0].Code());
}
{
const std::string sdfString = R"(
<sdf version="1.9">
<model name="M">
<include merge="true">
<uri>file://model_invalid_link_relative_to.sdf</uri> <!-- NOLINT -->
</include>
</model>
</sdf>)";
sdf::Root root;
sdf::Errors errors = root.LoadSdfString(sdfString, config);
ASSERT_FALSE(errors.empty());
EXPECT_EQ(sdf::ErrorCode::POSE_RELATIVE_TO_INVALID, errors[0].Code());
}
// Actors are not supported for merging
{
const std::string sdfString = R"(
<sdf version="1.9">
<actor name="A">
<include merge="true">
<uri>file://test_actor</uri> <!-- NOLINT -->
</include>
</actor>
</sdf>)";
sdf::Root root;
sdf::Errors errors = root.LoadSdfString(sdfString, config);
ASSERT_FALSE(errors.empty());
EXPECT_EQ(sdf::ErrorCode::MERGE_INCLUDE_UNSUPPORTED, errors[0].Code());
EXPECT_EQ(4, *errors[0].LineNumber());
}
// Lights are not supported for merging
{
const std::string sdfString = R"(
<sdf version="1.9">
<light name="Lt" type="spot">
<include merge="true">
<uri>file://test_light</uri> <!-- NOLINT -->
</include>
</light>
</sdf>)";
sdf::Root root;
sdf::Errors errors = root.LoadSdfString(sdfString, config);
ASSERT_FALSE(errors.empty());
EXPECT_EQ(sdf::ErrorCode::MERGE_INCLUDE_UNSUPPORTED, errors[0].Code());
EXPECT_EQ("Merge-include is only supported for included models",
errors[0].Message());
EXPECT_EQ(4, *errors[0].LineNumber());
}
// merge-include cannot be used directly under //world
{
const std::string sdfString = R"(
<sdf version="1.9">
<world name="default">
<include merge="true">
<uri>file://merge_robot</uri> <!-- NOLINT -->
</include>
</world>
</sdf>)";
sdf::Root root;
sdf::Errors errors = root.LoadSdfString(sdfString, config);
ASSERT_FALSE(errors.empty());
EXPECT_EQ(sdf::ErrorCode::MERGE_INCLUDE_UNSUPPORTED, errors[0].Code());
EXPECT_EQ("Merge-include does not support parent element of type world",
errors[0].Message());
EXPECT_EQ(4, errors[0].LineNumber());
}
// Syntax error in included file
{
// Redirect sdferr output
std::stringstream buffer;
sdf::testing::RedirectConsoleStream redir(
sdf::Console::Instance()->GetMsgStream(), &buffer);
#ifdef _WIN32
sdf::Console::Instance()->SetQuiet(false);
sdf::testing::ScopeExit revertSetQuiet(
[]
{
sdf::Console::Instance()->SetQuiet(true);
});
#endif
const std::string sdfString = R"(
<sdf version="1.9">
<world name="default">
<include merge="true">
<uri>file://invalid_xml_syntax.sdf</uri> <!-- NOLINT -->
</include>
</world>
</sdf>)";
sdf::Root root;
sdf::Errors errors = root.LoadSdfString(sdfString, config);
ASSERT_FALSE(errors.empty());
EXPECT_EQ(sdf::ErrorCode::FILE_READ, errors[0].Code());
EXPECT_EQ(0u, errors[0].Message().find("Unable to read file"));
EXPECT_EQ(5, *errors[0].LineNumber());
EXPECT_TRUE(buffer.str().find("Error parsing XML in file") !=
std::string::npos) << buffer.str();
}
}
|