cartographer/cartographer/mapping_2d/map_limits_test.cc

68 lines
2.1 KiB
C++

/*
* Copyright 2016 The Cartographer Authors
*
* 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 "cartographer/mapping_2d/map_limits.h"
#include "gtest/gtest.h"
namespace cartographer {
namespace mapping_2d {
namespace {
TEST(MapLimitsTest, ToProto) {
const MapLimits limits(42., Eigen::Vector2d(3., 0.), CellLimits(2, 3));
const auto proto = ToProto(limits);
EXPECT_EQ(limits.resolution(), proto.resolution());
EXPECT_EQ(limits.max().x(), proto.max().x());
EXPECT_EQ(limits.max().y(), proto.max().y());
EXPECT_EQ(ToProto(limits.cell_limits()).DebugString(),
proto.cell_limits().DebugString());
}
TEST(MapLimitsTest, ProtoConstructor) {
proto::MapLimits limits;
limits.set_resolution(1.);
limits.mutable_max()->set_x(2.);
limits.mutable_max()->set_y(3.);
limits.mutable_cell_limits()->set_num_x_cells(4);
limits.mutable_cell_limits()->set_num_y_cells(5);
const MapLimits native(limits);
EXPECT_EQ(limits.resolution(), native.resolution());
EXPECT_EQ(limits.max().x(), native.max().x());
EXPECT_EQ(limits.max().y(), native.max().y());
EXPECT_EQ(limits.cell_limits().DebugString(),
ToProto(native.cell_limits()).DebugString());
}
TEST(MapLimitsTest, ConstructAndGet) {
const MapLimits limits(42., Eigen::Vector2d(3., 0.), CellLimits(2, 3));
const CellLimits& cell_limits = limits.cell_limits();
EXPECT_EQ(2, cell_limits.num_x_cells);
EXPECT_EQ(3, cell_limits.num_y_cells);
const Eigen::Vector2d& max = limits.max();
EXPECT_EQ(3., max.x());
EXPECT_EQ(0., max.y());
EXPECT_EQ(42., limits.resolution());
}
} // namespace
} // namespace mapping_2d
} // namespace cartographer