/*
* ((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.muc;
import static com.calclab.emite.core.XmppURI.uri;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import org.junit.Before;
import org.junit.Test;
import com.calclab.emite.core.XmppURI;
import com.calclab.emite.core.stanzas.Message;
import com.calclab.emite.im.chat.ChatStatus;
import com.calclab.emite.xep.muc.RoomChat;
import com.calclab.emite.xep.muc.RoomChatManagerImpl;
import com.calclab.emite.xtesting.XmppSessionTester;
import com.calclab.emite.xtesting.handlers.BeforeMessageSentTestHandler;
import com.google.web.bindery.event.shared.EventBus;
import com.google.web.bindery.event.shared.SimpleEventBus;
public class RoomTests {
private EventBus eventBus;
private XmppSessionTester session;
private RoomChatManagerImpl manager;
private RoomChat room;
private XmppURI userURI;
private XmppURI roomURI;
@Before
public void beforeTest() {
userURI = uri("user@domain/res");
roomURI = uri("room@domain/user");
eventBus = new SimpleEventBus();
session = new XmppSessionTester(userURI);
manager = new RoomChatManagerImpl(eventBus, session, new RoomChatSelectionStrategy());
room = manager.open(roomURI);
}
@Test
public void shouldIdentifyUserAndAdminMessages() {
final Message adminMessage = new Message("admin");
adminMessage.setFrom(roomURI.getJID());
assertFalse(room.isUserMessage(adminMessage));
final Message userMessage = new Message("user");
userMessage.setFrom(XmppURI.uri("room@domain/someone"));
assertTrue(room.isUserMessage(userMessage));
}
@Test
public void shouldInterceptOutcomingMessages() {
// a little hack
room.getProperties().setStatus(ChatStatus.ready);
final BeforeMessageSentTestHandler handler = new BeforeMessageSentTestHandler();
room.addBeforeMessageSentHandler(handler);
room.send(new Message("body"));
assertTrue(handler.isCalledOnce());
assertEquals("body", handler.getLastMessage().getBody());
}
}