3 """! @file test_cluedo_oracle.py
5 @brief testing the node cluedo_oracle.cpp
7 @authors Francesco Ganci (S4143910)
10 Simple test for the hint request in cluedo_oracle.cpp: perform the
13 @see test_cluedo_oracle.launch launch file for the test
18 from robocluedo_msgs.srv
import CheckSolution, CheckSolutionRequest, CheckSolutionResponse
19 from std_msgs.msg
import Empty
20 from robocluedo_msgs.msg
import Hint
25 client_name_check_solution =
"/check_solution"
26 client_check_solution =
None
28 publisher_name_hint_sig =
"/hint_signal"
29 publisher_hint_sig =
None
31 subscriber_name_hint =
"/hint"
36 test_name =
"test_cluedo_oracle"
43 rospy.loginfo(
"[%s] (number %d) received: HP%d(%s:%s)", test_name, hint_idx, hint.HintID, hint.HintType, hint.HintContent )
51 global publisher_name_hint_sig
52 global client_check_solution
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 ) )
79 rospy.loginfo(
"[%s] closing...", test_name )
84 if __name__ ==
"__main__":
85 rospy.init_node( test_name )
86 rospy.on_shutdown( on_shut_msg )
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 )
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 )
100 rospy.loginfo(
"[%s] subscribing to topic [%s] ...", test_name, subscriber_name_hint )
102 rospy.Subscriber( subscriber_name_hint, Hint, callback_hint )
103 rospy.loginfo(
"[%s] OK!", test_name )