-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(static_centerline_generator): add launch test with autoware_samp…
…le_vehicle_launch package Signed-off-by: Takayuki Murooka <[email protected]>
- Loading branch information
1 parent
95d3889
commit 1fe493c
Showing
12 changed files
with
437 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
cmake_minimum_required(VERSION 3.14) | ||
project(autoware_sample_vehicle_description) | ||
|
||
find_package(autoware_cmake REQUIRED) | ||
find_package(xacro REQUIRED) | ||
autoware_package() | ||
|
||
ament_auto_package(INSTALL_TO_SHARE | ||
mesh | ||
urdf | ||
config | ||
) |
16 changes: 16 additions & 0 deletions
16
common/autoware_sample_vehicle_description/config/mirror.param.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/**: | ||
ros__parameters: | ||
mirror: | ||
min_longitudinal_offset: 7.00 | ||
max_longitudinal_offset: 8.00 | ||
min_lateral_offset: -1.60 | ||
max_lateral_offset: 1.55 | ||
min_height_offset: 1.65 | ||
max_height_offset: 2.60 | ||
tire: | ||
min_longitudinal_offset: 4.60 | ||
max_longitudinal_offset: 5.80 | ||
min_lateral_offset: -1.55 | ||
max_lateral_offset: 1.55 | ||
min_height_offset: 0.00 | ||
max_height_offset: 1.20 |
18 changes: 18 additions & 0 deletions
18
common/autoware_sample_vehicle_description/config/simulator_model.param.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/**: | ||
ros__parameters: | ||
simulated_frame_id: "base_link" | ||
origin_frame_id: "map" | ||
vehicle_model_type: "IDEAL_STEER_ACC_GEARED" | ||
initialize_source: "INITIAL_POSE_TOPIC" | ||
timer_sampling_time_ms: 25 | ||
add_measurement_noise: False | ||
vel_lim: 40.0 | ||
vel_rate_lim: 7.0 | ||
steer_lim: 1.0 | ||
steer_rate_lim: 0.35 | ||
acc_time_delay: 0.1 | ||
acc_time_constant: 0.1 | ||
steer_time_delay: 0.24 | ||
steer_time_constant: 0.27 | ||
x_stddev: 0.0001 # x standard deviation for dummy covariance in map coordinate | ||
y_stddev: 0.0001 # y standard deviation for dummy covariance in map coordinate |
23 changes: 23 additions & 0 deletions
23
common/autoware_sample_vehicle_description/config/vehicle_info.param.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/**: | ||
ros__parameters: | ||
wheel_radius: 0.529 | ||
wheel_width: 0.279 | ||
wheel_base: 5.3 | ||
wheel_tread: 2.065 | ||
front_overhang: 2.8 #pcd crop -0.50 | ||
rear_overhang: 2.83 #pcd crop + 0.07 | ||
left_overhang: 0.25 #pcd crop + 0.13 | ||
right_overhang: 0.25 #pcd crop + 0.13 | ||
vehicle_height: 3.1 | ||
max_steer_angle: 0.785 | ||
|
||
# original | ||
# wheel_radius: 0.529 | ||
# wheel_width: 0.279 | ||
# wheel_base: 5.3 | ||
# wheel_tread: 2.065 | ||
# front_overhang: 2.255 | ||
# rear_overhang: 2.83 | ||
# left_overhang: 0.21 | ||
# right_overhang: 0.21 | ||
# vehicle_height: 3.096 |
246 changes: 246 additions & 0 deletions
246
common/autoware_sample_vehicle_description/mesh/large_bus.dae
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0"?> | ||
<package format="2"> | ||
<name>autoware_sample_vehicle_description</name> | ||
<version>0.1.0</version> | ||
<description>The autoware_sample_vehicle_description package</description> | ||
|
||
<maintainer email="[email protected]">Temkei Kem</maintainer> | ||
<maintainer email="[email protected]">Kosuke Takeuchi</maintainer> | ||
<maintainer email="[email protected]">Takayuki Murooka</maintainer> | ||
<license>Apache2</license> | ||
|
||
<buildtool_depend>ament_cmake_auto</buildtool_depend> | ||
<buildtool_depend>autoware_cmake</buildtool_depend> | ||
<exec_depend>xacro</exec_depend> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> |
15 changes: 15 additions & 0 deletions
15
common/autoware_sample_vehicle_description/urdf/vehicle.xacro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0"?> | ||
<robot xmlns:xacro="http://ros.org/wiki/xacro"> | ||
<!-- load parameter --> | ||
<xacro:property name="vehicle_info" value="${xacro.load_yaml('$(find autoware_sample_vehicle_description)/config/vehicle_info.param.yaml')}"/> | ||
|
||
<!-- vehicle body --> | ||
<link name="base_link"> | ||
<visual> | ||
<origin xyz="0 0 0" rpy="0 0 ${pi/2.0}"/> | ||
<geometry> | ||
<mesh filename="package://autoware_sample_vehicle_description/mesh/autoware_sample_vehicle.dae" scale="1 1 1"/> | ||
</geometry> | ||
</visual> | ||
</link> | ||
</robot> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
planning/autoware_static_centerline_generator/launch/static_centerline_generator.launch.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>autoware_static_centerline_generator</name> | ||
<version>0.40.0</version> | ||
<version>0.38.0</version> | ||
<description>The autoware_static_centerline_generator package</description> | ||
<maintainer email="[email protected]">Takayuki Murooka</maintainer> | ||
<maintainer email="[email protected]">Kosuke Takeuchi</maintainer> | ||
|
@@ -17,14 +17,11 @@ | |
|
||
<depend>autoware_behavior_path_planner_common</depend> | ||
<depend>autoware_geography_utils</depend> | ||
<depend>autoware_global_parameter_loader</depend> | ||
<depend>autoware_interpolation</depend> | ||
<depend>autoware_lanelet2_extension</depend> | ||
<depend>autoware_lanelet2_map_visualizer</depend> | ||
<depend>autoware_map_loader</depend> | ||
<depend>autoware_map_msgs</depend> | ||
<depend>autoware_map_projection_loader</depend> | ||
<depend>autoware_map_tf_generator</depend> | ||
<depend>autoware_mission_planner</depend> | ||
<depend>autoware_motion_utils</depend> | ||
<depend>autoware_osqp_interface</depend> | ||
|
@@ -36,8 +33,10 @@ | |
<depend>autoware_universe_utils</depend> | ||
<depend>autoware_vehicle_info_utils</depend> | ||
<depend>geometry_msgs</depend> | ||
<depend>global_parameter_loader</depend> | ||
<depend>rclcpp</depend> | ||
<depend>rclcpp_components</depend> | ||
<depend>tier4_map_msgs</depend> | ||
|
||
<exec_depend>python3-flask-cors</exec_depend> | ||
<exec_depend>rosidl_default_runtime</exec_depend> | ||
|
@@ -47,7 +46,10 @@ | |
<test_depend>autoware_behavior_path_planner</test_depend> | ||
<test_depend>autoware_behavior_velocity_planner</test_depend> | ||
<test_depend>autoware_global_parameter_loader</test_depend> | ||
<test_depend>autoware_lanelet2_map_visualizer</test_depend> | ||
<test_depend>autoware_lint_common</test_depend> | ||
<test_depend>autoware_map_tf_generator</test_depend> | ||
<test_depend>autoware_sample_vehicle_description</test_depend> | ||
<test_depend>ros_testing</test_depend> | ||
|
||
<member_of_group>rosidl_interface_packages</member_of_group> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
...autoware_static_centerline_generator/test/test_static_centerline_generator_launch.test.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# Copyright 2024 TIER IV, Inc. | ||
# | ||
# 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. | ||
|
||
import os | ||
import unittest | ||
|
||
from ament_index_python import get_package_share_directory | ||
import launch | ||
from launch import LaunchDescription | ||
from launch.actions import DeclareLaunchArgument | ||
from launch.actions import IncludeLaunchDescription | ||
from launch.launch_description_sources import AnyLaunchDescriptionSource | ||
import launch_testing | ||
import pytest | ||
|
||
|
||
@pytest.mark.launch_test | ||
def generate_test_description(): | ||
test_static_centerline_generator_launch_file = os.path.join( | ||
get_package_share_directory("autoware_static_centerline_generator"), | ||
"launch", | ||
"static_centerline_generator.launch.xml", | ||
) | ||
|
||
static_centerline_generator = IncludeLaunchDescription( | ||
AnyLaunchDescriptionSource(test_static_centerline_generator_launch_file), | ||
) | ||
|
||
return LaunchDescription( | ||
[ | ||
DeclareLaunchArgument( | ||
"lanelet2_input_file_path", | ||
default_value=os.path.join( | ||
get_package_share_directory("autoware_static_centerline_generator"), | ||
"test/data/lanelet2_map.osm", | ||
), | ||
), | ||
DeclareLaunchArgument( | ||
"lanelet2_output_file_path", default_value="/tmp/lanelet2_map.osm" | ||
), | ||
DeclareLaunchArgument("rviz", default_value="false"), | ||
DeclareLaunchArgument("start_lanelet_id", default_value="215"), | ||
DeclareLaunchArgument("end_lanelet_id", default_value="216"), | ||
DeclareLaunchArgument( | ||
"centerline_source", default_value="optimization_trajectory_base" | ||
), | ||
static_centerline_generator, | ||
# Start test after 1s - gives time for the autoware_static_centerline_generator to finish initialization | ||
launch.actions.TimerAction(period=1.0, actions=[launch_testing.actions.ReadyToTest()]), | ||
] | ||
) | ||
|
||
|
||
@launch_testing.post_shutdown_test() | ||
class TestProcessOutput(unittest.TestCase): | ||
def test_exit_code(self, proc_info): | ||
# Check that process exits with code 0: no error | ||
launch_testing.asserts.assertExitCodes(proc_info) |