RCL - RoboCLuedo  v1.0
Francesco Ganci - S4143910 - Experimental Robotics Lab - Assignment 1
test_cluedo_random_room.py
Go to the documentation of this file.
1 #! /usr/bin/env python
2 
3 """! @file test_cluedo_random_room.py
4 
5 @brief testing the node cluedo_random_room.cpp
6 
7 @authors Francesco Ganci (S4143910)
8 @version v1.0
9 
10 Simple test for the target request in cluedo_random_room.cpp: perform the
11 request 50 times.
12 
13 @see test_cluedo_random_room.launch launch file for the test
14 
15 """
16 
17 import rospy
18 from robocluedo_msgs.srv import RandomRoom, RandomRoomRequest, RandomRoomResponse
19 
20 
21 test_name = "test_cluedo_random_room"
22 
23 client_name_random_room = "/random_room"
24 client_random_room = None
25 
26 nrooms = 50
27 
28 
29 
31  global client_random_room
32  global nrooms
33 
34  roomslist = list( )
35  for room_idx in range( nrooms ):
36  rospy.loginfo( "[%s] room number (%d) -> %s",
37  test_name,
38  room_idx+1,
39  client_random_room( ).room )
40 
41 
42 
43 
44 def main( ):
45  # global
46 
47  # altre operazioni utili prima di iniziare i test...
48 
49  perform_tests( )
50 
51 
52 
53 
54 def on_shut_msg( ):
55  rospy.loginfo( "[%s] closing...", test_name )
56 
57 
58 
59 
60 if __name__ == "__main__":
61  rospy.init_node( test_name )
62 
63  rospy.loginfo( "[%s] INIT", test_name )
64  rospy.on_shutdown( on_shut_msg )
65 
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 )
70 
71  main( )
test_cluedo_random_room.on_shut_msg
def on_shut_msg()
Definition: test_cluedo_random_room.py:54
test_cluedo_random_room.main
def main()
Definition: test_cluedo_random_room.py:44
test_cluedo_random_room.perform_tests
def perform_tests()
Definition: test_cluedo_random_room.py:30
test_cluedo_random_room.client_random_room
client_random_room
Definition: test_cluedo_random_room.py:24