summaryrefslogtreecommitdiffstats
path: root/test/cdma-list-call
diff options
context:
space:
mode:
Diffstat (limited to 'test/cdma-list-call')
-rwxr-xr-xtest/cdma-list-call25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/cdma-list-call b/test/cdma-list-call
new file mode 100755
index 00000000..c941383c
--- /dev/null
+++ b/test/cdma-list-call
@@ -0,0 +1,25 @@
+#!/usr/bin/python
+
+import dbus
+
+bus = dbus.SystemBus()
+
+manager = dbus.Interface(bus.get_object('org.ofono', '/'),
+ 'org.ofono.Manager')
+
+modems = manager.GetModems()
+
+for path, properties in modems:
+ print "[ %s ]" % (path)
+
+ if "org.ofono.cdma.VoiceCallManager" not in properties["Interfaces"]:
+ continue
+
+ mgr = dbus.Interface(bus.get_object('org.ofono', path),
+ 'org.ofono.cdma.VoiceCallManager')
+
+ properties = mgr.GetProperties()
+
+ for key in properties.keys():
+ val = str(properties[key])
+ print " %s = %s" % (key, val)