From 48dad19c8128b6da9666182520674f9b612a3e85 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 8 Apr 2008 07:36:44 +0200 Subject: [PATCH] Update scripts to handle new network methods --- test/list-interfaces | 10 ++++++++++ test/select-network | 10 ++++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/test/list-interfaces b/test/list-interfaces index 2cd0424..5a1d28f 100755 --- a/test/list-interfaces +++ b/test/list-interfaces @@ -23,4 +23,14 @@ for path in interfaces: for key in ipv4.keys(): print " IPv4.%s = %s" % (key, ipv4[key]) + networks = interface.ListNetworks() + for i in networks: + print " Network.Path = %s" % (i) + + network = dbus.Interface(bus.get_object('org.freedesktop.connman', i), + 'org.freedesktop.connman.Network') + + print " Network.Identifier = %s" % (network.GetIdentifier()) + print " Network.Passphrase = %s" % (network.GetPassphrase()) + print diff --git a/test/select-network b/test/select-network index 0d48ad3..e009d75 100755 --- a/test/select-network +++ b/test/select-network @@ -18,8 +18,14 @@ for path in interfaces: properties = interface.GetProperties() if (properties["Type"] == "80211"): - print " Selecting network" - interface.SelectNetwork("ConnMan Testing") + networks = interface.ListNetworks() + for i in networks: + network = dbus.Interface(bus.get_object('org.freedesktop.connman', i), + 'org.freedesktop.connman.Network') + + if (network.GetIdentifier() == "ConnMan Testing"): + print " Selecting network %s" % (i) + interface.SelectNetwork(i) else: print " No networks" -- 1.7.9.5