summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am1
-rwxr-xr-xtest/cdma-set-credentials28
2 files changed, 29 insertions, 0 deletions
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])