RCL - RoboCLuedo  v1.0
Francesco Ganci - S4143910 - Experimental Robotics Lab - Assignment 1
test_oracle_plus_interface.py
Go to the documentation of this file.
1 #! /usr/bin/env python
2 
3 """! @file test_oracle_plus_interface.py
4 
5 @brief testing the nodes cluedo_oracle.cpp and cluedo_armor_interface.cpp
6 
7 @authors Francesco Ganci (S4143910)
8 @version v1.0
9 
10 Each time an hint arrives, store it into the ontology.
11 
12 @see test_cluedo_oracle_plus_interface.launch launch file for the test
13 
14 """
15 
16 import rospy
17 from robocluedo_msgs.srv import CheckSolution, CheckSolutionRequest, CheckSolutionResponse
18 from std_msgs.msg import Empty
19 from robocluedo_msgs.msg import Hint
20 from robocluedo_msgs.srv import AddHint, AddHintRequest, AddHintResponse
21 from robocluedo_msgs.srv import FindConsistentHypotheses, FindConsistentHypothesesRequest, FindConsistentHypothesesResponse
22 from robocluedo_msgs.msg import Hypothesis
23 from robocluedo_msgs.srv import DiscardHypothesis, DiscardHypothesisRequest, DiscardHypothesisResponse
24 from std_srvs.srv import Trigger, TriggerRequest, TriggerResponse
25 
26 
27 
28 
29 client_name_check_solution = "/check_solution"
30 client_check_solution = None
31 
32 publisher_name_hint_sig = "/hint_signal"
33 publisher_hint_sig = None
34 
35 subscriber_name_hint = "/hint"
36 
37 client_name_add_hint = "/cluedo_armor/add_hint"
38 client_add_hint = None
39 
40 client_name_find_consistent_h = "/cluedo_armor/find_consistent_h"
41 client_find_consistent_h = None
42 
43 client_name_wrong_h = "/cluedo_armor/wrong_hypothesis"
44 client_wrong_h = None
45 
46 client_name_backup = "/cluedo_armor/backup"
47 client_backup = None
48 
49 
50 
51 
52 test_name = "test_oracle_plus_interface"
53 
54 
55 def make_hint_to_ontology( id, prop, val ):
56  srv_hint = AddHintRequest( )
57 
58  ''' add hint request
59  # the numeric ID of the hint
60  int32 hypID
61 
62  # fields of the property
63  string property
64  string Aelem
65  string Belem
66  '''
67 
68  srv_hint.hypID = id
69  srv_hint.property = prop
70  srv_hint.Aelem = "HP" + str( id )
71  srv_hint.Belem = val
72 
73  return srv_hint
74 
75 
76 def callback_hint( hint ):
77  global hint_idx
78  global received
79  global client_add_hint
80 
81  rospy.loginfo( "[%s] (number %d) received: HP%d(%s:%s)", test_name, hint_idx, hint.HintID, hint.HintType, hint.HintContent )
82 
83  rospy.loginfo( "[%s] adding hint to the ontology... ", test_name )
84  client_add_hint( make_hint_to_ontology( hint.HintID, hint.HintType, hint.HintContent ) )
85 
86  hplist = client_find_consistent_h( ).hyp
87  if len(hplist) > 0:
88  rospy.loginfo( "[%s] consistent hypotheses right now: ", test_name )
89  rospy.loginfo( "[%s] received size : %d ", test_name, len(hplist) )
90  for i in range( len(hplist) ):
91  rospy.loginfo( "[%s] -> %s(where:%s, what:%s, who:%s)", test_name, hplist[i].tag, hplist[i].where, hplist[i].what, hplist[i].who )
92 
93 
94 
95 
96 hint_idx = 0
97 received = False
99  global publisher_name_hint_sig
100  global client_check_solution
101  global hint_idx
102 
103  # rospy.loginfo( "number 1: hint system" )
104 
105  for hintno in range( 50 ):
106  rospy.loginfo( "[%s] sending signal %d ...", test_name, hint_idx )
107  publisher_hint_sig.publish( Empty( ) )
108  hint_idx = hint_idx + 1
109  rospy.sleep( rospy.Duration( 0.1 ) )
110 
111  rospy.loginfo( "[%s] saving the ontology...", test_name )
112  client_backup( )
113 
114 
115 
116 
117 def main( ):
118  # global
119 
120  # altre operazioni utili prima di iniziare i test...
121 
122  perform_tests( )
123 
124 
125 
126 
127 def on_shut_msg( ):
128  rospy.loginfo( "[%s] closing...", test_name )
129 
130 
131 
132 
133 if __name__ == "__main__":
134  rospy.init_node( test_name )
135  rospy.on_shutdown( on_shut_msg )
136 
137  # client : check solution
138  rospy.loginfo( "[%s] asking for service [%s] ...", test_name, client_name_check_solution )
139  rospy.wait_for_service( client_name_check_solution )
140  client_check_solution = rospy.ServiceProxy( client_name_check_solution, CheckSolution )
141  rospy.loginfo( "[%s] OK!", test_name )
142 
143  # publisher : hint signal
144  rospy.loginfo( "[%s] opening publisher to topic [%s] ...", test_name, publisher_name_hint_sig )
145  publisher_hint_sig = rospy.Publisher( publisher_name_hint_sig, Empty, queue_size=1 )
146  rospy.loginfo( "[%s] OK!", test_name )
147 
148  # subscriber : hint
149  rospy.loginfo( "[%s] subscribing to topic [%s] ...", test_name, subscriber_name_hint )
150  # rospy.wait_for_message( subscriber_name_hint, Hint )
151  rospy.Subscriber( subscriber_name_hint, Hint, callback_hint )
152  rospy.loginfo( "[%s] OK!", test_name )
153 
154  # service : add hint
155  rospy.loginfo( "[%s] asking for service [%s] ...", test_name, client_name_add_hint )
156  rospy.wait_for_service( client_name_add_hint )
157  client_add_hint = rospy.ServiceProxy( client_name_add_hint, AddHint )
158  rospy.loginfo( "[%s] OK!", test_name )
159 
160  # service : find consistent hypotheses
161  rospy.loginfo( "[%s] asking for service [%s] ...", test_name, client_name_find_consistent_h )
162  rospy.wait_for_service( client_name_find_consistent_h )
163  client_find_consistent_h = rospy.ServiceProxy( client_name_find_consistent_h, FindConsistentHypotheses )
164  rospy.loginfo( "[%s] OK!", test_name )
165 
166  # service : wrong hypothesis
167  rospy.loginfo( "[%s] asking for service [%s] ...", test_name, client_name_wrong_h )
168  rospy.wait_for_service( client_name_wrong_h )
169  client_wrong_h = rospy.ServiceProxy( client_name_wrong_h, DiscardHypothesis )
170  rospy.loginfo( "[%s] OK!", test_name )
171 
172  # service : backup
173  rospy.loginfo( "[%s] asking for service [%s] ...", test_name, client_name_backup )
174  rospy.wait_for_service( client_name_backup )
175  client_backup = rospy.ServiceProxy( client_name_backup, Trigger )
176  rospy.loginfo( "[%s] OK!", test_name )
177 
178  main( )
test_oracle_plus_interface.client_backup
client_backup
Definition: test_oracle_plus_interface.py:47
test_oracle_plus_interface.perform_tests
def perform_tests()
Definition: test_oracle_plus_interface.py:98
test_oracle_plus_interface.client_add_hint
client_add_hint
Definition: test_oracle_plus_interface.py:38
test_oracle_plus_interface.make_hint_to_ontology
def make_hint_to_ontology(id, prop, val)
Definition: test_oracle_plus_interface.py:55
test_oracle_plus_interface.callback_hint
def callback_hint(hint)
Definition: test_oracle_plus_interface.py:76
test_oracle_plus_interface.main
def main()
Definition: test_oracle_plus_interface.py:117
test_oracle_plus_interface.on_shut_msg
def on_shut_msg()
Definition: test_oracle_plus_interface.py:127
test_oracle_plus_interface.client_find_consistent_h
client_find_consistent_h
Definition: test_oracle_plus_interface.py:41