50 super(StopAppTest, self).
__init__(*args)
51 rospy.init_node(
'stop_app_test')
54 rospy.wait_for_service(
'/robot/list_apps')
55 rospy.wait_for_service(
'/robot/stop_app')
56 self.
list = rospy.ServiceProxy(
'/robot/list_apps', ListApps)
57 self.
stop = rospy.ServiceProxy(
'/robot/stop_app', StopApp)
60 list_req = ListAppsRequest()
61 list_res = ListAppsResponse()
62 while not 'app_manager/appA' in list(map(
lambda x: x.name, list_res.running_apps)):
63 list_res = self.
list.call(list_req)
67 stop_req = StopAppRequest(name=
'app_manager/appA')
68 stop_res = self.
stop.call(stop_req)
69 rospy.logwarn(
"received 'stop_app' {}".format(stop_res))
70 self.assertEqual(stop_res.stopped,
True)
72 if __name__ ==
'__main__':
74 rostest.run(
'stop_app_test', PKG, StopAppTest, sys.argv)
75 except KeyboardInterrupt:
77 print(
"{} exiting".format(PKG))