test: Add script for rejecting incoming calls
authorMarcel Holtmann <marcel@holtmann.org>
Mon, 2 Jan 2012 02:25:00 +0000 (18:25 -0800)
committerMarcel Holtmann <marcel@holtmann.org>
Mon, 2 Jan 2012 02:25:00 +0000 (18:25 -0800)
Makefile.am
test/reject-calls [new file with mode: 0755]

index f03de78..9831924 100644 (file)
@@ -485,6 +485,7 @@ test_scripts = test/backtrace \
                test/dial-number \
                test/list-calls \
                test/answer-calls \
+               test/reject-calls \
                test/create-multiparty \
                test/private-chat \
                test/disable-modem \
diff --git a/test/reject-calls b/test/reject-calls
new file mode 100755 (executable)
index 0000000..405eb44
--- /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.Hangup()