From 42dfbc450b52fdaab1e2b78b63045b8931bac6d8 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Mon, 25 Oct 2010 15:48:55 -0500 Subject: [PATCH] test: add deactivate-all Uses ConnectionManager DeactivateAll --- Makefile.am | 3 ++- test/deactivate-all | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100755 test/deactivate-all 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()