test: Add test for listing messages

This commit is contained in:
Denis Kenzior 2011-01-28 20:29:15 -06:00
parent 6d48fe7a05
commit ff2a5c6506
2 changed files with 32 additions and 1 deletions

View File

@ -474,7 +474,8 @@ test_scripts = test/backtrace \
test/cdma-list-call \
test/cdma-dial-number \
test/cdma-hangup \
test/disable-call-forwarding
test/disable-call-forwarding \
test/list-messages
if TEST
testdir = $(pkglibdir)/test

30
test/list-messages Executable file
View File

@ -0,0 +1,30 @@
#!/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.MessageManager" not in properties["Interfaces"]:
continue
connman = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.MessageManager')
contexts = connman.GetMessages()
for path, properties in contexts:
print " [ %s ]" % (path)
for key in properties.keys():
val = str(properties[key])
print " %s = %s" % (key, val)
print