add humble-navigation2
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
include_directories(${PROJECT_SOURCE_DIR}/test)
|
||||
|
||||
# map_io unit test
|
||||
ament_add_gtest(test_map_io test_map_io.cpp ${PROJECT_SOURCE_DIR}/test/test_constants.cpp)
|
||||
|
||||
ament_target_dependencies(test_map_io rclcpp nav_msgs)
|
||||
|
||||
target_link_libraries(test_map_io
|
||||
${map_io_library_name}
|
||||
)
|
||||
|
||||
# costmap_filter_info_server unit test
|
||||
ament_add_gtest(test_costmap_filter_info_server
|
||||
test_costmap_filter_info_server.cpp
|
||||
)
|
||||
|
||||
ament_target_dependencies(test_costmap_filter_info_server rclcpp)
|
||||
|
||||
target_link_libraries(test_costmap_filter_info_server
|
||||
${library_name}
|
||||
)
|
||||
@@ -0,0 +1,177 @@
|
||||
// Copyright (c) 2020 Samsung Research Russia
|
||||
//
|
||||
// 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 <string>
|
||||
#include <memory>
|
||||
#include <chrono>
|
||||
#include <limits>
|
||||
#include <mutex>
|
||||
|
||||
#include "rclcpp/rclcpp.hpp"
|
||||
|
||||
#include "nav2_map_server/costmap_filter_info_server.hpp"
|
||||
|
||||
using namespace std::chrono_literals;
|
||||
|
||||
typedef std::recursive_mutex mutex_t;
|
||||
|
||||
static const char FILTER_INFO_TOPIC[] = "filter_info";
|
||||
static const int TYPE = 1;
|
||||
static const char MASK_TOPIC[] = "mask";
|
||||
static const double BASE = 0.1;
|
||||
static const double MULTIPLIER = 0.2;
|
||||
|
||||
static const double EPSILON = std::numeric_limits<float>::epsilon();
|
||||
|
||||
class RclCppFixture
|
||||
{
|
||||
public:
|
||||
RclCppFixture() {rclcpp::init(0, nullptr);}
|
||||
~RclCppFixture() {rclcpp::shutdown();}
|
||||
};
|
||||
RclCppFixture g_rclcppfixture;
|
||||
|
||||
class InfoServerWrapper : public nav2_map_server::CostmapFilterInfoServer
|
||||
{
|
||||
public:
|
||||
void start()
|
||||
{
|
||||
on_configure(get_current_state());
|
||||
on_activate(get_current_state());
|
||||
}
|
||||
|
||||
void stop()
|
||||
{
|
||||
on_deactivate(get_current_state());
|
||||
on_cleanup(get_current_state());
|
||||
on_shutdown(get_current_state());
|
||||
}
|
||||
|
||||
void deactivate()
|
||||
{
|
||||
on_deactivate(get_current_state());
|
||||
}
|
||||
|
||||
void activate()
|
||||
{
|
||||
on_activate(get_current_state());
|
||||
}
|
||||
};
|
||||
|
||||
class InfoServerTester : public ::testing::Test
|
||||
{
|
||||
public:
|
||||
InfoServerTester()
|
||||
: info_server_(nullptr), info_(nullptr), subscription_(nullptr)
|
||||
{
|
||||
access_ = new mutex_t();
|
||||
|
||||
info_server_ = std::make_shared<InfoServerWrapper>();
|
||||
try {
|
||||
info_server_->set_parameter(rclcpp::Parameter("filter_info_topic", FILTER_INFO_TOPIC));
|
||||
info_server_->set_parameter(rclcpp::Parameter("type", TYPE));
|
||||
info_server_->set_parameter(rclcpp::Parameter("mask_topic", MASK_TOPIC));
|
||||
info_server_->set_parameter(rclcpp::Parameter("base", BASE));
|
||||
info_server_->set_parameter(rclcpp::Parameter("multiplier", MULTIPLIER));
|
||||
} catch (rclcpp::exceptions::ParameterNotDeclaredException & ex) {
|
||||
RCLCPP_ERROR(
|
||||
info_server_->get_logger(),
|
||||
"Error while setting parameters for CostmapFilterInfoServer: %s", ex.what());
|
||||
throw;
|
||||
}
|
||||
|
||||
info_server_->start();
|
||||
|
||||
subscription_ = info_server_->create_subscription<nav2_msgs::msg::CostmapFilterInfo>(
|
||||
FILTER_INFO_TOPIC, rclcpp::QoS(rclcpp::KeepLast(1)).transient_local().reliable(),
|
||||
std::bind(&InfoServerTester::infoCallback, this, std::placeholders::_1));
|
||||
}
|
||||
|
||||
~InfoServerTester()
|
||||
{
|
||||
info_server_->stop();
|
||||
info_server_.reset();
|
||||
subscription_.reset();
|
||||
}
|
||||
|
||||
bool isReceived()
|
||||
{
|
||||
std::lock_guard<mutex_t> guard(*getMutex());
|
||||
if (info_) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
mutex_t * getMutex()
|
||||
{
|
||||
return access_;
|
||||
}
|
||||
|
||||
protected:
|
||||
std::shared_ptr<InfoServerWrapper> info_server_;
|
||||
nav2_msgs::msg::CostmapFilterInfo::SharedPtr info_;
|
||||
|
||||
private:
|
||||
void infoCallback(const nav2_msgs::msg::CostmapFilterInfo::SharedPtr msg)
|
||||
{
|
||||
std::lock_guard<mutex_t> guard(*getMutex());
|
||||
info_ = msg;
|
||||
}
|
||||
|
||||
rclcpp::Subscription<nav2_msgs::msg::CostmapFilterInfo>::SharedPtr subscription_;
|
||||
|
||||
mutex_t * access_;
|
||||
};
|
||||
|
||||
TEST_F(InfoServerTester, testCostmapFilterInfoPublish)
|
||||
{
|
||||
rclcpp::Time start_time = info_server_->now();
|
||||
while (!isReceived()) {
|
||||
rclcpp::spin_some(info_server_->get_node_base_interface());
|
||||
std::this_thread::sleep_for(100ms);
|
||||
// Waiting no more than 5 seconds
|
||||
ASSERT_TRUE((info_server_->now() - start_time) <= rclcpp::Duration(5000ms));
|
||||
}
|
||||
|
||||
// Checking received CostmapFilterInfo for consistency
|
||||
EXPECT_EQ(info_->type, TYPE);
|
||||
EXPECT_EQ(info_->filter_mask_topic, MASK_TOPIC);
|
||||
EXPECT_NEAR(info_->base, BASE, EPSILON);
|
||||
EXPECT_NEAR(info_->multiplier, MULTIPLIER, EPSILON);
|
||||
}
|
||||
|
||||
TEST_F(InfoServerTester, testCostmapFilterInfoDeactivateActivate)
|
||||
{
|
||||
info_server_->deactivate();
|
||||
info_ = nullptr;
|
||||
info_server_->activate();
|
||||
|
||||
rclcpp::Time start_time = info_server_->now();
|
||||
while (!isReceived()) {
|
||||
rclcpp::spin_some(info_server_->get_node_base_interface());
|
||||
std::this_thread::sleep_for(100ms);
|
||||
// Waiting no more than 5 seconds
|
||||
ASSERT_TRUE((info_server_->now() - start_time) <= rclcpp::Duration(5000ms));
|
||||
}
|
||||
|
||||
// Checking received CostmapFilterInfo for consistency
|
||||
EXPECT_EQ(info_->type, TYPE);
|
||||
EXPECT_EQ(info_->filter_mask_topic, MASK_TOPIC);
|
||||
EXPECT_NEAR(info_->base, BASE, EPSILON);
|
||||
EXPECT_NEAR(info_->multiplier, MULTIPLIER, EPSILON);
|
||||
}
|
||||
@@ -0,0 +1,340 @@
|
||||
// Copyright 2019 Rover Robotics
|
||||
|
||||
/*
|
||||
* Copyright (c) 2008, Willow Garage, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* * Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* * Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* * Neither the name of the Willow Garage, Inc. nor the names of its
|
||||
* contributors may be used to endorse or promote products derived from
|
||||
* this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
||||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/* Author: Brian Gerkey */
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include <filesystem>
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <memory>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
|
||||
#include "yaml-cpp/yaml.h"
|
||||
#include "nav2_map_server/map_io.hpp"
|
||||
#include "nav2_map_server/map_server.hpp"
|
||||
#include "nav2_util/lifecycle_node.hpp"
|
||||
#include "test_constants/test_constants.h"
|
||||
|
||||
#define TEST_DIR TEST_DIRECTORY
|
||||
|
||||
using namespace std; // NOLINT
|
||||
using namespace nav2_map_server; // NOLINT
|
||||
using std::filesystem::path;
|
||||
|
||||
class RclCppFixture
|
||||
{
|
||||
public:
|
||||
RclCppFixture() {rclcpp::init(0, nullptr);}
|
||||
~RclCppFixture() {rclcpp::shutdown();}
|
||||
};
|
||||
|
||||
RclCppFixture g_rclcppfixture;
|
||||
|
||||
class MapIOTester : public ::testing::Test
|
||||
{
|
||||
protected:
|
||||
// Fill LoadParameters with standard for testing values
|
||||
// Input: image_file_name
|
||||
// Output: load_parameters
|
||||
void fillLoadParameters(
|
||||
const std::string & image_file_name,
|
||||
LoadParameters & load_parameters)
|
||||
{
|
||||
load_parameters.image_file_name = image_file_name;
|
||||
load_parameters.resolution = g_valid_image_res;
|
||||
load_parameters.origin = g_valid_origin;
|
||||
load_parameters.free_thresh = g_default_free_thresh;
|
||||
load_parameters.occupied_thresh = g_default_occupied_thresh;
|
||||
load_parameters.mode = MapMode::Trinary;
|
||||
load_parameters.negate = 0;
|
||||
}
|
||||
|
||||
// Fill SaveParameters with standard for testing values
|
||||
// Input: map_file_name, image_format
|
||||
// Output: save_parameters
|
||||
void fillSaveParameters(
|
||||
const std::string & map_file_name,
|
||||
const std::string & image_format,
|
||||
SaveParameters & save_parameters)
|
||||
{
|
||||
save_parameters.map_file_name = map_file_name;
|
||||
save_parameters.image_format = image_format;
|
||||
save_parameters.free_thresh = g_default_free_thresh;
|
||||
save_parameters.occupied_thresh = g_default_occupied_thresh;
|
||||
save_parameters.mode = MapMode::Trinary;
|
||||
}
|
||||
|
||||
// Check that map_msg corresponds to reference pattern
|
||||
// Input: map_msg
|
||||
void verifyMapMsg(const nav_msgs::msg::OccupancyGrid & map_msg)
|
||||
{
|
||||
ASSERT_FLOAT_EQ(map_msg.info.resolution, g_valid_image_res);
|
||||
ASSERT_EQ(map_msg.info.width, g_valid_image_width);
|
||||
ASSERT_EQ(map_msg.info.height, g_valid_image_height);
|
||||
for (unsigned int i = 0; i < map_msg.info.width * map_msg.info.height; i++) {
|
||||
ASSERT_EQ(g_valid_image_content[i], map_msg.data[i]);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// Load a valid reference PGM file. Check obtained OccupancyGrid message for consistency:
|
||||
// loaded image should match the known dimensions and content of the file.
|
||||
// Save obtained OccupancyGrid message into a tmp PGM file. Then load back saved tmp file
|
||||
// and check for consistency.
|
||||
// Succeeds all steps were passed without a problem or expection.
|
||||
TEST_F(MapIOTester, loadSaveValidPGM)
|
||||
{
|
||||
// 1. Load reference map file and verify obtained OccupancyGrid
|
||||
LoadParameters loadParameters;
|
||||
fillLoadParameters(path(TEST_DIR) / path(g_valid_pgm_file), loadParameters);
|
||||
|
||||
nav_msgs::msg::OccupancyGrid map_msg;
|
||||
ASSERT_NO_THROW(loadMapFromFile(loadParameters, map_msg));
|
||||
|
||||
verifyMapMsg(map_msg);
|
||||
|
||||
// 2. Save OccupancyGrid into a tmp file
|
||||
SaveParameters saveParameters;
|
||||
fillSaveParameters(path(g_tmp_dir) / path(g_valid_map_name), "pgm", saveParameters);
|
||||
|
||||
ASSERT_TRUE(saveMapToFile(map_msg, saveParameters));
|
||||
|
||||
// 3. Load saved map and verify it
|
||||
LOAD_MAP_STATUS status = loadMapFromYaml(path(g_tmp_dir) / path(g_valid_yaml_file), map_msg);
|
||||
ASSERT_EQ(status, LOAD_MAP_SUCCESS);
|
||||
|
||||
verifyMapMsg(map_msg);
|
||||
}
|
||||
|
||||
// Load a valid reference PNG file. Check obtained OccupancyGrid message for consistency:
|
||||
// loaded image should match the known dimensions and content of the file.
|
||||
// Save obtained OccupancyGrid message into a tmp PNG file. Then load back saved tmp file
|
||||
// and check for consistency.
|
||||
// Succeeds all steps were passed without a problem or expection.
|
||||
TEST_F(MapIOTester, loadSaveValidPNG)
|
||||
{
|
||||
// 1. Load reference map file and verify obtained OccupancyGrid
|
||||
LoadParameters loadParameters;
|
||||
fillLoadParameters(path(TEST_DIR) / path(g_valid_png_file), loadParameters);
|
||||
|
||||
nav_msgs::msg::OccupancyGrid map_msg;
|
||||
ASSERT_NO_THROW(loadMapFromFile(loadParameters, map_msg));
|
||||
|
||||
verifyMapMsg(map_msg);
|
||||
|
||||
// 2. Save OccupancyGrid into a tmp file
|
||||
SaveParameters saveParameters;
|
||||
fillSaveParameters(path(g_tmp_dir) / path(g_valid_map_name), "png", saveParameters);
|
||||
|
||||
ASSERT_TRUE(saveMapToFile(map_msg, saveParameters));
|
||||
|
||||
// 3. Load saved map and verify it
|
||||
LOAD_MAP_STATUS status = loadMapFromYaml(path(g_tmp_dir) / path(g_valid_yaml_file), map_msg);
|
||||
ASSERT_EQ(status, LOAD_MAP_SUCCESS);
|
||||
|
||||
verifyMapMsg(map_msg);
|
||||
}
|
||||
|
||||
// Load a valid reference BMP file. Check obtained OccupancyGrid message for consistency:
|
||||
// loaded image should match the known dimensions and content of the file.
|
||||
// Save obtained OccupancyGrid message into a tmp BMP file. Then load back saved tmp file
|
||||
// and check for consistency.
|
||||
// Succeeds all steps were passed without a problem or expection.
|
||||
TEST_F(MapIOTester, loadSaveValidBMP)
|
||||
{
|
||||
// 1. Load reference map file and verify obtained OccupancyGrid
|
||||
auto test_bmp = path(TEST_DIR) / path(g_valid_bmp_file);
|
||||
|
||||
LoadParameters loadParameters;
|
||||
fillLoadParameters(test_bmp, loadParameters);
|
||||
|
||||
nav_msgs::msg::OccupancyGrid map_msg;
|
||||
ASSERT_NO_THROW(loadMapFromFile(loadParameters, map_msg));
|
||||
|
||||
verifyMapMsg(map_msg);
|
||||
|
||||
// 2. Save OccupancyGrid into a tmp file
|
||||
SaveParameters saveParameters;
|
||||
fillSaveParameters(path(g_tmp_dir) / path(g_valid_map_name), "bmp", saveParameters);
|
||||
|
||||
ASSERT_TRUE(saveMapToFile(map_msg, saveParameters));
|
||||
|
||||
// 3. Load saved map and verify it
|
||||
LOAD_MAP_STATUS status = loadMapFromYaml(path(g_tmp_dir) / path(g_valid_yaml_file), map_msg);
|
||||
ASSERT_EQ(status, LOAD_MAP_SUCCESS);
|
||||
|
||||
verifyMapMsg(map_msg);
|
||||
}
|
||||
|
||||
// Load map from a valid file. Trying to save map with different modes.
|
||||
// Succeeds all steps were passed without a problem or expection.
|
||||
TEST_F(MapIOTester, loadSaveMapModes)
|
||||
{
|
||||
// 1. Load map from YAML file
|
||||
nav_msgs::msg::OccupancyGrid map_msg;
|
||||
LOAD_MAP_STATUS status = loadMapFromYaml(path(TEST_DIR) / path(g_valid_yaml_file), map_msg);
|
||||
ASSERT_EQ(status, LOAD_MAP_SUCCESS);
|
||||
|
||||
// No need to check Trinary mode. This already verified in previous testcases.
|
||||
// 2. Save map in Scale mode.
|
||||
SaveParameters saveParameters;
|
||||
fillSaveParameters(path(g_tmp_dir) / path(g_valid_map_name), "png", saveParameters);
|
||||
saveParameters.mode = MapMode::Scale;
|
||||
|
||||
ASSERT_TRUE(saveMapToFile(map_msg, saveParameters));
|
||||
|
||||
// 3. Load saved map and verify it
|
||||
status = loadMapFromYaml(path(g_tmp_dir) / path(g_valid_yaml_file), map_msg);
|
||||
ASSERT_EQ(status, LOAD_MAP_SUCCESS);
|
||||
|
||||
verifyMapMsg(map_msg);
|
||||
|
||||
// 4. Save map in Raw mode.
|
||||
saveParameters.mode = MapMode::Raw;
|
||||
|
||||
ASSERT_TRUE(saveMapToFile(map_msg, saveParameters));
|
||||
|
||||
// 5. Load saved map and verify it
|
||||
status = loadMapFromYaml(path(g_tmp_dir) / path(g_valid_yaml_file), map_msg);
|
||||
ASSERT_EQ(status, LOAD_MAP_SUCCESS);
|
||||
|
||||
verifyMapMsg(map_msg);
|
||||
}
|
||||
|
||||
// Try to load an invalid file with different ways.
|
||||
// Succeeds if all cases are got expected fail behaviours.
|
||||
TEST_F(MapIOTester, loadInvalidFile)
|
||||
{
|
||||
// 1. Trying to load incorrect map by loadMapFromFile()
|
||||
auto test_invalid = path(TEST_DIR) / path("foo");
|
||||
|
||||
LoadParameters loadParameters;
|
||||
fillLoadParameters(test_invalid, loadParameters);
|
||||
|
||||
nav_msgs::msg::OccupancyGrid map_msg;
|
||||
ASSERT_ANY_THROW(loadMapFromFile(loadParameters, map_msg));
|
||||
|
||||
// 2. Trying to load incorrect map by loadMapFromYaml()
|
||||
LOAD_MAP_STATUS status = loadMapFromYaml("", map_msg);
|
||||
ASSERT_EQ(status, MAP_DOES_NOT_EXIST);
|
||||
|
||||
status = loadMapFromYaml(std::string(test_invalid) + ".yaml", map_msg);
|
||||
ASSERT_EQ(status, INVALID_MAP_METADATA);
|
||||
}
|
||||
|
||||
// Load map from a valid file. Trying to save map with different sets of parameters.
|
||||
// Succeeds if all cases got expected behaviours.
|
||||
TEST_F(MapIOTester, saveInvalidParameters)
|
||||
{
|
||||
// 1. Load map from YAML file
|
||||
nav_msgs::msg::OccupancyGrid map_msg;
|
||||
LOAD_MAP_STATUS status = loadMapFromYaml(path(TEST_DIR) / path(g_valid_yaml_file), map_msg);
|
||||
ASSERT_EQ(status, LOAD_MAP_SUCCESS);
|
||||
|
||||
// 2. Trying to save map with different sets of parameters
|
||||
SaveParameters saveParameters;
|
||||
|
||||
saveParameters.map_file_name = path(g_tmp_dir) / path(g_valid_map_name);
|
||||
saveParameters.image_format = "";
|
||||
saveParameters.free_thresh = 2.0;
|
||||
saveParameters.occupied_thresh = 2.0;
|
||||
saveParameters.mode = MapMode::Trinary;
|
||||
ASSERT_FALSE(saveMapToFile(map_msg, saveParameters));
|
||||
|
||||
saveParameters.free_thresh = -2.0;
|
||||
saveParameters.occupied_thresh = -2.0;
|
||||
ASSERT_FALSE(saveMapToFile(map_msg, saveParameters));
|
||||
|
||||
saveParameters.free_thresh = 0.7;
|
||||
saveParameters.occupied_thresh = 0.2;
|
||||
ASSERT_FALSE(saveMapToFile(map_msg, saveParameters));
|
||||
|
||||
saveParameters.free_thresh = 0.0;
|
||||
saveParameters.occupied_thresh = 0.0;
|
||||
ASSERT_TRUE(saveMapToFile(map_msg, saveParameters));
|
||||
|
||||
saveParameters.map_file_name = path("/invalid_path") / path(g_valid_map_name);
|
||||
ASSERT_FALSE(saveMapToFile(map_msg, saveParameters));
|
||||
}
|
||||
|
||||
// Load valid YAML file and check for consistency
|
||||
TEST_F(MapIOTester, loadValidYAML)
|
||||
{
|
||||
LoadParameters loadParameters;
|
||||
ASSERT_NO_THROW(loadParameters = loadMapYaml(path(TEST_DIR) / path(g_valid_yaml_file)));
|
||||
|
||||
LoadParameters refLoadParameters;
|
||||
fillLoadParameters(path(TEST_DIR) / path(g_valid_png_file), refLoadParameters);
|
||||
ASSERT_EQ(loadParameters.image_file_name, refLoadParameters.image_file_name);
|
||||
ASSERT_FLOAT_EQ(loadParameters.resolution, refLoadParameters.resolution);
|
||||
ASSERT_EQ(loadParameters.origin, refLoadParameters.origin);
|
||||
ASSERT_FLOAT_EQ(loadParameters.free_thresh, refLoadParameters.free_thresh);
|
||||
ASSERT_FLOAT_EQ(loadParameters.occupied_thresh, refLoadParameters.occupied_thresh);
|
||||
ASSERT_EQ(loadParameters.mode, refLoadParameters.mode);
|
||||
ASSERT_EQ(loadParameters.negate, refLoadParameters.negate);
|
||||
}
|
||||
|
||||
// Try to load invalid YAML file
|
||||
TEST_F(MapIOTester, loadInvalidYAML)
|
||||
{
|
||||
LoadParameters loadParameters;
|
||||
ASSERT_ANY_THROW(loadParameters = loadMapYaml(path(TEST_DIR) / path("invalid_file.yaml")));
|
||||
}
|
||||
|
||||
TEST(HomeUserExpanderTestSuite, homeUserExpanderShouldNotChangeInputStringWhenShorterThanTwo)
|
||||
{
|
||||
const std::string emptyFileName{};
|
||||
ASSERT_EQ(emptyFileName, expand_user_home_dir_if_needed(emptyFileName, "/home/user"));
|
||||
}
|
||||
|
||||
TEST(
|
||||
HomeUserExpanderTestSuite,
|
||||
homeUserExpanderShouldNotChangeInputStringWhenInputStringDoesNotStartWithHomeSequence)
|
||||
{
|
||||
const std::string fileName{"valid_file.yaml"};
|
||||
ASSERT_EQ(fileName, expand_user_home_dir_if_needed(fileName, "/home/user"));
|
||||
}
|
||||
|
||||
TEST(HomeUserExpanderTestSuite, homeUserExpanderShouldNotChangeInputStringWhenHomeVariableNotFound)
|
||||
{
|
||||
const std::string fileName{"~/valid_file.yaml"};
|
||||
ASSERT_EQ(fileName, expand_user_home_dir_if_needed(fileName, ""));
|
||||
}
|
||||
|
||||
TEST(HomeUserExpanderTestSuite, homeUserExpanderShouldExpandHomeSequenceWhenHomeVariableSet)
|
||||
{
|
||||
const std::string fileName{"~/valid_file.yaml"};
|
||||
const std::string expectedOutputFileName{"/home/user/valid_file.yaml"};
|
||||
ASSERT_EQ(expectedOutputFileName, expand_user_home_dir_if_needed(fileName, "/home/user"));
|
||||
}
|
||||
Reference in New Issue
Block a user