62 lines
1.9 KiB
C++
62 lines
1.9 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/xy_index.h"
|
||
|
|
||
|
#include "gtest/gtest.h"
|
||
|
|
||
|
namespace cartographer {
|
||
|
namespace mapping {
|
||
|
namespace {
|
||
|
|
||
|
TEST(XYIndexTest, CellLimitsToProto) {
|
||
|
const CellLimits limits(1, 2);
|
||
|
const auto proto = ToProto(limits);
|
||
|
EXPECT_EQ(limits.num_x_cells, proto.num_x_cells());
|
||
|
EXPECT_EQ(limits.num_y_cells, proto.num_y_cells());
|
||
|
}
|
||
|
|
||
|
TEST(XYIndexTest, CellLimitsProtoConstructor) {
|
||
|
proto::CellLimits limits;
|
||
|
limits.set_num_x_cells(1);
|
||
|
limits.set_num_y_cells(2);
|
||
|
|
||
|
auto native = CellLimits(limits);
|
||
|
EXPECT_EQ(limits.num_x_cells(), native.num_x_cells);
|
||
|
EXPECT_EQ(limits.num_y_cells(), native.num_y_cells);
|
||
|
}
|
||
|
|
||
|
TEST(XYIndexTest, XYIndexRangeIterator) {
|
||
|
const Eigen::Array2i min(1, 2);
|
||
|
const Eigen::Array2i max(3, 4);
|
||
|
XYIndexRangeIterator it(min, max);
|
||
|
EXPECT_TRUE((min == *it.begin()).all()) << *it.begin();
|
||
|
EXPECT_TRUE((Eigen::Array2i(1, 5) == *it.end()).all()) << *it.end();
|
||
|
EXPECT_TRUE((min == *it).all()) << *it;
|
||
|
int num_indices = 0;
|
||
|
for (const Eigen::Array2i& xy_index : XYIndexRangeIterator(min, max)) {
|
||
|
LOG(INFO) << xy_index;
|
||
|
EXPECT_TRUE((xy_index >= min).all());
|
||
|
EXPECT_TRUE((xy_index <= max).all());
|
||
|
++num_indices;
|
||
|
}
|
||
|
EXPECT_EQ(9, num_indices);
|
||
|
}
|
||
|
|
||
|
} // namespace
|
||
|
} // namespace mapping
|
||
|
} // namespace cartographer
|