mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 09:45:59 +01:00
98bf0d8cfb
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@7071 b35dd754-fafc-0310-a699-88a17e54d16e
106 lines
3.5 KiB
Java
106 lines
3.5 KiB
Java
/**
|
|
* $RCSfile$
|
|
* $Revision$
|
|
* $Date$
|
|
*
|
|
* Copyright 2003-2007 Jive Software.
|
|
*
|
|
* All rights reserved. Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package org.jivesoftware.smack;
|
|
|
|
import org.jivesoftware.smack.test.SmackTestCase;
|
|
import org.jivesoftware.smack.filter.ThreadFilter;
|
|
|
|
/**
|
|
* Simple test to measure server performance.
|
|
*
|
|
* @author Gaston Dombiak
|
|
*/
|
|
public class FloodTest extends SmackTestCase {
|
|
|
|
public FloodTest(String arg0) {
|
|
super(arg0);
|
|
}
|
|
|
|
public void testMessageFlood() {
|
|
try {
|
|
Chat chat11 = getConnection(0).getChatManager().createChat(getBareJID(1), null);
|
|
PacketCollector chat12 = getConnection(1).createPacketCollector(
|
|
new ThreadFilter(chat11.getThreadID()));
|
|
|
|
Chat chat21 = getConnection(0).getChatManager().createChat(getBareJID(2), null);
|
|
PacketCollector chat22 = getConnection(2).createPacketCollector(
|
|
new ThreadFilter(chat21.getThreadID()));
|
|
|
|
Chat chat31 = getConnection(0).getChatManager().createChat(getBareJID(3), null);
|
|
PacketCollector chat32 = getConnection(3).createPacketCollector(
|
|
new ThreadFilter(chat31.getThreadID()));
|
|
|
|
for (int i=0; i<500; i++) {
|
|
chat11.sendMessage("Hello_1" + i);
|
|
chat21.sendMessage("Hello_2" + i);
|
|
chat31.sendMessage("Hello_3" + i);
|
|
}
|
|
for (int i=0; i<500; i++) {
|
|
assertNotNull("Some message was lost (" + i + ")", chat12.nextResult(1000));
|
|
assertNotNull("Some message was lost (" + i + ")", chat22.nextResult(1000));
|
|
assertNotNull("Some message was lost (" + i + ")", chat32.nextResult(1000));
|
|
}
|
|
}
|
|
catch (Exception e) {
|
|
e.printStackTrace();
|
|
fail(e.getMessage());
|
|
}
|
|
}
|
|
|
|
/*public void testMUCFlood() {
|
|
try {
|
|
int floodNumber = 50000;
|
|
MultiUserChat chat = new MultiUserChat(getConnection(0), "myroom@" + getMUCDomain());
|
|
chat.create("phatom");
|
|
chat.sendConfigurationForm(new Form(Form.TYPE_SUBMIT));
|
|
|
|
MultiUserChat chat2 = new MultiUserChat(getConnection(1), "myroom@" + getMUCDomain());
|
|
chat2.join("christine");
|
|
|
|
for (int i=0; i<floodNumber; i++)
|
|
{
|
|
chat.sendMessage("hi");
|
|
}
|
|
|
|
Thread.sleep(200);
|
|
|
|
for (int i=0; i<floodNumber; i++)
|
|
{
|
|
if (i % 100 == 0) {
|
|
System.out.println(i);
|
|
}
|
|
assertNotNull("Received " + i + " of " + floodNumber + " messages",
|
|
chat2.nextMessage(SmackConfiguration.getPacketReplyTimeout()));
|
|
}
|
|
|
|
chat.leave();
|
|
//chat2.leave();
|
|
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
fail(e.getMessage());
|
|
}
|
|
}*/
|
|
|
|
protected int getMaxConnections() {
|
|
return 4;
|
|
}
|
|
}
|