test: Add script for answering incoming calls

This commit is contained in:
Marcel Holtmann 2010-09-26 23:25:20 +09:00
parent 83dfa92ac1
commit 5879048ee4
2 changed files with 34 additions and 0 deletions

View 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 \

33
test/answer-calls Executable file
View File

@ -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()