test_messages.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 "beluga_ros/messages.hpp"
18 
19 namespace {
20 
21 TEST(TestMessages, Instantiation) {
22  [[maybe_unused]] auto msg1 = beluga_ros::msg::ColorRGBA{};
23  [[maybe_unused]] auto msg2 = beluga_ros::msg::LaserScan{};
24  [[maybe_unused]] auto msg3 = beluga_ros::msg::Marker{};
25  [[maybe_unused]] auto msg4 = beluga_ros::msg::MarkerArray{};
26  [[maybe_unused]] auto msg5 = beluga_ros::msg::OccupancyGrid{};
27  [[maybe_unused]] auto msg6 = beluga_ros::msg::Point{};
28  [[maybe_unused]] auto msg7 = beluga_ros::msg::Pose{};
29  [[maybe_unused]] auto msg8 = beluga_ros::msg::PoseArray{};
30  [[maybe_unused]] auto msg9 = beluga_ros::msg::Transform{};
31 }
32 
33 TEST(TestMessages, Stamping) {
34  auto message = beluga_ros::msg::PoseArray{};
35  beluga_ros::stamp_message("some_frame", {5, 0}, message);
36  EXPECT_EQ(message.header.frame_id, "some_frame");
37  EXPECT_EQ(message.header.stamp.sec, 5);
38 }
39 
40 TEST(TestMessages, StampingMany) {
41  auto message = beluga_ros::msg::MarkerArray{};
42  message.markers.insert(message.markers.end(), 5U, beluga_ros::msg::Marker{});
43  beluga_ros::stamp_message("some_frame", {5, 0}, message);
44  for (const auto& marker : message.markers) {
45  EXPECT_EQ(marker.header.frame_id, "some_frame");
46  EXPECT_EQ(marker.header.stamp.sec, 5);
47  }
48 }
49 
50 } // namespace
TEST
TEST(ActionClientDestruction, persistent_goal_handles_1)
beluga_ros.conversion_utils.message
message
Definition: conversion_utils.py:29
beluga_ros::stamp_message
Message & stamp_message(std::string_view frame_id, detail::Time timestamp, Message &message)
Stamp a message with a frame ID and timestamp.
Definition: messages.hpp:109
messages.hpp


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