summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTomasz Bursztyka <tomasz.bursztyka@nokia.com>2010-10-11 10:09:16 +0300
committerMarcel Holtmann <marcel@holtmann.org>2010-10-11 14:35:00 +0200
commitc1a99a30b982c3fbbc0483ffb36f167a82324deb (patch)
tree6c7155574729555119e71679382630c0b4d5c690 /test
parent8661f92deddc16c69b5e9f4fcebf98e66f64f771 (diff)
downloadconnman-c1a99a30b982c3fbbc0483ffb36f167a82324deb.tar.gz
connman-c1a99a30b982c3fbbc0483ffb36f167a82324deb.tar.bz2
connman-c1a99a30b982c3fbbc0483ffb36f167a82324deb.zip
Added a test tool for proxy configuration (set-proxy)
Diffstat (limited to 'test')
-rwxr-xr-xtest/set-proxy44
1 files changed, 44 insertions, 0 deletions
diff --git a/test/set-proxy b/test/set-proxy
new file mode 100755
index 00000000..6b39cb42
--- /dev/null
+++ b/test/set-proxy
@@ -0,0 +1,44 @@
+#!/usr/bin/python
+
+import sys
+import dbus
+
+if (len(sys.argv) < 2):
+ print "Usage:"
+ print "%s <service> direct" % (sys.argv[0])
+ print "%s <service> manual [servers=uri1,uri2,...] [excludes=host1,host2,...]" % (sys.argv[0])
+ print "%s <service> auto url=[pac-url]" % (sys.argv[0])
+ print "Example: %s service0 manual servers=proxy.example.com:8080" % sys.argv[0]
+ print " This would set the proxy uri and the method to manual"
+ 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')
+
+values = { "Method" : sys.argv[2] }
+
+properties = service.GetProperties()
+
+for arg in sys.argv[3:]:
+ if arg.startswith("url="):
+ url = arg.replace("url=", "", 1)
+ values["URL"] = url
+ if arg.startswith("servers="):
+ try:
+ servers_uris = arg.replace("servers=","",1).split(",")
+ except:
+ servers_uris = []
+ values["Servers"] = servers_uris
+ if arg.startswith("excludes="):
+ try:
+ excludes_uris = arg.replace("excludes=","",1).split(",")
+ except:
+ excludes_uris = []
+ values["Excludes"] = excludes_uris
+
+try:
+ service.SetProperty("Proxy.Configuration", dbus.Dictionary(values, signature='sv'))
+except dbus.exceptions.DBusException, e_msg:
+ print e_msg