summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-09-28 09:12:17 +0900
committerMarcel Holtmann <marcel@holtmann.org>2010-09-28 09:12:17 +0900
commite3208ad338ab54802182a3d5496130835bb81d89 (patch)
treee381c6ac7292c6d69c2515786a33294204c115ba /test
parentbb4f8d374b235af8a2e1a0fbd5a5d8123e129353 (diff)
downloadofono-e3208ad338ab54802182a3d5496130835bb81d89.tar.bz2
test: Add simple script to set APN, username and password
Diffstat (limited to 'test')
-rwxr-xr-xtest/set-context41
1 files changed, 41 insertions, 0 deletions
diff --git a/test/set-context b/test/set-context
new file mode 100755
index 00000000..3d15764a
--- /dev/null
+++ b/test/set-context
@@ -0,0 +1,41 @@
+#!/usr/bin/python
+
+import sys
+import dbus
+
+bus = dbus.SystemBus()
+
+manager = dbus.Interface(bus.get_object('org.ofono', '/'),
+ 'org.ofono.Manager')
+
+modems = manager.GetModems()
+
+for path, properties in modems:
+ if "org.ofono.ConnectionManager" not in properties["Interfaces"]:
+ continue
+
+ connman = dbus.Interface(bus.get_object('org.ofono', path),
+ 'org.ofono.ConnectionManager')
+
+ contexts = connman.GetContexts()
+
+ if len(contexts) < 1:
+ print "No context available"
+ exit(1)
+ else:
+ path = contexts[0][0]
+
+ context = dbus.Interface(bus.get_object('org.ofono', path),
+ 'org.ofono.ConnectionContext')
+
+ try:
+ context.SetProperty("AccessPointName", sys.argv[1])
+ if len(sys.argv) > 2:
+ context.SetProperty("Username", sys.argv[2])
+ if len(sys.argv) > 3:
+ context.SetProperty("Password", sys.argv[3])
+ except IndexError:
+ print "Usage: %s <apn_name> [username] [password]" % sys.argv[0]
+ exit(1)
+
+ print "Setting APN of %s to %s" % (path, sys.argv[1])