From 0b71a711582566520ab68746f40ec96d6e5726f5 Mon Sep 17 00:00:00 2001 From: Guillaume Zajac Date: Wed, 27 Jul 2011 16:19:29 +0200 Subject: [PATCH] test: add script to set credentials for cdma connection --- Makefile.am | 1 + test/cdma-set-credentials | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100755 test/cdma-set-credentials diff --git a/Makefile.am b/Makefile.am index d44e62b8..89190ad2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -528,6 +528,7 @@ test_scripts = test/backtrace \ test/cdma-list-call \ test/cdma-dial-number \ test/cdma-hangup \ + test/cdma-set-credentials \ test/disable-call-forwarding \ test/list-messages \ test/test-sms \ diff --git a/test/cdma-set-credentials b/test/cdma-set-credentials new file mode 100755 index 00000000..249ac11f --- /dev/null +++ b/test/cdma-set-credentials @@ -0,0 +1,28 @@ +#!/usr/bin/python + +import dbus +import sys + +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.cdma.ConnectionManager" not in properties["Interfaces"]: + continue + + cm = dbus.Interface(bus.get_object('org.ofono', path), + 'org.ofono.cdma.ConnectionManager') + + print "Connecting CDMA Packet Data Service on modem %s..." % path + + if len(sys.argv) > 1: + cm.SetProperty("Username", (sys.argv[1])) + print "Setting Username to %s" % (sys.argv[1]) + + if len(sys.argv) > 2: + cm.SetProperty("Password", (sys.argv[2])) + print "Setting Password to %s" % (sys.argv[2])