test_occupancy_grid.cpp
Go to the documentation of this file.
1 // Copyright 2023 Ekumen, Inc.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #include <gtest/gtest.h>
16 
17 #include <cstddef>
18 #include <cstdint>
19 #include <memory>
20 #include <vector>
21 
22 #if BELUGA_ROS_VERSION == 1
23 #include <boost/smart_ptr.hpp>
24 #endif
25 
26 #include "beluga_ros/messages.hpp"
28 
29 namespace {
30 
31 TEST(TestOccupancyGrid, Instantiation) {
32  constexpr std::size_t kWidth = 100;
33  constexpr std::size_t kHeight = 200;
34 
35 #if BELUGA_ROS_VERSION == 2
36  auto message = std::make_shared<beluga_ros::msg::OccupancyGrid>();
37 #elif BELUGA_ROS_VERSION == 1
38  auto message = boost::make_shared<beluga_ros::msg::OccupancyGrid>();
39 #else
40 #error BELUGA_ROS_VERSION is not defined or invalid
41 #endif
42  message->info.resolution = 0.1F;
43  message->info.width = kWidth;
44  message->info.height = kHeight;
45  message->info.origin.position.x = 1;
46  message->info.origin.position.y = 2;
47  message->info.origin.position.z = 0;
48  message->data = std::vector<std::int8_t>(kWidth * kHeight);
49 
51  ASSERT_EQ(grid.resolution(), message->info.resolution);
52  ASSERT_EQ(grid.size(), message->data.size());
53  ASSERT_EQ(grid.width(), kWidth);
54  ASSERT_EQ(grid.height(), kHeight);
55 }
56 
57 TEST(TestOccupancyGrid, ValueTraitsIsFree) {
62 }
63 
64 TEST(TestOccupancyGrid, ValueTraitsIsUnkown) {
69 }
70 
71 TEST(TestOccupancyGrid, ValueTraitsIsOccupied) {
76 }
77 
78 } // namespace
beluga_ros::OccupancyGrid
Thin wrapper type for 2D nav_msgs/OccupancyGrid messages.
Definition: occupancy_grid.hpp:47
TEST
TEST(ActionClientDestruction, persistent_goal_handles_1)
beluga_ros.conversion_utils.message
message
Definition: conversion_utils.py:29
beluga_ros::OccupancyGrid::ValueTraits::is_unknown
static bool is_unknown(std::int8_t value)
Check if the given value corresponds to that of a cell of unknown occupancy.
Definition: occupancy_grid.hpp:65
occupancy_grid.hpp
Implementation of nav_msgs/OccupancyGrid wrapper type.
beluga_ros::OccupancyGrid::ValueTraits::is_occupied
static bool is_occupied(std::int8_t value)
Check if the given value corresponds to that of an occupied cell.
Definition: occupancy_grid.hpp:68
beluga_ros::OccupancyGrid::ValueTraits::is_free
static bool is_free(std::int8_t value)
Check if the given value corresponds to that of a free cell.
Definition: occupancy_grid.hpp:62
messages.hpp


beluga_ros
Author(s):
autogenerated on Tue Jul 16 2024 03:00:02