From 51671d4aa4c0e487e875c960510cea0da2749bf1 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Thu, 31 Jul 2008 01:00:21 +0200 Subject: [PATCH] Fix broken start-scanning test script --- test/start-scanning | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/test/start-scanning b/test/start-scanning index b593323..9b5878b 100755 --- a/test/start-scanning +++ b/test/start-scanning @@ -7,19 +7,22 @@ bus = dbus.SystemBus() manager = dbus.Interface(bus.get_object('org.moblin.connman', "/"), 'org.moblin.connman.Manager') -interfaces = manager.ListInterfaces() +elements = manager.ListElements() -for path in interfaces: - print "[ %s ]" % (path) +for path in elements: + element = dbus.Interface(bus.get_object('org.moblin.connman', path), + 'org.moblin.connman.Element') + + properties = element.GetProperties() - interface = dbus.Interface(bus.get_object('org.moblin.connman', path), - 'org.moblin.connman.Interface') + if (properties["Type"] != "device"): + continue - properties = interface.GetProperties() + print "[ %s ]" % (path) - if (properties["Type"] == "80211"): + if (properties["Subtype"] == "wifi"): print " Started scanning" - interface.Scan() + element.Update() else: print " No scanning" -- 2.7.4