mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
[sinttest] Add MultiUserChatIntegrationTest.mucNameChangeTest()
This commit is contained in:
parent
9f58c992bd
commit
c5e3f89e21
1 changed files with 33 additions and 0 deletions
|
@ -23,8 +23,15 @@ import java.util.concurrent.TimeoutException;
|
||||||
|
|
||||||
import org.jivesoftware.smack.MessageListener;
|
import org.jivesoftware.smack.MessageListener;
|
||||||
import org.jivesoftware.smack.SmackException;
|
import org.jivesoftware.smack.SmackException;
|
||||||
|
import org.jivesoftware.smack.SmackException.NoResponseException;
|
||||||
|
import org.jivesoftware.smack.SmackException.NotConnectedException;
|
||||||
import org.jivesoftware.smack.XMPPException;
|
import org.jivesoftware.smack.XMPPException;
|
||||||
|
import org.jivesoftware.smack.XMPPException.XMPPErrorException;
|
||||||
import org.jivesoftware.smack.packet.Message;
|
import org.jivesoftware.smack.packet.Message;
|
||||||
|
import org.jivesoftware.smackx.muc.MultiUserChatException.MissingMucCreationAcknowledgeException;
|
||||||
|
import org.jivesoftware.smackx.muc.MultiUserChatException.MucAlreadyJoinedException;
|
||||||
|
import org.jivesoftware.smackx.muc.MultiUserChatException.MucConfigurationNotSupportedException;
|
||||||
|
import org.jivesoftware.smackx.muc.MultiUserChatException.NotAMucServiceException;
|
||||||
|
|
||||||
import org.igniterealtime.smack.inttest.SmackIntegrationTestEnvironment;
|
import org.igniterealtime.smack.inttest.SmackIntegrationTestEnvironment;
|
||||||
import org.igniterealtime.smack.inttest.TestNotPossibleException;
|
import org.igniterealtime.smack.inttest.TestNotPossibleException;
|
||||||
|
@ -33,6 +40,7 @@ import org.igniterealtime.smack.inttest.annotations.SpecificationReference;
|
||||||
import org.igniterealtime.smack.inttest.util.SimpleResultSyncPoint;
|
import org.igniterealtime.smack.inttest.util.SimpleResultSyncPoint;
|
||||||
import org.jxmpp.jid.EntityBareJid;
|
import org.jxmpp.jid.EntityBareJid;
|
||||||
import org.jxmpp.jid.parts.Resourcepart;
|
import org.jxmpp.jid.parts.Resourcepart;
|
||||||
|
import org.jxmpp.stringprep.XmppStringprepException;
|
||||||
|
|
||||||
@SpecificationReference(document = "XEP-0045")
|
@SpecificationReference(document = "XEP-0045")
|
||||||
public class MultiUserChatIntegrationTest extends AbstractMultiUserChatIntegrationTest {
|
public class MultiUserChatIntegrationTest extends AbstractMultiUserChatIntegrationTest {
|
||||||
|
@ -119,4 +127,29 @@ public class MultiUserChatIntegrationTest extends AbstractMultiUserChatIntegrati
|
||||||
assertEquals(0, muc.getOccupantsCount(), "Expected room " + mucAddress + " to no longer have any occupants after it was destroyed (but it has).");
|
assertEquals(0, muc.getOccupantsCount(), "Expected room " + mucAddress + " to no longer have any occupants after it was destroyed (but it has).");
|
||||||
assertNull(muc.getNickname());
|
assertNull(muc.getNickname());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SmackIntegrationTest
|
||||||
|
public void mucNameChangeTest()
|
||||||
|
throws XmppStringprepException, MucAlreadyJoinedException, MissingMucCreationAcknowledgeException,
|
||||||
|
NotAMucServiceException, NoResponseException, XMPPErrorException, NotConnectedException,
|
||||||
|
InterruptedException, MucConfigurationNotSupportedException {
|
||||||
|
EntityBareJid mucAddress = getRandomRoom("smack-inttest-muc-name-change");
|
||||||
|
|
||||||
|
MultiUserChat muc = mucManagerOne.getMultiUserChat(mucAddress);
|
||||||
|
createMuc(muc, Resourcepart.from("one-" + randomString));
|
||||||
|
|
||||||
|
final String newRoomName = "New Room Name (" + randomString + ")";
|
||||||
|
|
||||||
|
try {
|
||||||
|
muc.getConfigFormManager()
|
||||||
|
.setRoomName(newRoomName)
|
||||||
|
.submitConfigurationForm();
|
||||||
|
|
||||||
|
MultiUserChatManager mucManager = MultiUserChatManager.getInstanceFor(conTwo);
|
||||||
|
RoomInfo roomInfo = mucManager.getRoomInfo(muc.getRoom());
|
||||||
|
assertEquals(newRoomName, roomInfo.getName());
|
||||||
|
} finally {
|
||||||
|
tryDestroy(muc);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue