summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-03-25 13:43:47 +0100
committerMarcel Holtmann <marcel@holtmann.org>2009-03-25 13:43:47 +0100
commit934cf07c50b1129c1e2e6354b28ca4ecbf5440d9 (patch)
tree6aee7ae7739a55cf94e1bcdffa36b7bab8750359 /test
parentea61bb44c4f6057a0002366838ee5550d07fa784 (diff)
downloadconnman-934cf07c50b1129c1e2e6354b28ca4ecbf5440d9.tar.gz
connman-934cf07c50b1129c1e2e6354b28ca4ecbf5440d9.tar.bz2
connman-934cf07c50b1129c1e2e6354b28ca4ecbf5440d9.zip
Add test script for joining hidden networks
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am4
-rwxr-xr-xtest/join-network29
2 files changed, 31 insertions, 2 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index d09108e5..2537323a 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 00000000..7ca4637b
--- /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 <ssid>" % (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] })