From 1fed4a5ebc54427591c7f7eadee8d5b900c1d8fc Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sun, 23 Nov 2008 15:08:37 +0100 Subject: Add test script for showing connection details --- test/list-connections | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 test/list-connections diff --git a/test/list-connections b/test/list-connections new file mode 100755 index 00000000..806490db --- /dev/null +++ b/test/list-connections @@ -0,0 +1,23 @@ +#!/usr/bin/python + +import dbus + +bus = dbus.SystemBus() + +manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"), + "org.moblin.connman.Manager") + +properties = manager.GetProperties() + +for path in properties["Connections"]: + connection = dbus.Interface(bus.get_object("org.moblin.connman", path), + "org.moblin.connman.Connection") + + properties = connection.GetProperties() + + print "[ %s ]" % (path) + + for key in properties.keys(): + print " %s = %s" % (key, properties[key]) + + print -- cgit v1.2.3