RCL - RoboCLuedo  v1.0
Francesco Ganci - S4143910 - Experimental Robotics Lab - Assignment 1
test_cluedo_armor_interface.py
Go to the documentation of this file.
1 #! /usr/bin/env python
2 
3 """! @file test_cluedo_armor_interface.py
4 
5 @brief testing the node cluedo_armor_interface.cpp
6 
7 @authors Francesco Ganci (S4143910)
8 @version v1.0
9 
10 This node implements a simple test for the node cluedo_armor_interface.cpp :
11 try a simple reasoning process using the interface.
12 
13 @see test_cluedo_armor_interface.launch launch file for the test
14 
15 """
16 
17 import rospy
18 from robocluedo_msgs.srv import AddHint, AddHintRequest, AddHintResponse
19 from robocluedo_msgs.srv import FindConsistentHypotheses, FindConsistentHypothesesRequest, FindConsistentHypothesesResponse
20 from robocluedo_msgs.msg import Hypothesis
21 from robocluedo_msgs.srv import DiscardHypothesis, DiscardHypothesisRequest, DiscardHypothesisResponse
22 from std_srvs.srv import Trigger, TriggerRequest, TriggerResponse
23 
24 client_name_add_hint = "/cluedo_armor/add_hint"
25 client_add_hint = None
26 
27 client_name_find_consistent_h = "/cluedo_armor/find_consistent_h"
28 client_find_consistent_h = None
29 
30 client_name_wrong_h = "/cluedo_armor/wrong_hypothesis"
31 client_wrong_h = None
32 
33 client_name_backup = "/cluedo_armor/backup"
34 client_backup = None
35 
36 
37 test_name = "test_cluedo_armor_interface"
38 
40  global client_add_hint
41  global client_find_consistent_h
42  global client_wrong_h
43  global client_backup
44 
45  rospy.loginfo( "[%s] formulating hypothesis : %s(where:%s, what:%s, who:%s)", test_name, "HP1", "study", "knife", "mark" )
46  client_add_hint( 1, "where", "HP1", "study" )
47  client_add_hint( 1, "what", "HP1", "knife" )
48  client_add_hint( 1, "who", "HP1", "mark" )
49 
50  rospy.loginfo( "[%s] expected 1 consistent hypothesis", test_name )
51  rospy.loginfo( "[%s] asking for consistent hypotheses... ", test_name )
52  hplist = client_find_consistent_h( ).hyp
53  rospy.loginfo( "[%s] received size : %d ", test_name, len(hplist) )
54  rospy.loginfo( "[%s] -> %s(where:%s, what:%s, who:%s)", test_name, hplist[0].tag, hplist[0].where, hplist[0].what, hplist[0].who )
55 
56  rospy.loginfo( "[%s] discarding the hypothesis... ", test_name )
57  wrong_h_msg = DiscardHypothesisRequest( )
58  wrong_h_msg.hypothesisTag = hplist[0].tag
59  client_wrong_h( wrong_h_msg )
60  rospy.loginfo( "[%s] asking again for consistent hypotheses... ", test_name )
61  hplist = client_find_consistent_h( ).hyp
62  rospy.loginfo( "[%s] received size (expected 0) : %d ", test_name, len(hplist) )
63 
64  rospy.loginfo( "[%s] saving ontology... ", test_name )
65  client_backup( )
66  rospy.loginfo( "[%s] OK!", test_name )
67 
68 
69 
70 
71 def main( ):
72  # global
73 
74  # altre operazioni utili prima di iniziare i test...
75 
76  perform_tests( )
77 
78 
79 
80 
81 def on_shut_msg( ):
82  rospy.loginfo( "[%s] closing...", test_name )
83 
84 
85 
86 
87 if __name__ == "__main__":
88  rospy.init_node( test_name )
89  rospy.on_shutdown( on_shut_msg )
90 
91  # service : add hint
92  rospy.loginfo( "[%s] asking for service [%s] ...", test_name, client_name_add_hint )
93  rospy.wait_for_service( client_name_add_hint )
94  client_add_hint = rospy.ServiceProxy( client_name_add_hint, AddHint )
95  rospy.loginfo( "[%s] OK!", test_name )
96 
97  # service : find consistent hypotheses
98  rospy.loginfo( "[%s] asking for service [%s] ...", test_name, client_name_find_consistent_h )
99  rospy.wait_for_service( client_name_find_consistent_h )
100  client_find_consistent_h = rospy.ServiceProxy( client_name_find_consistent_h, FindConsistentHypotheses )
101  rospy.loginfo( "[%s] OK!", test_name )
102 
103  # service : wrong hypothesis
104  rospy.loginfo( "[%s] asking for service [%s] ...", test_name, client_name_wrong_h )
105  rospy.wait_for_service( client_name_wrong_h )
106  client_wrong_h = rospy.ServiceProxy( client_name_wrong_h, DiscardHypothesis )
107  rospy.loginfo( "[%s] OK!", test_name )
108 
109  # service : backup
110  rospy.loginfo( "[%s] asking for service [%s] ...", test_name, client_name_backup )
111  rospy.wait_for_service( client_name_backup )
112  client_backup = rospy.ServiceProxy( client_name_backup, Trigger )
113  rospy.loginfo( "[%s] OK!", test_name )
114 
115  main( )
test_cluedo_armor_interface.on_shut_msg
def on_shut_msg()
Definition: test_cluedo_armor_interface.py:81
test_cluedo_armor_interface.client_find_consistent_h
client_find_consistent_h
Definition: test_cluedo_armor_interface.py:28
test_cluedo_armor_interface.client_backup
client_backup
Definition: test_cluedo_armor_interface.py:34
test_cluedo_armor_interface.client_wrong_h
client_wrong_h
Definition: test_cluedo_armor_interface.py:31
test_cluedo_armor_interface.perform_tests
def perform_tests()
Definition: test_cluedo_armor_interface.py:39
test_cluedo_armor_interface.main
def main()
Definition: test_cluedo_armor_interface.py:71
test_cluedo_armor_interface.client_add_hint
client_add_hint
Definition: test_cluedo_armor_interface.py:25