From: Philippe Nunes Date: Fri, 8 Apr 2011 16:33:30 +0000 (+0200) Subject: test: Add ConfirmOpenChannel to test-stk-menu X-Git-Tag: 0.46~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=10779026949f57f23d5110e161c7890671be2c3f;p=platform%2Fupstream%2Fofono.git test: Add ConfirmOpenChannel to test-stk-menu --- diff --git a/test/test-stk-menu b/test/test-stk-menu index 1fde700..a9f92e8 100755 --- a/test/test-stk-menu +++ b/test/test-stk-menu @@ -208,6 +208,20 @@ class StkAgent(dbus.service.Object): if key == 't': raise EndSession("User wishes to terminate session") + @dbus.service.method("org.ofono.SimToolkitAgent", + in_signature="sy", out_signature="b") + def ConfirmOpenChannel(self, info, icon): + print "Open channel confirmation: (%s)" % (info) + print "Icon: (%d)" % (icon) + key = raw_input("Enter Confirmation (t, y, n):") + + if key == 't': + raise EndSession("User wishes to terminate session"); + elif key == 'y': + return True + else: + return False + def property_changed(name, value): print "SimToolKit property: %s changed to '%s'" % (name, value)