@@ -197,7 +197,7 @@ class CLASSNAME (TestActionClientServerInteraction, RMW_IMPLEMENTATION) : public
197197TEST_F (CLASSNAME(TestActionClientServerInteraction, RMW_IMPLEMENTATION), test_interaction)
198198{
199199 // Initialize goal request
200- init_test_uuid0 (this ->outgoing_goal_request .goal_id );
200+ init_test_uuid0 (this ->outgoing_goal_request .goal_id . uuid );
201201 this ->outgoing_goal_request .goal .order = 10 ;
202202
203203 // Send goal request with valid arguments
@@ -237,8 +237,8 @@ TEST_F(CLASSNAME(TestActionClientServerInteraction, RMW_IMPLEMENTATION), test_in
237237 // Check that the goal request was received correctly
238238 EXPECT_EQ (this ->outgoing_goal_request .goal .order , this ->incoming_goal_request .goal .order );
239239 EXPECT_TRUE (uuidcmp (
240- this ->outgoing_goal_request .goal_id ,
241- this ->incoming_goal_request .goal_id ));
240+ this ->outgoing_goal_request .goal_id . uuid ,
241+ this ->incoming_goal_request .goal_id . uuid ));
242242
243243 // Initialize goal response
244244 this ->outgoing_goal_response .accepted = true ;
@@ -288,7 +288,7 @@ TEST_F(CLASSNAME(TestActionClientServerInteraction, RMW_IMPLEMENTATION), test_in
288288 EXPECT_EQ (this ->outgoing_goal_response .stamp .nanosec , this ->incoming_goal_response .stamp .nanosec );
289289
290290 // Initialize result request
291- init_test_uuid0 (this ->outgoing_result_request .goal_id );
291+ init_test_uuid0 (this ->outgoing_result_request .goal_id . uuid );
292292
293293 // Send result request with valid arguments
294294 ret = rcl_action_send_result_request (
@@ -301,7 +301,7 @@ TEST_F(CLASSNAME(TestActionClientServerInteraction, RMW_IMPLEMENTATION), test_in
301301 this ->outgoing_feedback .feedback .sequence .data [0 ] = 0 ;
302302 this ->outgoing_feedback .feedback .sequence .data [1 ] = 1 ;
303303 this ->outgoing_feedback .feedback .sequence .data [2 ] = 2 ;
304- init_test_uuid0 (this ->outgoing_feedback .goal_id );
304+ init_test_uuid0 (this ->outgoing_feedback .goal_id . uuid );
305305
306306 // Publish feedback with valid arguments
307307 ret = rcl_action_publish_feedback (&this ->action_server , &this ->outgoing_feedback );
@@ -339,8 +339,8 @@ TEST_F(CLASSNAME(TestActionClientServerInteraction, RMW_IMPLEMENTATION), test_in
339339
340340 // Check that feedback was received correctly
341341 EXPECT_TRUE (uuidcmp (
342- this ->outgoing_feedback .goal_id ,
343- this ->incoming_feedback .goal_id ));
342+ this ->outgoing_feedback .goal_id . uuid ,
343+ this ->incoming_feedback .goal_id . uuid ));
344344 ASSERT_EQ (
345345 this ->outgoing_feedback .feedback .sequence .size ,
346346 this ->incoming_feedback .feedback .sequence .size );
@@ -379,8 +379,8 @@ TEST_F(CLASSNAME(TestActionClientServerInteraction, RMW_IMPLEMENTATION), test_in
379379
380380 // Check that the result request was received correctly
381381 EXPECT_TRUE (uuidcmp (
382- this ->outgoing_result_request .goal_id ,
383- this ->incoming_result_request .goal_id ));
382+ this ->outgoing_result_request .goal_id . uuid ,
383+ this ->incoming_result_request .goal_id . uuid ));
384384
385385 // Initialize result response
386386 ASSERT_TRUE (rosidl_generator_c__int32__Sequence__init (
@@ -458,7 +458,7 @@ TEST_F(
458458 action_msgs__srv__CancelGoal_Response__init (&incoming_cancel_response);
459459
460460 // Initialize goal request
461- init_test_uuid0 (this ->outgoing_goal_request .goal_id );
461+ init_test_uuid0 (this ->outgoing_goal_request .goal_id . uuid );
462462 this ->outgoing_goal_request .goal .order = 10 ;
463463
464464 // Send goal request with valid arguments
@@ -498,8 +498,8 @@ TEST_F(
498498 // Check that the goal request was received correctly
499499 EXPECT_EQ (this ->outgoing_goal_request .goal .order , this ->incoming_goal_request .goal .order );
500500 EXPECT_TRUE (uuidcmp (
501- this ->outgoing_goal_request .goal_id ,
502- this ->incoming_goal_request .goal_id ));
501+ this ->outgoing_goal_request .goal_id . uuid ,
502+ this ->incoming_goal_request .goal_id . uuid ));
503503
504504 // Initialize goal response
505505 this ->outgoing_goal_response .accepted = true ;
@@ -549,7 +549,7 @@ TEST_F(
549549 EXPECT_EQ (this ->outgoing_goal_response .stamp .nanosec , this ->incoming_goal_response .stamp .nanosec );
550550
551551 // Initialize result request
552- init_test_uuid0 (this ->outgoing_result_request .goal_id );
552+ init_test_uuid0 (this ->outgoing_result_request .goal_id . uuid );
553553
554554 // Send result request with valid arguments
555555 ret = rcl_action_send_result_request (
@@ -562,7 +562,7 @@ TEST_F(
562562 this ->outgoing_feedback .feedback .sequence .data [0 ] = 0 ;
563563 this ->outgoing_feedback .feedback .sequence .data [1 ] = 1 ;
564564 this ->outgoing_feedback .feedback .sequence .data [2 ] = 2 ;
565- init_test_uuid0 (this ->outgoing_feedback .goal_id );
565+ init_test_uuid0 (this ->outgoing_feedback .goal_id . uuid );
566566
567567 // Publish feedback with valid arguments
568568 ret = rcl_action_publish_feedback (&this ->action_server , &this ->outgoing_feedback );
@@ -600,8 +600,8 @@ TEST_F(
600600
601601 // Check that feedback was received correctly
602602 EXPECT_TRUE (uuidcmp (
603- this ->outgoing_feedback .goal_id ,
604- this ->incoming_feedback .goal_id ));
603+ this ->outgoing_feedback .goal_id . uuid ,
604+ this ->incoming_feedback .goal_id . uuid ));
605605 ASSERT_EQ (
606606 this ->outgoing_feedback .feedback .sequence .size ,
607607 this ->incoming_feedback .feedback .sequence .size );
@@ -640,8 +640,8 @@ TEST_F(
640640
641641 // Check that the result request was received correctly
642642 EXPECT_TRUE (uuidcmp (
643- this ->outgoing_result_request .goal_id ,
644- this ->incoming_result_request .goal_id ));
643+ this ->outgoing_result_request .goal_id . uuid ,
644+ this ->incoming_result_request .goal_id . uuid ));
645645
646646 // Initialize result response
647647 ASSERT_TRUE (rosidl_generator_c__int32__Sequence__init (
0 commit comments