summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2010-10-25 15:48:55 -0500
committerDenis Kenzior <denkenz@gmail.com>2010-10-25 16:32:49 -0500
commit42dfbc450b52fdaab1e2b78b63045b8931bac6d8 (patch)
tree660ece2ff51c4593b4e56173baef667dcf0e9c97
parent180f765ebe8de8df0c1e5b740d4d12a7435b5b99 (diff)
downloadofono-42dfbc450b52fdaab1e2b78b63045b8931bac6d8.tar.bz2
test: add deactivate-all
Uses ConnectionManager DeactivateAll
-rw-r--r--Makefile.am3
-rwxr-xr-xtest/deactivate-all20
2 files changed, 22 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 159c13c4..17797ae8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -409,7 +409,8 @@ test_scripts = test/backtrace \
test/unlock-pin \
test/enable-gprs \
test/disable-gprs \
- test/get-icon
+ test/get-icon \
+ test/deactivate-all
if TEST
testdir = $(pkglibdir)/test
diff --git a/test/deactivate-all b/test/deactivate-all
new file mode 100755
index 00000000..427009e8
--- /dev/null
+++ b/test/deactivate-all
@@ -0,0 +1,20 @@
+#!/usr/bin/python
+
+import sys
+import dbus
+
+bus = dbus.SystemBus()
+
+manager = dbus.Interface(bus.get_object('org.ofono', '/'),
+ 'org.ofono.Manager')
+
+modems = manager.GetModems()
+
+for path, properties in modems:
+ if "org.ofono.ConnectionManager" not in properties["Interfaces"]:
+ continue
+
+ connman = dbus.Interface(bus.get_object('org.ofono', path),
+ 'org.ofono.ConnectionManager')
+
+ connman.DeactivateAll()