-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathtest_compute_coverage_path.cpp
176 lines (147 loc) · 5.49 KB
/
test_compute_coverage_path.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
// Copyright (c) 2023 Open Navigation LLC
//
// 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 <gtest/gtest.h>
#include <memory>
#include <set>
#include <string>
#include "nav_msgs/msg/path.hpp"
#include "geometry_msgs/msg/pose_stamped.hpp"
#include "behaviortree_cpp/bt_factory.h"
#include "nav2_behavior_tree/utils/test_action_server.hpp"
#include "opennav_coverage_bt/compute_complete_coverage_path.hpp"
class ComputeCompleteCoveragePathActionServer
: public TestActionServer<opennav_coverage_msgs::action::ComputeCoveragePath>
{
public:
ComputeCompleteCoveragePathActionServer()
: TestActionServer("compute_coverage_path")
{}
protected:
void execute(
const typename std::shared_ptr<
rclcpp_action::ServerGoalHandle<opennav_coverage_msgs::action::ComputeCoveragePath>>
goal_handle)
override
{
const auto goal = goal_handle->get_goal();
auto result =
std::make_shared<opennav_coverage_msgs::action::ComputeCoveragePath::Result>();
result->nav_path.poses.resize(2);
result->nav_path.poses[1].pose.position.x = 1.0;
result->nav_path.poses[0].pose.position.x = 0.0;
goal_handle->succeed(result);
}
};
class ComputeCoveragePathActionTestFixture : public ::testing::Test
{
public:
static void SetUpTestCase()
{
node_ = std::make_shared<rclcpp::Node>("compute_coverage_path_action_test_fixture");
factory_ = std::make_shared<BT::BehaviorTreeFactory>();
config_ = new BT::NodeConfiguration();
// Create the blackboard that will be shared by all of the nodes in the tree
config_->blackboard = BT::Blackboard::create();
// Put items on the blackboard
config_->blackboard->set<rclcpp::Node::SharedPtr>(
"node",
node_);
config_->blackboard->set<std::chrono::milliseconds>(
"server_timeout",
std::chrono::milliseconds(20));
config_->blackboard->set<std::chrono::milliseconds>(
"bt_loop_duration",
std::chrono::milliseconds(10));
config_->blackboard->set<std::chrono::milliseconds>(
"wait_for_service_timeout",
std::chrono::milliseconds(1000));
config_->blackboard->set<bool>("initial_pose_received", false);
BT::NodeBuilder builder =
[](const std::string & name, const BT::NodeConfiguration & config)
{
return std::make_unique<opennav_coverage_bt::ComputeCoveragePathAction>(
name, "compute_coverage_path", config);
};
factory_->registerBuilder<opennav_coverage_bt::ComputeCoveragePathAction>(
"ComputeCoveragePath", builder);
}
static void TearDownTestCase()
{
factory_.reset();
action_server_.reset();
delete config_;
config_ = nullptr;
node_.reset();
}
void TearDown() override
{
tree_.reset();
}
static std::shared_ptr<ComputeCompleteCoveragePathActionServer> action_server_;
protected:
static rclcpp::Node::SharedPtr node_;
static BT::NodeConfiguration * config_;
static std::shared_ptr<BT::BehaviorTreeFactory> factory_;
static std::shared_ptr<BT::Tree> tree_;
};
rclcpp::Node::SharedPtr ComputeCoveragePathActionTestFixture::node_ = nullptr;
std::shared_ptr<ComputeCompleteCoveragePathActionServer>
ComputeCoveragePathActionTestFixture::action_server_ = nullptr;
BT::NodeConfiguration * ComputeCoveragePathActionTestFixture::config_ = nullptr;
std::shared_ptr<BT::BehaviorTreeFactory> ComputeCoveragePathActionTestFixture::factory_ = nullptr;
std::shared_ptr<BT::Tree> ComputeCoveragePathActionTestFixture::tree_ = nullptr;
TEST_F(ComputeCoveragePathActionTestFixture, test_tick)
{
// create tree
std::string xml_txt =
R"(
<root BTCPP_format="4" main_tree_to_execute="MainTree" >
<BehaviorTree ID="MainTree">
<ComputeCoveragePath nav_path="{path}"/>
</BehaviorTree>
</root>)";
tree_ = std::make_shared<BT::Tree>(factory_->createTreeFromText(xml_txt, config_->blackboard));
// tick until node succeeds
while (tree_->rootNode()->status() != BT::NodeStatus::SUCCESS) {
tree_->rootNode()->executeTick();
}
// the goal should have reached our server
EXPECT_EQ(tree_->rootNode()->status(), BT::NodeStatus::SUCCESS);
// check if returned path is correct
nav_msgs::msg::Path path;
[[maybe_unused]] auto res = config_->blackboard->get("path", path);
EXPECT_EQ(path.poses.size(), 2u);
EXPECT_EQ(path.poses[0].pose.position.x, 0.0);
EXPECT_EQ(path.poses[1].pose.position.x, 1.0);
// halt node so another goal can be sent
tree_->haltTree();
EXPECT_EQ(tree_->rootNode()->status(), BT::NodeStatus::IDLE);
}
int main(int argc, char ** argv)
{
::testing::InitGoogleTest(&argc, argv);
// initialize ROS
rclcpp::init(argc, argv);
// initialize action server and spin on new thread
ComputeCoveragePathActionTestFixture::action_server_ =
std::make_shared<ComputeCompleteCoveragePathActionServer>();
std::thread server_thread([]() {
rclcpp::spin(ComputeCoveragePathActionTestFixture::action_server_);
});
int all_successful = RUN_ALL_TESTS();
// shutdown ROS
// rclcpp::shutdown();
server_thread.join();
return all_successful;
}