summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-05-12 15:11:19 -0700
committerMarcel Holtmann <marcel@holtmann.org>2009-05-12 15:11:19 -0700
commitd215729c664379b0344bfccd2096ed2e9eba84d3 (patch)
treec42ba0e9c9a0853000eef63198d8d8e36f662577 /test
parent6298d10b9abb30bffcd121c520be48b6c51693e9 (diff)
downloadconnman-d215729c664379b0344bfccd2096ed2e9eba84d3.tar.gz
connman-d215729c664379b0344bfccd2096ed2e9eba84d3.tar.bz2
connman-d215729c664379b0344bfccd2096ed2e9eba84d3.zip
Add a special test script to monitor service related signals
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am2
-rwxr-xr-xtest/monitor-services36
2 files changed, 37 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 2537323a..85e8977e 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -5,6 +5,6 @@ EXTRA_DIST = get-state list-profiles list-connections select-connection \
set-passphrase set-address set-policy set-priority \
connect-network disconnect-network join-network \
simple-agent show-introspection test-compat test-manager \
- test-connman monitor-connman debug-connman
+ test-connman monitor-connman monitor-services debug-connman
MAINTAINERCLEANFILES = Makefile.in
diff --git a/test/monitor-services b/test/monitor-services
new file mode 100755
index 00000000..1f8e6611
--- /dev/null
+++ b/test/monitor-services
@@ -0,0 +1,36 @@
+#!/usr/bin/python
+
+import gobject
+
+import dbus
+import dbus.mainloop.glib
+
+def property_changed(name, value, path, interface):
+ iface = interface[interface.rfind(".") + 1:]
+ if iface not in ["Manager", "Service"]:
+ return
+ if name in ["Profiles", "Services",
+ "Devices", "Networks", "Connections"]:
+ val = "["
+ for i in value:
+ val = val + " " + i[i.rfind("/") + 1:]
+ val = val + " ]"
+ elif name in ["Strength", "Priority"]:
+ 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.moblin.connman",
+ signal_name = "PropertyChanged",
+ path_keyword="path",
+ interface_keyword="interface")
+
+ mainloop = gobject.MainLoop()
+ mainloop.run()