/** * * 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 static org.junit.jupiter.api.Assertions.assertEquals; import java.util.HashMap; import org.jivesoftware.smack.packet.IQ; import org.jivesoftware.smack.packet.StreamOpen; import org.jivesoftware.smack.util.PacketParserUtils; import org.jivesoftware.smackx.muclight.element.MUCLightBlockingIQ; import org.junit.jupiter.api.Test; import org.jxmpp.jid.Jid; import org.jxmpp.jid.impl.JidCreate; public class MUCLightBlockingTest { private static final String getBlockingListIQExample = "" + "" + "" + ""; private static final String getBlockingListIQResponse = "" + "" + "coven@muclight.shakespeare.lit" + "sarasa@muclight.shakespeare.lit" + "hag77@shakespeare.lit" + "" + ""; private static final String blockingRoomsIQExample = "" + "" + "coven@muclight.shakespeare.lit" + "chapel@shakespeare.lit" + "" + ""; private static final String blockingUsersIQExample = "" + "" + "hag77@shakespeare.lit" + "hag66@shakespeare.lit" + "" + ""; private static final String unblockingUsersAndRoomsExample = "" + "" + "coven@muclight.shakespeare.lit" + "hag66@shakespeare.lit" + "" + ""; @Test public void checkGetBlockingListIQ() throws Exception { MUCLightBlockingIQ mucLightBlockingIQ = new MUCLightBlockingIQ(null, null); mucLightBlockingIQ.setType(IQ.Type.get); mucLightBlockingIQ.setStanzaId("getblock1"); mucLightBlockingIQ.setTo(JidCreate.from("muclight.shakespeare.lit")); assertEquals(getBlockingListIQExample, mucLightBlockingIQ.toXML(StreamOpen.CLIENT_NAMESPACE).toString()); } @Test public void checkGetBlockingListResponse() throws Exception { IQ iqInfoResult = PacketParserUtils.parseStanza(getBlockingListIQResponse); MUCLightBlockingIQ mucLightBlockingIQ = (MUCLightBlockingIQ) iqInfoResult; assertEquals(2, mucLightBlockingIQ.getRooms().size()); assertEquals(1, mucLightBlockingIQ.getUsers().size()); assertEquals(false, mucLightBlockingIQ.getRooms().get(JidCreate.from("coven@muclight.shakespeare.lit"))); assertEquals(false, mucLightBlockingIQ.getRooms().get(JidCreate.from("sarasa@muclight.shakespeare.lit"))); assertEquals(false, mucLightBlockingIQ.getUsers().get(JidCreate.from("hag77@shakespeare.lit"))); } @Test public void checkBlockRoomsIQ() throws Exception { HashMap rooms = new HashMap<>(); rooms.put(JidCreate.from("coven@muclight.shakespeare.lit"), false); rooms.put(JidCreate.from("chapel@shakespeare.lit"), false); MUCLightBlockingIQ mucLightBlockingIQ = new MUCLightBlockingIQ(rooms, null); mucLightBlockingIQ.setType(IQ.Type.set); mucLightBlockingIQ.setTo(JidCreate.from("muclight.shakespeare.lit")); mucLightBlockingIQ.setStanzaId("block1"); assertEquals(blockingRoomsIQExample, mucLightBlockingIQ.toXML(StreamOpen.CLIENT_NAMESPACE).toString()); } @Test public void checkBlockUsersIQ() throws Exception { HashMap users = new HashMap<>(); users.put(JidCreate.from("hag77@shakespeare.lit"), false); users.put(JidCreate.from("hag66@shakespeare.lit"), false); MUCLightBlockingIQ mucLightBlockingIQ = new MUCLightBlockingIQ(null, users); mucLightBlockingIQ.setType(IQ.Type.set); mucLightBlockingIQ.setTo(JidCreate.from("muclight.shakespeare.lit")); mucLightBlockingIQ.setStanzaId("block2"); assertEquals(blockingUsersIQExample, mucLightBlockingIQ.toXML(StreamOpen.CLIENT_NAMESPACE).toString()); } @Test public void checkUnblockUsersAndRoomsIQ() throws Exception { HashMap users = new HashMap<>(); users.put(JidCreate.from("hag66@shakespeare.lit"), true); HashMap rooms = new HashMap<>(); rooms.put(JidCreate.from("coven@muclight.shakespeare.lit"), true); MUCLightBlockingIQ mucLightBlockingIQ = new MUCLightBlockingIQ(rooms, users); mucLightBlockingIQ.setType(IQ.Type.set); mucLightBlockingIQ.setTo(JidCreate.from("muclight.shakespeare.lit")); mucLightBlockingIQ.setStanzaId("unblock1"); assertEquals(unblockingUsersAndRoomsExample, mucLightBlockingIQ.toXML(StreamOpen.CLIENT_NAMESPACE).toString()); } }