Skip to content

Commit

Permalink
Push controller manager service tests pending fix
Browse files Browse the repository at this point in the history
  • Loading branch information
saikishor committed Oct 8, 2024
1 parent 0136b71 commit 1b3af76
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions controller_manager/test/test_controller_manager_srvs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,18 +184,19 @@ TEST_F(TestControllerManagerSrvs, list_controllers_srv)
result->controller[0].claimed_interfaces,
UnorderedElementsAre(
"joint2/velocity", "joint3/velocity", "joint2/max_acceleration", "configuration/max_tcp_jerk",
"joint1/position", "joint1/max_velocity"));
"joint1/position", "joint1/max_velocity", "joint1/effort"));
ASSERT_THAT(
result->controller[0].required_command_interfaces,
UnorderedElementsAre(
"configuration/max_tcp_jerk", "joint1/max_velocity", "joint1/position",
"joint2/max_acceleration", "joint2/velocity", "joint3/velocity"));
"joint2/max_acceleration", "joint2/velocity", "joint3/velocity", "joint1/effort"));
ASSERT_THAT(
result->controller[0].required_state_interfaces,
UnorderedElementsAre(
"configuration/max_tcp_jerk", "joint1/position", "joint1/some_unlisted_interface",
"joint1/velocity", "joint2/acceleration", "joint2/position", "joint2/velocity",
"joint3/acceleration", "joint3/position", "joint3/velocity", "sensor1/velocity"));
"joint3/acceleration", "joint3/position", "joint3/velocity", "sensor1/velocity",
"joint1/effort"));

// Try again with higher timeout
cm_->switch_controller(
Expand Down

0 comments on commit 1b3af76

Please sign in to comment.