From aff02b297c4fd842cf049417f6315be319625bc7 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Thu, 26 Oct 2017 10:24:01 -0500 Subject: test: Add list-applications This calls SimAuthentication.GetApplications --- test/list-applications | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 test/list-applications (limited to 'test') diff --git a/test/list-applications b/test/list-applications new file mode 100755 index 00000000..217ba80d --- /dev/null +++ b/test/list-applications @@ -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('') -- cgit v1.2.1