test: Add simple script to set APN, username and password

This commit is contained in:
Marcel Holtmann 2010-09-28 09:12:17 +09:00
parent bb4f8d374b
commit e3208ad338
2 changed files with 42 additions and 0 deletions

View File

@ -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 \

41
test/set-context Executable file
View File

@ -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])