summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-03-25 17:14:19 -0700
committerMarcel Holtmann <marcel@holtmann.org>2009-03-25 17:14:19 -0700
commitc1beabceca8862bb17efc2155e0ca4811928407f (patch)
treeef5a378d64d6dde5f5e41937150a320a3cef9bd4 /test
parentd768f6821cdb93ffbce08fbb19777202e61682b7 (diff)
downloadconnman-c1beabceca8862bb17efc2155e0ca4811928407f.tar.gz
connman-c1beabceca8862bb17efc2155e0ca4811928407f.tar.bz2
connman-c1beabceca8862bb17efc2155e0ca4811928407f.zip
Add test script for setting device priorities
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am4
-rwxr-xr-xtest/set-priority28
2 files changed, 30 insertions, 2 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index e88b602d..d09108e5 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -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
index 00000000..37a0e72d
--- /dev/null
+++ b/test/set-priority
@@ -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])));