summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-01-03 00:47:53 -0800
committerMarcel Holtmann <marcel@holtmann.org>2010-01-03 00:47:53 -0800
commit3bac66a29d5e87874bfcd298a1a161805f3104db (patch)
treec2dc6a06f641c3013c402559d225e1b1432938da
parent6b21681e463c382d35e7add6edade25deb93db89 (diff)
downloadconnman-3bac66a29d5e87874bfcd298a1a161805f3104db.tar.gz
connman-3bac66a29d5e87874bfcd298a1a161805f3104db.tar.bz2
connman-3bac66a29d5e87874bfcd298a1a161805f3104db.zip
Add test script for just monitoring the manager interface
-rw-r--r--Makefile.am3
-rwxr-xr-xtest/monitor-manager39
2 files changed, 41 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index f294c254..2b1b87db 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -136,7 +136,8 @@ test_scripts = test/get-state test/list-profiles test/list-services \
test/set-passphrase test/set-address test/test-profile \
test/simple-agent test/show-introspection test/test-compat \
test/test-manager test/test-connman test/monitor-connman \
- test/connect-vpn test/disconnect-vpn test/list-providers
+ test/connect-vpn test/disconnect-vpn test/list-providers \
+ test/monitor-manager
if TEST
testdir = $(pkglibdir)/test
diff --git a/test/monitor-manager b/test/monitor-manager
new file mode 100755
index 00000000..a6192421
--- /dev/null
+++ b/test/monitor-manager
@@ -0,0 +1,39 @@
+#!/usr/bin/python
+
+import gobject
+
+import dbus
+import dbus.mainloop.glib
+
+def property_changed(name, value):
+ if name in ["Profiles", "Services", "Providers",
+ "Devices", "Networks"]:
+ val = "["
+ for i in value:
+ val = val + " " + i[i.rfind("/") + 1:]
+ val = val + " ]"
+ elif name in ["AvailableTechnologies", "EnabledTechnologies",
+ "ConnectedTechnologies",
+ "AvailableDebugs", "EnabledDebugs"]:
+ val = "["
+ for i in value:
+ val = val + " " + i
+ val = val + " ]"
+ elif name in ["Strength", "Priority"]:
+ val = int(value)
+ else:
+ val = str(value)
+ print "%s = %s" % (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",
+ dbus_interface="org.moblin.connman.Manager",
+ signal_name = "PropertyChanged")
+
+ mainloop = gobject.MainLoop()
+ mainloop.run()