3 """! @file test_cluedo_random_room.py
5 @brief testing the node cluedo_random_room.cpp
7 @authors Francesco Ganci (S4143910)
10 Simple test for the target request in cluedo_random_room.cpp: perform the
13 @see test_cluedo_random_room.launch launch file for the test
18 from robocluedo_msgs.srv
import RandomRoom, RandomRoomRequest, RandomRoomResponse
21 test_name =
"test_cluedo_random_room"
23 client_name_random_room =
"/random_room"
24 client_random_room =
None
31 global client_random_room
35 for room_idx
in range( nrooms ):
36 rospy.loginfo(
"[%s] room number (%d) -> %s",
55 rospy.loginfo(
"[%s] closing...", test_name )
60 if __name__ ==
"__main__":
61 rospy.init_node( test_name )
63 rospy.loginfo(
"[%s] INIT", test_name )
64 rospy.on_shutdown( on_shut_msg )
66 rospy.loginfo(
"[%s] asking for service [%s] ...", test_name, client_name_random_room )
67 rospy.wait_for_service( client_name_random_room )
68 client_random_room = rospy.ServiceProxy( client_name_random_room, RandomRoom )
69 rospy.loginfo(
"[%s] OK!", test_name )