Skip to content

Commit

Permalink
Add tests to exercise new API
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Perron <[email protected]>
  • Loading branch information
jacobperron committed Feb 23, 2021
1 parent 965dfbe commit fe8ab7d
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 0 deletions.
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 @@ -35,6 +35,12 @@ if(TARGET test_names)
target_link_libraries(test_names ${PROJECT_NAME})
endif()

ament_add_gtest(test_qos_profile_check_compatible test_qos_profile_check_compatible.cpp)
if(TARGET test_qos_profile_check_compatible)
ament_target_dependencies(test_qos_profile_check_compatible rmw)
target_link_libraries(test_qos_profile_check_compatible ${PROJECT_NAME})
endif()

ament_add_gtest(test_logging test_logging.cpp)
if(TARGET test_logging)
ament_target_dependencies(test_logging
Expand Down
101 changes: 101 additions & 0 deletions rmw_fastrtps_shared_cpp/test/test_qos_profile_check_compatible.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
// 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/types.h"

#include "rmw_fastrtps_shared_cpp/rmw_common.hpp"

TEST(TestQoSProfileCheckCompatible, compatible)
{
rmw_qos_profile_t qos_profile = {
RMW_QOS_POLICY_HISTORY_KEEP_LAST,
5, // history depth
RMW_QOS_POLICY_RELIABILITY_BEST_EFFORT,
RMW_QOS_POLICY_DURABILITY_VOLATILE,
{1, 0}, // deadline
{1, 0}, // lifespan
RMW_QOS_POLICY_LIVELINESS_AUTOMATIC,
{1, 0}, // liveliness lease duration
false // avoid_ros_namespace_conventions
};

rmw_qos_compatibility_type_t compatibility;
rmw_ret_t ret = rmw_fastrtps_shared_cpp::__rmw_qos_profile_check_compatible(
qos_profile,
qos_profile,
&compatibility,
nullptr,
0u);
EXPECT_EQ(ret, RMW_RET_OK);
EXPECT_EQ(compatibility, RMW_QOS_COMPATIBILITY_OK);
}

TEST(TestQoSProfileCheckCompatible, incompatible)
{
rmw_qos_profile_t pub_profile = {
RMW_QOS_POLICY_HISTORY_KEEP_LAST,
5, // history depth
RMW_QOS_POLICY_RELIABILITY_BEST_EFFORT,
RMW_QOS_POLICY_DURABILITY_VOLATILE,
{1, 0}, // deadline
{1, 0}, // lifespan
RMW_QOS_POLICY_LIVELINESS_AUTOMATIC,
{1, 0}, // liveliness lease duration
false // avoid_ros_namespace_conventions
};

rmw_qos_profile_t sub_profile = pub_profile;
sub_profile.reliability = RMW_QOS_POLICY_RELIABILITY_RELIABLE;

rmw_qos_compatibility_type_t compatibility;
rmw_ret_t ret = rmw_fastrtps_shared_cpp::__rmw_qos_profile_check_compatible(
pub_profile,
sub_profile,
&compatibility,
nullptr,
0u);
EXPECT_EQ(ret, RMW_RET_OK);
EXPECT_EQ(compatibility, RMW_QOS_COMPATIBILITY_ERROR);
}

TEST(TestQoSProfileCheckCompatible, warn_compatible)
{
rmw_qos_profile_t pub_profile = {
RMW_QOS_POLICY_HISTORY_KEEP_LAST,
5, // history depth
RMW_QOS_POLICY_RELIABILITY_BEST_EFFORT,
RMW_QOS_POLICY_DURABILITY_VOLATILE,
{1, 0}, // deadline
{1, 0}, // lifespan
RMW_QOS_POLICY_LIVELINESS_AUTOMATIC,
{1, 0}, // liveliness lease duration
false // avoid_ros_namespace_conventions
};

rmw_qos_profile_t sub_profile = pub_profile;
sub_profile.reliability = RMW_QOS_POLICY_RELIABILITY_UNKNOWN;

rmw_qos_compatibility_type_t compatibility;
rmw_ret_t ret = rmw_fastrtps_shared_cpp::__rmw_qos_profile_check_compatible(
pub_profile,
sub_profile,
&compatibility,
nullptr,
0u);
EXPECT_EQ(ret, RMW_RET_OK);
EXPECT_EQ(compatibility, RMW_QOS_COMPATIBILITY_WARNING);
}

0 comments on commit fe8ab7d

Please sign in to comment.