1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-07-03 08:42:35 +02:00

Fixed test case (now uses threadID when creating Chats).

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@3130 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2005-12-01 02:23:42 +00:00 committed by gato
parent 5b39e285ea
commit 3db31f9169

View file

@ -44,8 +44,8 @@ public class PresencePriorityTest extends SmackTestCase {
Thread.sleep(150); Thread.sleep(150);
// Create the chats between the participants // Create the chats between the participants
Chat chat0 = new Chat(getConnection(0), getBareJID(1)); Chat chat0 = new Chat(getConnection(0), getBareJID(1));
Chat chat1 = new Chat(getConnection(1), getBareJID(0)); Chat chat1 = new Chat(getConnection(1), getBareJID(0), chat0.getThreadID());
Chat chat2 = new Chat(conn, getBareJID(0)); Chat chat2 = new Chat(conn, getBareJID(0), chat0.getThreadID());
// Test delivery of message to the presence with highest priority // Test delivery of message to the presence with highest priority
chat0.sendMessage("Hello"); chat0.sendMessage("Hello");
@ -86,7 +86,7 @@ public class PresencePriorityTest extends SmackTestCase {
conn.login(getUsername(1), getUsername(1), "OtherPlace"); conn.login(getUsername(1), getUsername(1), "OtherPlace");
conn.sendPacket(new Presence(Presence.Type.AVAILABLE, null, 1, conn.sendPacket(new Presence(Presence.Type.AVAILABLE, null, 1,
Presence.Mode.AVAILABLE)); Presence.Mode.AVAILABLE));
chat2 = new Chat(conn, getBareJID(0)); chat2 = new Chat(conn, getBareJID(0), chat0.getThreadID());
Thread.sleep(150); Thread.sleep(150);
// Test delivery of message to the presence with highest priority // Test delivery of message to the presence with highest priority
@ -125,9 +125,4 @@ public class PresencePriorityTest extends SmackTestCase {
protected int getMaxConnections() { protected int getMaxConnections() {
return 2; return 2;
} }
protected void setUp() throws Exception {
XMPPConnection.DEBUG_ENABLED = false;
super.setUp();
}
} }