diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2010-01-25 07:14:11 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-01-25 07:14:11 +0100 |
commit | 32d267c1a6083f3f5183e5f3f15161b097f37419 (patch) | |
tree | 4de626ebde91e5104e02129d342a33c61206f47c /test/test-manager | |
parent | b5795c2b12e34ab29ad283b2ece3a507b17e3cb9 (diff) | |
download | connman-32d267c1a6083f3f5183e5f3f15161b097f37419.tar.gz connman-32d267c1a6083f3f5183e5f3f15161b097f37419.tar.bz2 connman-32d267c1a6083f3f5183e5f3f15161b097f37419.zip |
Add support for technology interface
Diffstat (limited to 'test/test-manager')
-rwxr-xr-x | test/test-manager | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/test/test-manager b/test/test-manager index a41d6570..6f9c2004 100755 --- a/test/test-manager +++ b/test/test-manager @@ -18,6 +18,8 @@ def print_properties(key, value): interface = "org.moblin.connman.Service" elif key == "Providers": interface = "org.moblin.connman.Provider" + elif key == "Technologies": + interface = "org.moblin.connman.Technology" else: return @@ -30,7 +32,8 @@ def print_properties(key, value): properties = obj.GetProperties() for key in properties.keys(): - if key in ["Networks", "Services", "Providers"]: + if key in ["Devices", "Networks", "Services", + "Providers", "Technologies"]: continue if key in ["Powered", "Scanning", "Connected", @@ -46,6 +49,12 @@ def print_properties(key, value): print " %s = %s" % (key, val) + if "Devices" in properties.keys(): + list = "" + for path in properties["Devices"]: + val = str(path) + list = list + val[val.rfind("/") + 1:] + " " + print " Devices = [ %s]" % (list) if "Networks" in properties.keys(): list = "" for path in properties["Networks"]: @@ -67,7 +76,8 @@ def print_properties(key, value): for key in properties.keys(): - if key in ["Profiles", "Devices", "Services", "Providers"]: + if key in ["Profiles", "Devices", "Services", "Providers", + "Technologies"]: print_properties(key, properties[key]) elif key in ["AvailableTechnologies", "EnabledTechnologies", "ConnectedTechnologies", |