Skip to content

Commit

Permalink
Add unit test for class not found
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Aposhian <[email protected]>
  • Loading branch information
Aposhian committed Jan 25, 2024
1 parent ac797ba commit 371f2eb
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions rclcpp_components/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,25 @@ if(BUILD_TESTING)
set(components "")
add_library(test_component SHARED test/components/test_component.cpp)
target_link_libraries(test_component PRIVATE component)
# Fake version of this macro so that rclcpp_components_register_node works
macro(_rclcpp_components_register_package_hook)
set(rclcpp_components_NODE_TEMPLATE ${CMAKE_CURRENT_SOURCE_DIR}/src/node_main.cpp.in)
add_library(rclcpp_components::component ALIAS component)
endmacro()
include(./cmake/rclcpp_components_register_node.cmake)
rclcpp_components_register_node(test_component
PLUGIN "test_rclcpp_components::DoesNotExist"
EXECUTABLE test_component_does_not_exist_executable
)
find_program(BASH_PROGRAM bash)
add_test(
NAME test_non_existent_plugin
# Check to make sure the executable aborts with an unhandled exception (134)
COMMAND ${BASH_PROGRAM} -c "${BASH_PROGRAM} -c \"$<TARGET_FILE:test_component_does_not_exist_executable>\"; test $? -eq 134;"
)
set_tests_properties(test_non_existent_plugin PROPERTIES
# Need to preload this library since it doesn't get installed
ENVIRONMENT LD_PRELOAD=$<TARGET_FILE:test_component>)
#rclcpp_components_register_nodes(test_component "test_rclcpp_components::TestComponent")
set(components "${components}test_rclcpp_components::TestComponentFoo;$<TARGET_FILE:test_component>\n")
set(components "${components}test_rclcpp_components::TestComponentBar;$<TARGET_FILE:test_component>\n")
Expand Down

0 comments on commit 371f2eb

Please sign in to comment.