summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am2
-rwxr-xr-xtest/set-ip-method33
2 files changed, 34 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 37d5ef89..b10b1bb1 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -141,7 +141,7 @@ test_scripts = test/get-state test/list-profiles test/list-services \
test/simple-agent test/show-introspection test/test-compat \
test/test-manager test/test-connman test/monitor-connman \
test/connect-vpn test/disconnect-vpn test/list-providers \
- test/monitor-manager test/test-counter
+ test/monitor-manager test/test-counter test/set-ip-method
if TEST
testdir = $(pkglibdir)/test
diff --git a/test/set-ip-method b/test/set-ip-method
new file mode 100755
index 00000000..0d08e4d3
--- /dev/null
+++ b/test/set-ip-method
@@ -0,0 +1,33 @@
+#!/usr/bin/python
+
+import sys
+import dbus
+
+def print_usage():
+ print "Usage: %s <service> [off|dhcp|manual <address> [netmask]]" % (sys.argv[0])
+
+
+if (len(sys.argv) < 3):
+ print_usage()
+ sys.exit(1)
+
+bus = dbus.SystemBus()
+path = "/profile/default/" + sys.argv[1]
+service = dbus.Interface(bus.get_object('org.moblin.connman', path),
+ 'org.moblin.connman.Service')
+
+properties = service.GetProperties()
+
+print "Setting method %s for %s" % (sys.argv[2], sys.argv[1])
+
+ipv4_configuration = { "Method": sys.argv[2] }
+if (len(sys.argv) > 3):
+ ipv4_configuration["Address"] = sys.argv[3]
+if (len(sys.argv) > 4):
+ ipv4_configuration["Netmask"] = sys.argv[4]
+
+
+service.SetProperty("IPv4.Configuration", ipv4_configuration)
+print "New IPv4.Configuration: ", ipv4_configuration
+
+print