From cc8ade1b1fe20057f132aba59b15444282896312 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Thu, 19 Aug 2010 13:25:00 -0500 Subject: [PATCH] test: update list-contexts to the new API --- test/list-contexts | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/test/list-contexts b/test/list-contexts index f0731180..66a76c5c 100755 --- a/test/list-contexts +++ b/test/list-contexts @@ -17,20 +17,15 @@ for path in properties["Modems"]: print "[ %s ]" % (path) - if "org.ofono.DataConnectionManager" not in properties["Interfaces"]: + if "org.ofono.ConnectionManager" not in properties["Interfaces"]: continue - connmgr = dbus.Interface(bus.get_object('org.ofono', path), - 'org.ofono.DataConnectionManager') + connman = dbus.Interface(bus.get_object('org.ofono', path), + 'org.ofono.ConnectionManager') - properties = connmgr.GetProperties() - - for path in properties["PrimaryContexts"]: - context = dbus.Interface(bus.get_object('org.ofono', path), - 'org.ofono.PrimaryDataContext') - - properties = context.GetProperties() + contexts = connman.GetContexts() + for path, properties in contexts: print " [ %s ]" % (path) for key in properties.keys(): @@ -47,5 +42,5 @@ for path in properties["Modems"]: else: val = str(properties[key]) print " %s = %s" % (key, val) - + print