test: Add script for answering incoming calls
authorMarcel Holtmann <marcel@holtmann.org>
Sun, 26 Sep 2010 14:25:20 +0000 (23:25 +0900)
committerMarcel Holtmann <marcel@holtmann.org>
Sun, 26 Sep 2010 14:25:20 +0000 (23:25 +0900)
Makefile.am
test/answer-calls [new file with mode: 0755]

index 1338804..3c22e09 100644 (file)
@@ -333,6 +333,7 @@ test_scripts = test/backtrace \
                test/deactivate-context \
                test/dial-number \
                test/list-calls \
+               test/answer-calls \
                test/create-multiparty \
                test/private-chat \
                test/disable-modem \
diff --git a/test/answer-calls b/test/answer-calls
new file mode 100755 (executable)
index 0000000..0deb832
--- /dev/null
@@ -0,0 +1,33 @@
+#!/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.VoiceCallManager" not in properties["Interfaces"]:
+               continue
+
+       mgr = dbus.Interface(bus.get_object('org.ofono', path),
+                                       'org.ofono.VoiceCallManager')
+
+       calls = mgr.GetCalls()
+
+       for path, properties in calls:
+               state = properties["State"]
+               print "[ %s ] %s" % (path, state)
+
+               if state != "incoming":
+                       continue
+
+               call = dbus.Interface(bus.get_object('org.ofono', path),
+                                               'org.ofono.VoiceCall')
+
+               call.Answer()