Add test script for setting addresses
authorMarcel Holtmann <marcel@holtmann.org>
Sun, 21 Dec 2008 22:03:23 +0000 (23:03 +0100)
committerMarcel Holtmann <marcel@holtmann.org>
Sun, 21 Dec 2008 22:03:23 +0000 (23:03 +0100)
test/Makefile.am
test/set-address [new file with mode: 0755]

index 2087e88..30546b9 100644 (file)
@@ -2,7 +2,7 @@
 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 simple-agent show-introspection \
+               set-passphrase set-address simple-agent show-introspection \
                test-manager test-compat monitor-connman
 
 MAINTAINERCLEANFILES = Makefile.in
diff --git a/test/set-address b/test/set-address
new file mode 100755 (executable)
index 0000000..ebff30a
--- /dev/null
@@ -0,0 +1,26 @@
+#!/usr/bin/python
+
+import sys
+import dbus
+
+if (len(sys.argv) < 2):
+       print "Usage: %s <address>" % (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')
+
+       print "Setting static address %s for %s" % (sys.argv[1], path)
+
+       device.SetProperty("IPv4.Method", "static")
+       device.SetProperty("IPv4.Address", sys.argv[1])
+
+       print