RCL - RoboCLuedo  v1.0
Francesco Ganci - S4143910 - Experimental Robotics Lab - Assignment 1
test_cluedo_oracle.py
Go to the documentation of this file.
1 #! /usr/bin/env python
2 
3 """! @file test_cluedo_oracle.py
4 
5 @brief testing the node cluedo_oracle.cpp
6 
7 @authors Francesco Ganci (S4143910)
8 @version v1.0
9 
10 Simple test for the hint request in cluedo_oracle.cpp: perform the
11 request 25 times.
12 
13 @see test_cluedo_oracle.launch launch file for the test
14 
15 """
16 
17 import rospy
18 from robocluedo_msgs.srv import CheckSolution, CheckSolutionRequest, CheckSolutionResponse
19 from std_msgs.msg import Empty
20 from robocluedo_msgs.msg import Hint
21 
22 
23 
24 
25 client_name_check_solution = "/check_solution"
26 client_check_solution = None
27 
28 publisher_name_hint_sig = "/hint_signal"
29 publisher_hint_sig = None
30 
31 subscriber_name_hint = "/hint"
32 
33 
34 
35 
36 test_name = "test_cluedo_oracle"
37 
38 
39 def callback_hint( hint ):
40  global hint_idx
41  global received
42 
43  rospy.loginfo( "[%s] (number %d) received: HP%d(%s:%s)", test_name, hint_idx, hint.HintID, hint.HintType, hint.HintContent )
44 
45 
46 
47 
48 hint_idx = 0
49 received = False
51  global publisher_name_hint_sig
52  global client_check_solution
53  global hint_idx
54 
55  # rospy.loginfo( "number 1: hint system" )
56 
57  for hintno in range( 25 ):
58  rospy.loginfo( "[%s] sending signal %d ...", test_name, hint_idx )
59  publisher_hint_sig.publish( Empty( ) )
60  hint_idx = hint_idx + 1
61  rospy.sleep( rospy.Duration( 0.2 ) )
62 
63  pass
64 
65 
66 
67 
68 def main( ):
69  # global
70 
71  # altre operazioni utili prima di iniziare i test...
72 
73  perform_tests( )
74 
75 
76 
77 
78 def on_shut_msg( ):
79  rospy.loginfo( "[%s] closing...", test_name )
80 
81 
82 
83 
84 if __name__ == "__main__":
85  rospy.init_node( test_name )
86  rospy.on_shutdown( on_shut_msg )
87 
88  # client : check solution
89  rospy.loginfo( "[%s] asking for service [%s] ...", test_name, client_name_check_solution )
90  rospy.wait_for_service( client_name_check_solution )
91  client_check_solution = rospy.ServiceProxy( client_name_check_solution, CheckSolution )
92  rospy.loginfo( "[%s] OK!", test_name )
93 
94  # publisher : hint signal
95  rospy.loginfo( "[%s] opening publisher to topic [%s] ...", test_name, publisher_name_hint_sig )
96  publisher_hint_sig = rospy.Publisher( publisher_name_hint_sig, Empty, queue_size=1 )
97  rospy.loginfo( "[%s] OK!", test_name )
98 
99  # subscriber : hint
100  rospy.loginfo( "[%s] subscribing to topic [%s] ...", test_name, subscriber_name_hint )
101  # rospy.wait_for_message( subscriber_name_hint, Hint )
102  rospy.Subscriber( subscriber_name_hint, Hint, callback_hint )
103  rospy.loginfo( "[%s] OK!", test_name )
104 
105  main( )
test_cluedo_oracle.on_shut_msg
def on_shut_msg()
Definition: test_cluedo_oracle.py:78
test_cluedo_oracle.perform_tests
def perform_tests()
Definition: test_cluedo_oracle.py:50
test_cluedo_oracle.main
def main()
Definition: test_cluedo_oracle.py:68
test_cluedo_oracle.callback_hint
def callback_hint(hint)
Definition: test_cluedo_oracle.py:39