Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test coverage for name mangling and namespacing-specific API. #388

Merged
merged 4 commits into from
May 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ _create_topic_name(
const char * base,
const char * suffix = nullptr)
{
assert(qos_profile);
assert(base);
if (qos_profile->avoid_ros_namespace_conventions) {
prefix = nullptr;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,22 @@ RMW_FASTRTPS_SHARED_CPP_PUBLIC extern const std::vector<std::string> _ros_prefix
* \return name stripped of prefix, or
* \return "" if name doesn't start with prefix
*/
RMW_FASTRTPS_SHARED_CPP_PUBLIC
std::string
_resolve_prefix(const std::string & name, const std::string & prefix);

/// Return the ROS specific prefix if it exists, otherwise "".
RMW_FASTRTPS_SHARED_CPP_PUBLIC
std::string
_get_ros_prefix_if_exists(const std::string & topic_name);

/// Returns the topic name stripped of and ROS specific prefix if exists.
RMW_FASTRTPS_SHARED_CPP_PUBLIC
std::string
_strip_ros_prefix_if_exists(const std::string & topic_name);

/// Returns the list of ros prefixes
RMW_FASTRTPS_SHARED_CPP_PUBLIC
const std::vector<std::string> &
_get_all_ros_prefixes();
#endif // RMW_FASTRTPS_SHARED_CPP__NAMESPACE_PREFIX_HPP_
6 changes: 3 additions & 3 deletions rmw_fastrtps_shared_cpp/src/namespace_prefix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const std::vector<std::string> _ros_prefixes =
std::string
_resolve_prefix(const std::string & name, const std::string & prefix)
{
if (name.rfind(prefix, 0) == 0 && name.at(prefix.length()) == '/') {
if (name.rfind(prefix + "/", 0) == 0) {
return name.substr(prefix.length());
}
return "";
Expand All @@ -42,7 +42,7 @@ std::string
_get_ros_prefix_if_exists(const std::string & topic_name)
{
for (const auto & prefix : _ros_prefixes) {
if (topic_name.rfind(prefix, 0) == 0 && topic_name.at(prefix.length()) == '/') {
if (topic_name.rfind(prefix + "/", 0) == 0) {
return prefix;
}
}
Expand All @@ -54,7 +54,7 @@ std::string
_strip_ros_prefix_if_exists(const std::string & topic_name)
{
for (const auto & prefix : _ros_prefixes) {
if (topic_name.rfind(prefix, 0) == 0 && topic_name.at(prefix.length()) == '/') {
if (topic_name.rfind(prefix + "/", 0) == 0) {
return topic_name.substr(prefix.length());
}
}
Expand Down
6 changes: 6 additions & 0 deletions rmw_fastrtps_shared_cpp/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,9 @@ ament_add_gtest(test_guid_utils test_guid_utils.cpp)
if(TARGET test_guid_utils)
target_link_libraries(test_guid_utils ${PROJECT_NAME})
endif()

ament_add_gtest(test_names test_names.cpp)
if(TARGET test_names)
ament_target_dependencies(test_names rmw)
target_link_libraries(test_names ${PROJECT_NAME})
endif()
90 changes: 90 additions & 0 deletions rmw_fastrtps_shared_cpp/test/test_names.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
// Copyright 2020 Open Source Robotics Foundation, Inc.
//
// 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 "rmw/qos_profiles.h"

#include "rmw_fastrtps_shared_cpp/names.hpp"
#include "rmw_fastrtps_shared_cpp/namespace_prefix.hpp"

TEST(NamespaceTest, get_prefix) {
EXPECT_EQ("", _get_ros_prefix_if_exists(""));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add tests for:

  • non-empty string with no prefix
  • string with prefix but not matching '/', (i.e "rr_should_not_match")
  • string where the prefix shows up elsewhere, but '/' is in the right place i.e. ("al/so_should_not_match_rr")

Substituting 'rr' with variable 'prefix' in your loop.

I think these same tests apply to the TEST blocks below as well.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in b029a31.

EXPECT_EQ("", _get_ros_prefix_if_exists("not/a_ros_prefix"));
for (const auto & prefix : _get_all_ros_prefixes()) {
EXPECT_EQ("", _get_ros_prefix_if_exists(prefix));
EXPECT_EQ("", _get_ros_prefix_if_exists(prefix + "_should_not_match"));
EXPECT_EQ("", _get_ros_prefix_if_exists("th/is_should_not_match/" + prefix));
EXPECT_EQ(prefix, _get_ros_prefix_if_exists(prefix + "/"));
EXPECT_EQ(prefix, _get_ros_prefix_if_exists(prefix + "/should_match"));
}
}

TEST(NamespaceTest, strip_prefix) {
EXPECT_EQ("", _strip_ros_prefix_if_exists(""));
EXPECT_EQ("/no_ros_prefix/test", _strip_ros_prefix_if_exists("/no_ros_prefix/test"));
for (const auto & prefix : _get_all_ros_prefixes()) {
EXPECT_EQ(prefix, _strip_ros_prefix_if_exists(prefix));
EXPECT_EQ("/", _strip_ros_prefix_if_exists(prefix + "/"));
EXPECT_EQ(
prefix + "should_not_be_stripped",
_strip_ros_prefix_if_exists(prefix + "should_not_be_stripped"));
EXPECT_EQ(
"th/is_should_not_be_stripped/" + prefix,
_strip_ros_prefix_if_exists("th/is_should_not_be_stripped/" + prefix));
EXPECT_EQ("/should_be_stripped", _strip_ros_prefix_if_exists(prefix + "/should_be_stripped"));
}
}

TEST(NamespaceTest, resolve_prefix) {
EXPECT_EQ("", _resolve_prefix("", ""));
EXPECT_EQ("", _resolve_prefix("", "some_ros_prefix"));
EXPECT_EQ("", _resolve_prefix("/test", "some_ros_prefix"));
EXPECT_EQ("/test", _resolve_prefix("/test", ""));
EXPECT_EQ("", _resolve_prefix("some_ros_prefix", "some_ros_prefix"));
EXPECT_EQ("/", _resolve_prefix("some_ros_prefix/", "some_ros_prefix"));
EXPECT_EQ(
"/test_some_ros_prefix",
_resolve_prefix("some_ros_prefix/test_some_ros_prefix", "some_ros_prefix"));
EXPECT_EQ(
"", _resolve_prefix("some_ros_prefix_test", "some_ros_prefix"));
EXPECT_EQ(
"", _resolve_prefix("this_ros_prefix/test/some_ros_prefix", "some_ros_prefix"));
}

TEST(NamespaceTest, name_mangling) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add tests for if arguments are nullptrs.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch, had to add a few assert to avoid segfaults. See b029a31.

rmw_qos_profile_t qos_profile = rmw_qos_profile_unknown;
qos_profile.avoid_ros_namespace_conventions = false;

EXPECT_DEATH(_create_topic_name(nullptr, "", "", ""), "");

EXPECT_DEATH(_create_topic_name(&qos_profile, "", nullptr, ""), "");

EXPECT_STREQ(
"some_ros_prefix/test__suffix", _create_topic_name(
&qos_profile, "some_ros_prefix", "/test", "__suffix").c_str());

EXPECT_STREQ(
"/test__suffix", _create_topic_name(
&qos_profile, nullptr, "/test", "__suffix").c_str());

EXPECT_STREQ(
"some_ros_prefix/test", _create_topic_name(
&qos_profile, "some_ros_prefix", "/test", nullptr).c_str());

qos_profile.avoid_ros_namespace_conventions = true;
EXPECT_STREQ(
"/test__suffix", _create_topic_name(
&qos_profile, "some_ros_prefix", "/test", "__suffix").c_str());
}