Track current network within device framework
[connman] / test / test-manager
index c99b54b..7915eaf 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", "Scanning", "Connected",
+                                       "Available", "Remember", "Default"]:
+                               if properties[key] == dbus.Boolean(1):
+                                       val = "true"
+                               else:
+                                       val = "false"
+                       elif key in ["Strength", "Priority"]:
                                val = int(properties[key])
                        else:
                                val = str(properties[key])
@@ -48,6 +54,12 @@ def print_properties(key, value):
 for key in properties.keys():
        if key in ["Profiles", "Devices", "Connections"]:
                print_properties(key, properties[key])
+       elif key in ["OfflineMode"]:
+               print "%s" % (key)
+               if properties[key] == dbus.Boolean(1):
+                       print "    true"
+               else:
+                       print "    false"
        else:
                print "%s" % (key)
                print "    %s" % (properties[key])