|
Loading...
|
connman@connman.net
[Prev] Thread [Next] | [Prev] Date [Next]
[PATCH] update test/list-networks to new properties hierarchy Gustavo Sverzut Barbieri Mon Feb 15 09:00:19 2010
manager "Devices" property is gone, now need to walk "Technologies"
and then their devices.
---
test/list-networks | 56 ++++++++++++++++++++++++++++-----------------------
1 files changed, 31 insertions(+), 25 deletions(-)
diff --git a/test/list-networks b/test/list-networks
index bf552c7..052d318 100755
--- a/test/list-networks
+++ b/test/list-networks
@@ -19,36 +19,42 @@ def convert_ssid(ssid_list):
ssid = ssid + "."
return ssid
-for path in properties["Devices"]:
- device = dbus.Interface(bus.get_object("org.moblin.connman", path),
- "org.moblin.connman.Device")
+for path in properties["Technologies"]:
+ technology = dbus.Interface(bus.get_object("org.moblin.connman", path),
+ "org.moblin.connman.Technology")
- properties = device.GetProperties()
+ properties = technology.GetProperties()
- try:
- if properties["Type"] not in ["ethernet", "wifi", "wimax",
- "bluetooth", "cellular"]:
- continue
- except:
- continue
+ for path in properties["Devices"]:
+ device = dbus.Interface(bus.get_object("org.moblin.connman",
path),
+
"org.moblin.connman.Device")
- print "[ %s ]" % (path)
+ properties = device.GetProperties()
- for path in properties["Networks"]:
- network = dbus.Interface(bus.get_object("org.moblin.connman",
path),
- "org.moblin.connman.Network")
+ try:
+ if properties["Type"] not in ["ethernet", "wifi",
"wimax",
+ "bluetooth",
"cellular"]:
+ continue
+ except:
+ continue
- properties = network.GetProperties()
+ print "[ %s ]" % (path)
- print " [ %s ]" % (path)
+ for path in properties["Networks"]:
+ network =
dbus.Interface(bus.get_object("org.moblin.connman", path),
+
"org.moblin.connman.Network")
- for key in properties.keys():
- if key == "WiFi.SSID":
- ssid = convert_ssid(properties[key])
- print " %s = [ %s ]" % (key, ssid)
- elif key in ["Strength", "Priority"]:
- print " %s = %d" % (key, properties[key])
- else:
- print " %s = %s" % (key, properties[key])
+ properties = network.GetProperties()
- print
+ print " [ %s ]" % (path)
+
+ for key in properties.keys():
+ if key == "WiFi.SSID":
+ ssid = convert_ssid(properties[key])
+ print " %s = [ %s ]" % (key,
ssid)
+ elif key in ["Strength", "Priority"]:
+ print " %s = %d" % (key,
properties[key])
+ else:
+ print " %s = %s" % (key,
properties[key])
+
+ print
--
1.6.4.4
_______________________________________________
connman mailing list
[EMAIL PROTECTED]
http://lists.connman.net/listinfo/connman
- [PATCH] update test/list-networks to new properties hierarchy Gustavo Sverzut Barbieri 2010/02/15 <=
- Re: [PATCH] update test/list-networks to new properties hierarchy Marcel Holtmann 2010/02/15