2015-03-24 23:52:56 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Copyright 2015 Florian Schmaus
|
|
|
|
*
|
|
|
|
* 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;
|
|
|
|
|
2017-06-14 17:12:43 +02:00
|
|
|
import static org.jivesoftware.smackx.jiveproperties.JivePropertiesManager.addProperty;
|
|
|
|
import static org.jivesoftware.smackx.jiveproperties.JivePropertiesManager.getProperty;
|
2015-03-24 23:52:56 +01:00
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
import static org.junit.Assert.assertNotNull;
|
|
|
|
import static org.junit.Assert.assertTrue;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
import org.jivesoftware.smack.chat.ChatManagerListener;
|
|
|
|
import org.jivesoftware.smack.filter.ThreadFilter;
|
|
|
|
import org.jivesoftware.smack.packet.Message;
|
|
|
|
import org.jivesoftware.smackx.jiveproperties.JivePropertiesManager;
|
2017-06-14 17:12:43 +02:00
|
|
|
|
|
|
|
import org.igniterealtime.smack.inttest.AbstractSmackIntegrationTest;
|
|
|
|
import org.igniterealtime.smack.inttest.SmackIntegrationTest;
|
|
|
|
import org.igniterealtime.smack.inttest.SmackIntegrationTestEnvironment;
|
|
|
|
import org.junit.AfterClass;
|
|
|
|
import org.junit.BeforeClass;
|
2015-03-24 23:52:56 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests for Chat Manager and for Chat Manager Listener.
|
|
|
|
*
|
|
|
|
* @author Stawicki Adam
|
|
|
|
*/
|
|
|
|
public class ChatTest extends AbstractSmackIntegrationTest {
|
|
|
|
|
2017-01-11 19:35:55 +01:00
|
|
|
@SuppressWarnings("deprecation")
|
|
|
|
private final org.jivesoftware.smack.chat.ChatManager chatManagerOne;
|
2015-03-24 23:52:56 +01:00
|
|
|
private boolean invoked;
|
|
|
|
|
2017-01-11 19:35:55 +01:00
|
|
|
@SuppressWarnings("deprecation")
|
2015-03-24 23:52:56 +01:00
|
|
|
public ChatTest(SmackIntegrationTestEnvironment environment) {
|
|
|
|
super(environment);
|
2017-01-11 19:35:55 +01:00
|
|
|
chatManagerOne = org.jivesoftware.smack.chat.ChatManager.getInstanceFor(conOne);
|
2015-03-24 23:52:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@BeforeClass
|
2016-12-19 14:35:09 +01:00
|
|
|
public void setUp() {
|
2015-03-24 23:52:56 +01:00
|
|
|
JivePropertiesManager.setJavaObjectEnabled(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
@AfterClass
|
2016-12-19 14:35:09 +01:00
|
|
|
public void tearDown() {
|
2015-03-24 23:52:56 +01:00
|
|
|
JivePropertiesManager.setJavaObjectEnabled(false);
|
|
|
|
}
|
|
|
|
|
2017-01-11 19:35:55 +01:00
|
|
|
@SuppressWarnings("deprecation")
|
2015-03-24 23:52:56 +01:00
|
|
|
@SmackIntegrationTest
|
2017-12-13 23:10:11 +01:00
|
|
|
public void testProperties() throws Exception {
|
2017-01-11 19:35:55 +01:00
|
|
|
org.jivesoftware.smack.chat.Chat newChat = chatManagerOne.createChat(conTwo.getUser());
|
2017-01-03 11:12:34 +01:00
|
|
|
StanzaCollector collector = conTwo.createStanzaCollector(new ThreadFilter(newChat.getThreadID()));
|
2015-03-24 23:52:56 +01:00
|
|
|
|
|
|
|
Message msg = new Message();
|
|
|
|
|
|
|
|
msg.setSubject("Subject of the chat");
|
|
|
|
msg.setBody("Body of the chat");
|
|
|
|
addProperty(msg, "favoriteColor", "red");
|
|
|
|
addProperty(msg, "age", 30);
|
|
|
|
addProperty(msg, "distance", 30f);
|
|
|
|
addProperty(msg, "weight", 30d);
|
|
|
|
addProperty(msg, "male", true);
|
|
|
|
addProperty(msg, "birthdate", new Date());
|
|
|
|
|
|
|
|
newChat.sendMessage(msg);
|
|
|
|
|
2017-12-13 23:10:11 +01:00
|
|
|
Message msg2 = collector.nextResult(2000);
|
2015-03-24 23:52:56 +01:00
|
|
|
assertNotNull("No message was received", msg2);
|
|
|
|
assertEquals("Subjects are different", msg.getSubject(), msg2.getSubject());
|
|
|
|
assertEquals("Bodies are different", msg.getBody(), msg2.getBody());
|
|
|
|
assertEquals(
|
|
|
|
"favoriteColors are different",
|
|
|
|
getProperty(msg, "favoriteColor"),
|
|
|
|
getProperty(msg2, "favoriteColor"));
|
|
|
|
assertEquals(
|
|
|
|
"ages are different",
|
|
|
|
getProperty(msg, "age"),
|
|
|
|
getProperty(msg2, "age"));
|
|
|
|
assertEquals(
|
|
|
|
"distances are different",
|
|
|
|
getProperty(msg, "distance"),
|
|
|
|
getProperty(msg2, "distance"));
|
|
|
|
assertEquals(
|
|
|
|
"weights are different",
|
|
|
|
getProperty(msg, "weight"),
|
|
|
|
getProperty(msg2, "weight"));
|
|
|
|
assertEquals(
|
|
|
|
"males are different",
|
|
|
|
getProperty(msg, "male"),
|
|
|
|
getProperty(msg2, "male"));
|
|
|
|
assertEquals(
|
|
|
|
"birthdates are different",
|
|
|
|
getProperty(msg, "birthdate"),
|
|
|
|
getProperty(msg2, "birthdate"));
|
|
|
|
}
|
|
|
|
|
2017-01-11 19:35:55 +01:00
|
|
|
@SuppressWarnings("deprecation")
|
2015-03-24 23:52:56 +01:00
|
|
|
@SmackIntegrationTest
|
|
|
|
public void chatManagerTest() {
|
|
|
|
ChatManagerListener listener = new ChatManagerListener() {
|
|
|
|
|
|
|
|
@Override
|
2017-01-11 19:35:55 +01:00
|
|
|
public void chatCreated(org.jivesoftware.smack.chat.Chat chat, boolean createdLocally) {
|
2015-03-24 23:52:56 +01:00
|
|
|
invoked = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
try {
|
|
|
|
chatManagerOne.addChatListener(listener);
|
|
|
|
chatManagerOne.createChat(conTwo.getUser());
|
|
|
|
|
|
|
|
assertTrue("TestChatManagerListener wasn't invoked", invoked);
|
|
|
|
}
|
|
|
|
finally {
|
|
|
|
chatManagerOne.removeChatListener(listener);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|