diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2008-12-21 23:03:23 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2008-12-21 23:03:23 +0100 |
commit | da067394411a7176d8f6844edc251ae2dcb50355 (patch) | |
tree | 678831438454768601e28af183f7808e3edee3db /test | |
parent | f3570489ceb89d349f3212548f40eff98e33ecf0 (diff) | |
download | connman-da067394411a7176d8f6844edc251ae2dcb50355.tar.gz connman-da067394411a7176d8f6844edc251ae2dcb50355.tar.bz2 connman-da067394411a7176d8f6844edc251ae2dcb50355.zip |
Add test script for setting addresses
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rwxr-xr-x | test/set-address | 26 |
2 files changed, 27 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 2087e881..30546b9c 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -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 index 00000000..ebff30ad --- /dev/null +++ b/test/set-address @@ -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 |