/*
* The MIT License (MIT)
*
* Copyright (c) 2014 Christian Schudt
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package rocks.xmpp.extensions.last;
import org.testng.Assert;
import org.testng.annotations.Test;
import rocks.xmpp.core.MockServer;
import rocks.xmpp.core.XmppException;
import rocks.xmpp.core.session.TestXmppSession;
import rocks.xmpp.core.stanza.PresenceEvent;
import rocks.xmpp.core.stanza.PresenceListener;
import rocks.xmpp.core.stanza.model.StanzaException;
import rocks.xmpp.core.stanza.model.client.Message;
import rocks.xmpp.core.stanza.model.client.Presence;
import rocks.xmpp.extensions.ExtensionTest;
import rocks.xmpp.extensions.avatar.AvatarManager;
import rocks.xmpp.extensions.disco.ServiceDiscoveryManager;
import rocks.xmpp.extensions.disco.model.info.Feature;
import rocks.xmpp.extensions.last.model.LastActivity;
import java.io.IOException;
import java.util.Date;
/**
* @author Christian Schudt
*/
public class LastActivityManagerTest extends ExtensionTest {
@Test
public void testLastActivityManagerIsCleared() throws IOException {
TestXmppSession xmppSession1 = new TestXmppSession();
LastActivityManager lastActivityManager = xmppSession1.getExtensionManager(LastActivityManager.class);
lastActivityManager.setLastActivityStrategy(new LastActivityStrategy() {
@Override
public Date getLastActivity() {
return new Date();
}
});
xmppSession1.close();
Assert.assertNull(lastActivityManager.getLastActivityStrategy());
}
@Test
public void testGetLastActivity() throws XmppException {
MockServer mockServer = new MockServer();
TestXmppSession xmppSession1 = new TestXmppSession(ROMEO, mockServer);
new TestXmppSession(JULIET, mockServer);
LastActivityManager lastActivityManager = xmppSession1.getExtensionManager(LastActivityManager.class);
LastActivity lastActivity = lastActivityManager.getLastActivity(JULIET);
Assert.assertNotNull(lastActivity);
}
@Test
public void testGetLastActivityIfDisabled() throws XmppException {
MockServer mockServer = new MockServer();
TestXmppSession xmppSession1 = new TestXmppSession(ROMEO, mockServer);
TestXmppSession xmppSession2 = new TestXmppSession(JULIET, mockServer);
xmppSession2.getExtensionManager(LastActivityManager.class).setEnabled(false);
LastActivityManager lastActivityManager = xmppSession1.getExtensionManager(LastActivityManager.class);
try {
lastActivityManager.getLastActivity(JULIET);
} catch (StanzaException e) {
return;
}
Assert.fail();
}
@Test
public void testLastActivityInAwayPresence() {
final TestXmppSession xmppSession1 = new TestXmppSession(ROMEO, new MockServer());
xmppSession1.getExtensionManager(AvatarManager.class).setEnabled(false);
xmppSession1.addPresenceListener(new PresenceListener() {
@Override
public void handle(PresenceEvent e) {
xmppSession1.removePresenceListener(this);
Assert.assertTrue(e.getPresence().getExtension(LastActivity.class) != null);
}
});
xmppSession1.send(new Message(JULIET));
xmppSession1.send(new Presence(Presence.Show.AWAY));
}
@Test
public void testLastActivityInXAPresence() {
TestXmppSession xmppSession1 = new TestXmppSession(ROMEO, new MockServer());
xmppSession1.getExtensionManager(AvatarManager.class).setEnabled(false);
xmppSession1.addPresenceListener(new PresenceListener() {
@Override
public void handle(PresenceEvent e) {
Assert.assertTrue(e.getPresence().getExtension(LastActivity.class) != null);
}
});
xmppSession1.send(new Message(JULIET));
xmppSession1.send(new Presence(Presence.Show.AWAY));
}
@Test
public void testLastActivityInChatPresence() {
TestXmppSession xmppSession1 = new TestXmppSession(ROMEO, new MockServer());
xmppSession1.getExtensionManager(AvatarManager.class).setEnabled(false);
xmppSession1.addPresenceListener(new PresenceListener() {
@Override
public void handle(PresenceEvent e) {
Assert.assertFalse(e.getPresence().getExtension(LastActivity.class) != null);
}
});
xmppSession1.send(new Presence(Presence.Show.CHAT));
}
@Test
public void testLastActivityInDndPresence() {
TestXmppSession xmppSession1 = new TestXmppSession(ROMEO, new MockServer());
xmppSession1.getExtensionManager(AvatarManager.class).setEnabled(false);
xmppSession1.addPresenceListener(new PresenceListener() {
@Override
public void handle(PresenceEvent e) {
Assert.assertFalse(e.getPresence().getExtension(LastActivity.class) != null);
}
});
xmppSession1.send(new Presence(Presence.Show.DND));
}
@Test
public void testLastActivityInInitialPresence() {
TestXmppSession xmppSession1 = new TestXmppSession(ROMEO, new MockServer());
xmppSession1.getExtensionManager(AvatarManager.class).setEnabled(false);
xmppSession1.addPresenceListener(new PresenceListener() {
@Override
public void handle(PresenceEvent e) {
Assert.assertFalse(e.getPresence().getExtension(LastActivity.class) != null);
}
});
xmppSession1.send(new Presence(Presence.Show.AWAY));
}
@Test
public void testServiceDiscoveryEntry() {
TestXmppSession xmppSession1 = new TestXmppSession();
LastActivityManager lastActivityManager = xmppSession1.getExtensionManager(LastActivityManager.class);
// By default, the manager should be enabled.
Assert.assertTrue(lastActivityManager.isEnabled());
ServiceDiscoveryManager serviceDiscoveryManager = xmppSession1.getExtensionManager(ServiceDiscoveryManager.class);
Feature feature = new Feature("jabber:iq:last");
Assert.assertTrue(serviceDiscoveryManager.getFeatures().contains(feature));
lastActivityManager.setEnabled(false);
Assert.assertFalse(lastActivityManager.isEnabled());
Assert.assertFalse(serviceDiscoveryManager.getFeatures().contains(feature));
}
}