summaryrefslogtreecommitdiffstats
path: root/test/initiate-ussd
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-08-16 19:09:30 +0200
committerMarcel Holtmann <marcel@holtmann.org>2010-08-16 19:09:30 +0200
commit0e4aaf004258188561cf58737e772deb4b2e4216 (patch)
tree998cc9a8974375723844c2dc2041a2069dc0fa48 /test/initiate-ussd
parent0b2beb0068b7d074b0160f3da9b7de91af69e241 (diff)
downloadofono-0e4aaf004258188561cf58737e772deb4b2e4216.tar.bz2
Add another test script for USSD transactions
Diffstat (limited to 'test/initiate-ussd')
-rwxr-xr-xtest/initiate-ussd59
1 files changed, 59 insertions, 0 deletions
diff --git a/test/initiate-ussd b/test/initiate-ussd
new file mode 100755
index 00000000..ab0a8c46
--- /dev/null
+++ b/test/initiate-ussd
@@ -0,0 +1,59 @@
+#!/usr/bin/python
+
+import sys
+import dbus
+
+if (len(sys.argv) < 2):
+ print "Usage: %s <ussd-string>" % (sys.argv[0])
+ sys.exit(1)
+
+bus = dbus.SystemBus()
+
+manager = dbus.Interface(bus.get_object('org.ofono', '/'),
+ 'org.ofono.Manager')
+
+properties = manager.GetProperties()
+path = properties["Modems"][0]
+
+ussd = dbus.Interface(bus.get_object('org.ofono', path),
+ 'org.ofono.SupplementaryServices')
+
+properties = ussd.GetProperties()
+state = properties["State"]
+
+print "State: %s" % (state)
+
+if state != "idle":
+ sys.exit(1);
+
+result = ussd.Initiate(sys.argv[1], timeout=100)
+
+properties = ussd.GetProperties()
+state = properties["State"]
+
+print result[0] + ": " + result[1]
+
+if state == "idle":
+ sys.exit(0)
+
+print "State: %s" % (state)
+
+if state != "user-response":
+ ussd.Cancel()
+ sys.exit(0)
+
+response = raw_input("Enter response: ")
+
+result = ussd.Respond(response)
+
+properties = ussd.GetProperties()
+state = properties["State"]
+
+print result
+
+if state == "idle":
+ sys.exit(0)
+
+print "State: %s" % (state)
+
+ussd.Cancel()