test: Add list-applications

This calls SimAuthentication.GetApplications
This commit is contained in:
Denis Kenzior 2017-10-26 10:24:01 -05:00
parent 2dd64cda80
commit aff02b297c
2 changed files with 31 additions and 1 deletions

View File

@ -814,7 +814,8 @@ test_scripts = test/backtrace \
test/set-lte-property \ test/set-lte-property \
test/test-serving-cell-info \ test/test-serving-cell-info \
test/ims-register \ test/ims-register \
test/ims-unregister test/ims-unregister \
test/list-applications
if TEST if TEST

29
test/list-applications Executable file
View File

@ -0,0 +1,29 @@
#!/usr/bin/python3
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.SimAuthentication" not in properties["Interfaces"]:
continue
simauth = dbus.Interface(bus.get_object('org.ofono', path),
'org.ofono.SimAuthentication')
apps = simauth.GetApplications()
for path, properties in apps.items():
print(" [ %s ]" % (path))
for key in properties.keys():
val = str(properties[key])
print(" %s = %s" % (key, val))
print('')