Add test script for setting device priorities
authorMarcel Holtmann <marcel@holtmann.org>
Thu, 26 Mar 2009 00:14:19 +0000 (17:14 -0700)
committerMarcel Holtmann <marcel@holtmann.org>
Thu, 26 Mar 2009 00:14:19 +0000 (17:14 -0700)
test/Makefile.am
test/set-priority [new file with mode: 0755]

index e88b602..d09108e 100644 (file)
@@ -2,9 +2,9 @@
 EXTRA_DIST = get-state list-profiles list-connections select-connection \
                list-devices enable-device disable-device start-scanning \
                list-networks select-network disable-network create-network \
-               set-passphrase set-address set-policy test-manager \
+               set-passphrase set-address set-policy set-priority \
                connect-network disconnect-network simple-agent \
-               show-introspection test-compat \
+               show-introspection test-compat test-manager \
                test-connman monitor-connman debug-connman
 
 MAINTAINERCLEANFILES = Makefile.in
diff --git a/test/set-priority b/test/set-priority
new file mode 100755 (executable)
index 0000000..37a0e72
--- /dev/null
@@ -0,0 +1,28 @@
+#!/usr/bin/python
+
+import sys
+import dbus
+
+if (len(sys.argv) < 3):
+       print "Usage: %s <device> <priority>" % (sys.argv[0])
+       sys.exit(1)
+
+bus = dbus.SystemBus()
+
+manager = dbus.Interface(bus.get_object('org.moblin.connman', "/"),
+                                       'org.moblin.connman.Manager')
+
+properties = manager.GetProperties()
+
+for path in properties["Devices"]:
+       device = dbus.Interface(bus.get_object('org.moblin.connman', path),
+                                               'org.moblin.connman.Device')
+
+       properties = device.GetProperties()
+
+       if properties["Interface"] != sys.argv[1]:
+               continue;
+
+       print "Setting priority %d for device %s" % (int(sys.argv[2]), path)
+
+       device.SetProperty("Priority", dbus.Byte(int(sys.argv[2])));