Print boolean properties as true or false
authorMarcel Holtmann <marcel@holtmann.org>
Mon, 15 Dec 2008 07:54:31 +0000 (08:54 +0100)
committerMarcel Holtmann <marcel@holtmann.org>
Mon, 15 Dec 2008 07:54:31 +0000 (08:54 +0100)
test/test-manager

index c99b54b..c0ad77d 100755 (executable)
@@ -10,11 +10,11 @@ manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
 properties = manager.GetProperties()
 
 def print_properties(key, value):
-       if (key == "Profiles"):
+       if key == "Profiles":
                interface = "org.moblin.connman.Profile"
-       elif (key == "Devices"):
+       elif key == "Devices":
                interface = "org.moblin.connman.Device"
-       elif (key == "Connections"):
+       elif key == "Connections":
                interface = "org.moblin.connman.Connection"
        else:
                return
@@ -28,10 +28,16 @@ def print_properties(key, value):
                properties = obj.GetProperties()
 
                for key in properties.keys():
-                       if (key == "Networks"):
+                       if key == "Networks":
                                continue
 
-                       if (key == "Strength"):
+                       if key in ["Powered", "Connected", "Available",
+                                                       "Remember", "Default"]:
+                               if properties[key] == dbus.Boolean(1):
+                                       val = "true"
+                               else:
+                                       val = "false"
+                       elif key == "Strength":
                                val = int(properties[key])
                        else:
                                val = str(properties[key])