summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-02-26 09:55:37 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-02-26 09:55:37 (GMT)
commite67eb946a93f2217291e1dd27e287e1b1f2f030a (patch)
tree19ac040223e833b25b8485055cf47eaf7179e4d8 /Swiften/QA/ScriptedTests/MultipleClients.lua
parentc2886c9ff6152130e2adb006f84268f972e629cc (diff)
downloadswift-e67eb946a93f2217291e1dd27e287e1b1f2f030a.zip
swift-e67eb946a93f2217291e1dd27e287e1b1f2f030a.tar.bz2
Moving tests around.
Diffstat (limited to 'Swiften/QA/ScriptedTests/MultipleClients.lua')
-rw-r--r--Swiften/QA/ScriptedTests/MultipleClients.lua32
1 files changed, 32 insertions, 0 deletions
diff --git a/Swiften/QA/ScriptedTests/MultipleClients.lua b/Swiften/QA/ScriptedTests/MultipleClients.lua
new file mode 100644
index 0000000..76eba74
--- /dev/null
+++ b/Swiften/QA/ScriptedTests/MultipleClients.lua
@@ -0,0 +1,32 @@
+--
+-- Copyright (c) 2010 Remko Tronçon
+-- Licensed under the GNU General Public License v3.
+-- See Documentation/Licenses/GPLv3.txt for more information.
+--
+
+require "sluift"
+
+-- sluift.debug = true
+num_clients = 10
+
+print("Connecting clients")
+clients = {}
+for i = 1, num_clients do
+ jid = os.getenv("SWIFT_CLIENTTEST_JID") .. "/Client" .. i
+ client = sluift.new_client(jid, os.getenv("SWIFT_CLIENTTEST_PASS"))
+ client:async_connect()
+ table.insert(clients, client)
+end
+
+print("Waiting for clients to be connected")
+for i, client in ipairs(clients) do
+ client:wait_connected()
+ client:send_presence("Hello")
+end
+
+print("Disconnecting clients")
+for i, client in ipairs(clients) do
+ client:disconnect()
+end
+
+print("Done")