Add support for connecting and disconnecting networks
[connman] / test / test-manager
index 5ed672a..09c6e19 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,31 @@ def print_properties(key, value):
                properties = obj.GetProperties()
 
                for key in properties.keys():
-                       print "        %s = %s" % (key, properties[key])
+                       if key == "Networks":
+                               continue
+
+                       if key in ["Powered", "Scanning", "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])
+
+                       print "        %s = %s" % (key, val)
+
+               if "Networks" in properties.keys():
+                       list = ""
+                       for path in properties["Networks"]:
+                               val = str(path)
+                               list = list + val[val.rfind("/") + 1:] + " "
+                       print "        Networks = [ %s]" % (list)
 
 for key in properties.keys():
-       if (key in ["Profiles", "Devices", "Connections"]):
+       if key in ["Profiles", "Devices", "Connections"]:
                print_properties(key, properties[key])
        else:
                print "%s" % (key)