/*
* ((e)) emite: A pure Google Web Toolkit XMPP library
* Copyright (c) 2008-2011 The Emite development team
*
* This file is part of Emite.
*
* Emite is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* Emite is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Emite. If not, see <http://www.gnu.org/licenses/>.
*/
package com.calclab.emite.xep.chatstate;
import static com.calclab.emite.core.XmppURI.uri;
import static org.junit.Assert.assertEquals;
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mockito;
import com.calclab.emite.core.XmppURI;
import com.calclab.emite.core.events.MessageReceivedEvent;
import com.calclab.emite.core.stanzas.Message;
import com.calclab.emite.im.chat.PairChat;
import com.calclab.emite.xep.chatstate.ChatStateHook;
import com.calclab.emite.xep.chatstate.ChatStateHook.ChatState;
import com.calclab.emite.xtesting.handlers.ChatStateChangedTestHandler;
import com.google.web.bindery.event.shared.SimpleEventBus;
public class ChatStateTest {
private static final XmppURI MYSELF = uri("self@domain/res");
private static final XmppURI OTHER = uri("other@domain/otherRes");
private ChatStateChangedTestHandler stateHandler;
private PairChat pairChat;
private ChatStateHook chatStateHook;
@Before
public void aaCreate() {
pairChat = Mockito.mock(PairChat.class);
chatStateHook = new ChatStateHook(new SimpleEventBus(), pairChat);
stateHandler = new ChatStateChangedTestHandler();
chatStateHook.addChatStateChangedHandler(stateHandler);
}
@Test
public void shouldFireGone() {
final Message message = new Message(null, OTHER, MYSELF);
message.getXML().addChild("gone", "http://jabber.org/protocol/chatstates");
chatStateHook.onMessageReceived(new MessageReceivedEvent(message));
assertEquals(ChatState.gone, stateHandler.getLastChatState());
}
@Test
public void shouldFireOtherCompossing() {
final Message message = new Message(null, OTHER, MYSELF);
message.getXML().addChild("composing", "http://jabber.org/protocol/chatstates");
chatStateHook.onMessageReceived(new MessageReceivedEvent(message));
assertEquals(ChatState.composing, stateHandler.getLastChatState());
}
@Test
public void shouldFireOtherCompossingAsGmailDo() {
final Message message = new Message(null, OTHER, MYSELF);
message.getXML().addChild("cha:composing", "http://jabber.org/protocol/chatstates");
chatStateHook.onMessageReceived(new MessageReceivedEvent(message));
assertEquals(ChatState.composing, stateHandler.getLastChatState());
}
@Test
public void shouldFireOtherCompossingToWithoutResource() {
final Message message = new Message(null, OTHER.getJID(), MYSELF);
message.getXML().addChild("cha:composing", "http://jabber.org/protocol/chatstates");
chatStateHook.onMessageReceived(new MessageReceivedEvent(message));
assertEquals(ChatState.composing, stateHandler.getLastChatState());
}
}