add_imu_data_handler_test.cc
Go to the documentation of this file.
1 /*
2  * Copyright 2018 The Cartographer Authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
20 #include "google/protobuf/text_format.h"
21 #include "gtest/gtest.h"
22 
23 namespace cartographer {
24 namespace cloud {
25 namespace handlers {
26 namespace {
27 
28 using ::testing::_;
29 using ::testing::Eq;
30 using ::testing::Pointee;
31 using ::testing::Truly;
32 
33 const std::string kMessage = R"(
34  sensor_metadata {
35  trajectory_id: 1
36  sensor_id: "sensor_id"
37  }
38  imu_data {
39  timestamp: 2
40  linear_acceleration {
41  x: 3 y: 4 z: 5
42  }
43  angular_velocity {
44  x: 6 y: 7 z: 8
45  }
46  })";
47 
48 using AddImuDataHandlerTest =
49  testing::HandlerTest<AddImuDataSignature, AddImuDataHandler>;
50 
51 TEST_F(AddImuDataHandlerTest, NoLocalSlamUploader) {
52  proto::AddImuDataRequest request;
53  EXPECT_TRUE(
54  google::protobuf::TextFormat::ParseFromString(kMessage, &request));
55  SetNoLocalTrajectoryUploader();
56  EXPECT_CALL(*mock_map_builder_context_,
57  DoEnqueueSensorData(
58  Eq(request.sensor_metadata().trajectory_id()),
59  Pointee(Truly(testing::BuildDataPredicateEquals(request)))));
60  test_server_->SendWrite(request);
61  test_server_->SendWritesDone();
62  test_server_->SendFinish();
63 }
64 
65 TEST_F(AddImuDataHandlerTest, WithMockLocalSlamUploader) {
66  proto::AddImuDataRequest request;
67  EXPECT_TRUE(
68  google::protobuf::TextFormat::ParseFromString(kMessage, &request));
69  SetMockLocalTrajectoryUploader();
70  EXPECT_CALL(*mock_map_builder_context_,
71  DoEnqueueSensorData(
72  Eq(request.sensor_metadata().trajectory_id()),
73  Pointee(Truly(testing::BuildDataPredicateEquals(request)))));
74  proto::SensorData sensor_data;
75  *sensor_data.mutable_sensor_metadata() = request.sensor_metadata();
76  *sensor_data.mutable_imu_data() = request.imu_data();
77  EXPECT_CALL(*mock_local_trajectory_uploader_,
78  DoEnqueueSensorData(Pointee(
79  Truly(testing::BuildProtoPredicateEquals(&sensor_data)))));
80  test_server_->SendWrite(request);
81  test_server_->SendWritesDone();
82  test_server_->SendFinish();
83 }
84 
85 } // namespace
86 } // namespace handlers
87 } // namespace cloud
88 } // namespace cartographer
DataPredicateType BuildDataPredicateEquals(const T &proto)
ProtoPredicateType BuildProtoPredicateEquals(const google::protobuf::Message *proto)


cartographer
Author(s): The Cartographer Authors
autogenerated on Mon Feb 28 2022 22:00:58