From e3208ad338ab54802182a3d5496130835bb81d89 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 28 Sep 2010 09:12:17 +0900 Subject: [PATCH] test: Add simple script to set APN, username and password --- Makefile.am | 1 + test/set-context | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100755 test/set-context diff --git a/Makefile.am b/Makefile.am index 73de3597..f499fb3e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -341,6 +341,7 @@ test_scripts = test/backtrace \ test/enable-modem \ test/enter-pin \ test/hangup-all \ + test/set-context \ test/list-contexts \ test/list-modems \ test/list-operators \ 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 [username] [password]" % sys.argv[0] + exit(1) + + print "Setting APN of %s to %s" % (path, sys.argv[1])