12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #include " autoware/behavior_path_planner/behavior_path_planner_node.hpp"
16
-
17
- #include < ament_index_cpp/get_package_share_directory.hpp>
18
- #include < autoware_planning_test_manager/autoware_planning_test_manager.hpp>
19
- #include < autoware_test_utils/autoware_test_utils.hpp>
15
+ #include " autoware/behavior_path_planner/test_utils.hpp"
20
16
21
17
#include < gtest/gtest.h>
22
18
25
21
#include < string>
26
22
#include < vector>
27
23
28
- using autoware::behavior_path_planner::BehaviorPathPlannerNode;
29
- using autoware::planning_test_manager::PlanningInterfaceTestManager;
30
-
31
- std::shared_ptr<PlanningInterfaceTestManager> generateTestManager ()
32
- {
33
- auto test_manager = std::make_shared<PlanningInterfaceTestManager>();
34
-
35
- // set subscriber with topic name: behavior_path_planner → test_node_
36
- test_manager->setPathWithLaneIdSubscriber (" behavior_path_planner/output/path" );
37
-
38
- // set behavior_path_planner's input topic name(this topic is changed to test node)
39
- test_manager->setRouteInputTopicName (" behavior_path_planner/input/route" );
40
-
41
- test_manager->setInitialPoseTopicName (" behavior_path_planner/input/odometry" );
42
-
43
- return test_manager;
44
- }
45
-
46
- std::shared_ptr<BehaviorPathPlannerNode> generateNode ()
47
- {
48
- auto node_options = rclcpp::NodeOptions{};
49
- const auto autoware_test_utils_dir =
50
- ament_index_cpp::get_package_share_directory (" autoware_test_utils" );
51
- const auto behavior_path_planner_dir =
52
- ament_index_cpp::get_package_share_directory (" autoware_behavior_path_planner" );
53
- const auto behavior_path_lane_change_module_dir =
54
- ament_index_cpp::get_package_share_directory (" autoware_behavior_path_lane_change_module" );
55
-
56
- std::vector<std::string> module_names;
57
- module_names.emplace_back (" autoware::behavior_path_planner::AvoidanceByLaneChangeModuleManager" );
58
-
59
- std::vector<rclcpp::Parameter> params;
60
- params.emplace_back (" launch_modules" , module_names);
61
- node_options.parameter_overrides (params);
62
-
63
- autoware::test_utils::updateNodeOptions (
64
- node_options, {autoware_test_utils_dir + " /config/test_common.param.yaml" ,
65
- autoware_test_utils_dir + " /config/test_nearest_search.param.yaml" ,
66
- autoware_test_utils_dir + " /config/test_vehicle_info.param.yaml" ,
67
- behavior_path_planner_dir + " /config/behavior_path_planner.param.yaml" ,
68
- behavior_path_planner_dir + " /config/drivable_area_expansion.param.yaml" ,
69
- behavior_path_planner_dir + " /config/scene_module_manager.param.yaml" ,
70
- behavior_path_lane_change_module_dir + " /config/lane_change.param.yaml" ,
71
- ament_index_cpp::get_package_share_directory (
72
- " autoware_behavior_path_static_obstacle_avoidance_module" ) +
73
- " /config/static_obstacle_avoidance.param.yaml" ,
74
- ament_index_cpp::get_package_share_directory (
75
- " autoware_behavior_path_avoidance_by_lane_change_module" ) +
76
- " /config/avoidance_by_lane_change.param.yaml" });
77
-
78
- return std::make_shared<BehaviorPathPlannerNode>(node_options);
79
- }
80
-
81
- void publishMandatoryTopics (
82
- std::shared_ptr<PlanningInterfaceTestManager> test_manager,
83
- std::shared_ptr<BehaviorPathPlannerNode> test_target_node)
84
- {
85
- // publish necessary topics from test_manager
86
- test_manager->publishInitialPose (test_target_node, " behavior_path_planner/input/odometry" );
87
- test_manager->publishAcceleration (test_target_node, " behavior_path_planner/input/accel" );
88
- test_manager->publishPredictedObjects (test_target_node, " behavior_path_planner/input/perception" );
89
- test_manager->publishOccupancyGrid (
90
- test_target_node, " behavior_path_planner/input/occupancy_grid_map" );
91
- test_manager->publishLaneDrivingScenario (
92
- test_target_node, " behavior_path_planner/input/scenario" );
93
- test_manager->publishMap (test_target_node, " behavior_path_planner/input/vector_map" );
94
- test_manager->publishCostMap (test_target_node, " behavior_path_planner/input/costmap" );
95
- test_manager->publishOperationModeState (test_target_node, " system/operation_mode/state" );
96
- test_manager->publishLateralOffset (
97
- test_target_node, " behavior_path_planner/input/lateral_offset" );
98
- }
24
+ using autoware::behavior_path_planner::generateNode;
25
+ using autoware::behavior_path_planner::generateTestManager;
26
+ using autoware::behavior_path_planner::publishMandatoryTopics;
99
27
100
28
TEST (PlanningModuleInterfaceTest, NodeTestWithExceptionRoute)
101
29
{
102
30
rclcpp::init (0 , nullptr );
103
- auto test_manager = generateTestManager ();
104
- auto test_target_node = generateNode ();
105
31
32
+ auto test_manager = generateTestManager ();
33
+ auto test_target_node = generateNode (
34
+ {" lane_change" , " static_obstacle_avoidance" , " avoidance_by_lane_change" },
35
+ {" autoware::behavior_path_planner::AvoidanceByLaneChangeModuleManager" });
106
36
publishMandatoryTopics (test_manager, test_target_node);
107
37
108
38
// test for normal trajectory
@@ -119,7 +49,9 @@ TEST(PlanningModuleInterfaceTest, NodeTestWithOffTrackEgoPose)
119
49
rclcpp::init (0 , nullptr );
120
50
121
51
auto test_manager = generateTestManager ();
122
- auto test_target_node = generateNode ();
52
+ auto test_target_node = generateNode (
53
+ {" lane_change" , " static_obstacle_avoidance" , " avoidance_by_lane_change" },
54
+ {" autoware::behavior_path_planner::AvoidanceByLaneChangeModuleManager" });
123
55
publishMandatoryTopics (test_manager, test_target_node);
124
56
125
57
// test for normal trajectory
0 commit comments