/** * * Copyright 2016 Fernando Ramirez * * 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.smackx.muclight; import java.util.HashMap; import org.jivesoftware.smack.packet.Message; import org.jivesoftware.smack.util.PacketParserUtils; import org.jivesoftware.smackx.muclight.element.MUCLightElements.AffiliationsChangeExtension; import org.junit.Assert; import org.junit.Test; import org.jxmpp.jid.Jid; import org.jxmpp.jid.impl.JidCreate; public class MUCLightAffiliationsChangeExtensionTest { private static final String exampleMessageStanza = "" + "" + "sarasa2@shakespeare.lit" + "sarasa1@shakespeare.lit" + "sarasa3@shakespeare.lit" + "" + ""; private static final String exampleMessageStanzaWithVersion = "" + "" + "qwerty" + "sarasa1@shakespeare.lit" + "sarasa3@shakespeare.lit" + "" + "" + ""; private static final String exampleMessageStanzaWithPrevVersion = "" + "" + "njiokm" + "qwerty" + "sarasa2@shakespeare.lit" + "sarasa1@shakespeare.lit" + "" + "" + ""; @Test public void checkAffiliationsChangeExtension() throws Exception { Message changeAffiliationsMessage = PacketParserUtils.parseStanza(exampleMessageStanza); AffiliationsChangeExtension affiliationsChangeExtension = AffiliationsChangeExtension .from(changeAffiliationsMessage); HashMap affiliations = affiliationsChangeExtension.getAffiliations(); Assert.assertEquals(affiliations.size(), 3); Assert.assertEquals(affiliations.get(JidCreate.from("sarasa2@shakespeare.lit")), MUCLightAffiliation.owner); Assert.assertEquals(affiliations.get(JidCreate.from("sarasa1@shakespeare.lit")), MUCLightAffiliation.member); Assert.assertEquals(affiliations.get(JidCreate.from("sarasa3@shakespeare.lit")), MUCLightAffiliation.none); } @Test public void checkAffiliationsChangeExtensionWithVersion() throws Exception { Message changeAffiliationsMessage = PacketParserUtils.parseStanza(exampleMessageStanzaWithVersion); AffiliationsChangeExtension affiliationsChangeExtension = AffiliationsChangeExtension .from(changeAffiliationsMessage); HashMap affiliations = affiliationsChangeExtension.getAffiliations(); Assert.assertEquals(affiliations.size(), 2); Assert.assertEquals(affiliations.get(JidCreate.from("sarasa1@shakespeare.lit")), MUCLightAffiliation.member); Assert.assertEquals(affiliations.get(JidCreate.from("sarasa3@shakespeare.lit")), MUCLightAffiliation.none); Assert.assertEquals(affiliationsChangeExtension.getVersion(), "qwerty"); } @Test public void checkAffiliationsChangeExtensionWithPrevVersion() throws Exception { Message changeAffiliationsMessage = PacketParserUtils .parseStanza(exampleMessageStanzaWithPrevVersion); AffiliationsChangeExtension affiliationsChangeExtension = AffiliationsChangeExtension .from(changeAffiliationsMessage); HashMap affiliations = affiliationsChangeExtension.getAffiliations(); Assert.assertEquals(affiliations.size(), 2); Assert.assertEquals(affiliations.get(JidCreate.from("sarasa2@shakespeare.lit")), MUCLightAffiliation.owner); Assert.assertEquals(affiliations.get(JidCreate.from("sarasa1@shakespeare.lit")), MUCLightAffiliation.member); Assert.assertEquals(affiliationsChangeExtension.getPrevVersion(), "njiokm"); Assert.assertEquals(affiliationsChangeExtension.getVersion(), "qwerty"); } }