-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix whitespace preservation behavior with TinyXML2 (#359)
This addresses a change in how whitespace is preserved/collapsed between tinyxml and tinyxml2. The change primarily impacts SDF files that have newlines, which is frequently done for aesthetics with include uris. In this case, we use an alternate constructor for TinyXML2 that will collapse whitespace by default. Note that there is a performance impact of this behavior, which causes the parsing to run essentially twice. More information on the behavior may be found here: https://leethomason.github.io/tinyxml2/ Closes #322 Signed-off-by: Michael Carroll <michael@openrobotics.org> Co-authored-by: Steve Peters <scpeters@openrobotics.org>
- Loading branch information
Showing
5 changed files
with
210 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* 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 <iostream> | ||
#include <string> | ||
#include <gtest/gtest.h> | ||
|
||
#include "sdf/Actor.hh" | ||
#include "sdf/Collision.hh" | ||
#include "sdf/Filesystem.hh" | ||
#include "sdf/Geometry.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" | ||
|
||
const auto g_testPath = sdf::filesystem::append(PROJECT_SOURCE_PATH, "test"); | ||
const auto g_modelsPath = | ||
sdf::filesystem::append(g_testPath, "integration", "model"); | ||
|
||
///////////////////////////////////////////////// | ||
std::string findFileCb(const std::string &_input) | ||
{ | ||
return sdf::filesystem::append(g_testPath, "integration", "model", _input); | ||
} | ||
|
||
////////////////////////////////////////////////// | ||
TEST(WhitespaceTest, Whitespace) | ||
{ | ||
sdf::setFindCallback(findFileCb); | ||
|
||
const auto worldFile = | ||
sdf::filesystem::append(g_testPath, "sdf", "whitespace.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.6", root.Element()->OriginalVersion()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version="1.0" ?> | ||
<sdf version="1.6"> | ||
<world name="default"> | ||
|
||
<include> | ||
<uri>test_model</uri> | ||
</include> | ||
|
||
<include> | ||
<uri> | ||
test_model | ||
</uri> | ||
<name>override_model_name</name> | ||
</include> | ||
|
||
<include> | ||
<uri>test_light</uri> | ||
</include> | ||
|
||
<include> | ||
<uri> | ||
test_light | ||
</uri> | ||
<name>override_light_name</name> | ||
<pose>4 5 6 0 0 0</pose> | ||
</include> | ||
|
||
<include> | ||
<uri>test_actor</uri> | ||
</include> | ||
|
||
<include> | ||
<uri> | ||
test_actor | ||
</uri> | ||
<name>override_actor_name</name> | ||
</include> | ||
|
||
</world> | ||
</sdf> |