From 3d2d2595781c78a447a27f19b5cde67cf9dbe966 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 2 Sep 2009 03:48:46 -0700 Subject: [PATCH] Add test script to monitor all PropertyChanged signals --- Makefile.am | 2 +- test/monitor-ofono | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100755 test/monitor-ofono diff --git a/Makefile.am b/Makefile.am index aa106080..723acfc4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -143,7 +143,7 @@ test_files = test/test-manager test/test-modem test/test-voicecall \ test/test-call-forwarding test/test-call-barring \ test/test-ss-control-cb test/test-ss-control-cf \ test/test-ss-control-cs \ - test/list-modems test/enable-modem + test/monitor-ofono test/list-modems test/enable-modem EXTRA_DIST = src/genbuiltin src/ofono.conf $(doc_files) $(test_files) diff --git a/test/monitor-ofono b/test/monitor-ofono new file mode 100755 index 00000000..dbcd8469 --- /dev/null +++ b/test/monitor-ofono @@ -0,0 +1,28 @@ +#!/usr/bin/python + +import gobject + +import dbus +import dbus.mainloop.glib + +def property_changed(name, value, path, interface): + iface = interface[interface.rfind(".") + 1:] + if name in [""]: + val = int(value) + else: + val = str(value) + print "{%s} [%s] %s = %s" % (iface, path, name, val) + +if __name__ == '__main__': + dbus.mainloop.glib.DBusGMainLoop(set_as_default=True) + + bus = dbus.SystemBus() + + bus.add_signal_receiver(property_changed, + bus_name="org.ofono", + signal_name = "PropertyChanged", + path_keyword="path", + interface_keyword="interface") + + mainloop = gobject.MainLoop() + mainloop.run()