From b9d78ccae06676a1cc82b1555bc14fb6ecfcdae0 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 3 Dec 2008 13:27:51 +0100 Subject: Change test scripts to use Powered property --- test/disable-device | 14 +++++++------- test/enable-device | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) (limited to 'test') diff --git a/test/disable-device b/test/disable-device index ac55e77a..31e9f951 100755 --- a/test/disable-device +++ b/test/disable-device @@ -7,17 +7,17 @@ bus = dbus.SystemBus() manager = dbus.Interface(bus.get_object('org.moblin.connman', "/"), 'org.moblin.connman.Manager') -elements = manager.ListElements() +properties = manager.GetProperties() -for path in elements: - element = dbus.Interface(bus.get_object('org.moblin.connman', path), - 'org.moblin.connman.Element') +for path in properties["Devices"]: + device = dbus.Interface(bus.get_object('org.moblin.connman', path), + 'org.moblin.connman.Device') - properties = element.GetProperties() + properties = device.GetProperties() - if (properties["Type"] != "device"): + if (properties["Powered"] == dbus.Boolean(0)): continue print "[ %s ]" % (path) - element.Disable() + device.SetProperty("Powered", dbus.Boolean(0)); diff --git a/test/enable-device b/test/enable-device index 55bd1f19..e79b7361 100755 --- a/test/enable-device +++ b/test/enable-device @@ -7,17 +7,17 @@ bus = dbus.SystemBus() manager = dbus.Interface(bus.get_object('org.moblin.connman', "/"), 'org.moblin.connman.Manager') -elements = manager.ListElements() +properties = manager.GetProperties() -for path in elements: - element = dbus.Interface(bus.get_object('org.moblin.connman', path), - 'org.moblin.connman.Element') +for path in properties["Devices"]: + device = dbus.Interface(bus.get_object('org.moblin.connman', path), + 'org.moblin.connman.Device') - properties = element.GetProperties() + properties = device.GetProperties() - if (properties["Type"] != "device"): + if (properties["Powered"] == dbus.Boolean(1)): continue print "[ %s ]" % (path) - element.Enable() + device.SetProperty("Powered", dbus.Boolean(1)); -- cgit v1.2.3