summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am3
-rwxr-xr-xtest/cancel-ussd18
2 files changed, 20 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 97d17d2a..d704768b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -336,8 +336,9 @@ test_scripts = test/activate-context \
test/test-ss-control-cb \
test/test-ss-control-cf \
test/test-ss-control-cs \
- test/test-ussd \
test/test-voicecall \
+ test/test-ussd \
+ test/cancel-ussd \
test/offline-modem \
test/online-modem \
test/get-tech-preference \
diff --git a/test/cancel-ussd b/test/cancel-ussd
new file mode 100755
index 00000000..3bccb981
--- /dev/null
+++ b/test/cancel-ussd
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+
+import sys
+import dbus
+
+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')
+
+ussd.Cancel()