From 934cf07c50b1129c1e2e6354b28ca4ecbf5440d9 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 25 Mar 2009 13:43:47 +0100 Subject: [PATCH] Add test script for joining hidden networks --- test/Makefile.am | 4 ++-- test/join-network | 29 +++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 2 deletions(-) create mode 100755 test/join-network diff --git a/test/Makefile.am b/test/Makefile.am index d09108e..2537323 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -3,8 +3,8 @@ EXTRA_DIST = get-state list-profiles list-connections select-connection \ list-devices enable-device disable-device start-scanning \ list-networks select-network disable-network create-network \ set-passphrase set-address set-policy set-priority \ - connect-network disconnect-network simple-agent \ - show-introspection test-compat test-manager \ + connect-network disconnect-network join-network \ + simple-agent show-introspection test-compat test-manager \ test-connman monitor-connman debug-connman MAINTAINERCLEANFILES = Makefile.in diff --git a/test/join-network b/test/join-network new file mode 100755 index 0000000..7ca4637 --- /dev/null +++ b/test/join-network @@ -0,0 +1,29 @@ +#!/usr/bin/python + +import sys +import dbus + +if (len(sys.argv) < 2): + print "Usage: %s " % (sys.argv[0]) + sys.exit(1) + +bus = dbus.SystemBus() + +manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"), + "org.moblin.connman.Manager") + +properties = manager.GetProperties() + +for path in properties["Devices"]: + device = dbus.Interface(bus.get_object("org.moblin.connman", path), + "org.moblin.connman.Device") + + properties = device.GetProperties() + + if (properties["Type"] != "wifi"): + continue; + + print "[ %s ]" % (path) + print "Attempting to join %s" % (sys.argv[1]) + + device.JoinNetwork({ "WiFi.SSID": sys.argv[1] }) -- 1.7.9.5