From 89d77da83307772bbfa86d79790edf9aabd6a523 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Mon, 16 Aug 2010 17:07:28 +0200 Subject: [PATCH] Add simple test script to cancel USSD transactions --- Makefile.am | 3 ++- test/cancel-ussd | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100755 test/cancel-ussd 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()