/* * TeleStax, Open Source Cloud Communications * Copyright 2012, Telestax Inc and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This 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 2.1 of * the License, or (at your option) any later version. * * This software 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 this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ /** * Start time:09:26:46 2009-04-22<br> * Project: mobicents-isup-stack<br> * * @author <a href="mailto:baranowb@gmail.com">Bartosz Baranowski * </a> * */ package org.mobicents.protocols.ss7.isup.impl.message; import static org.testng.Assert.assertEquals; import static org.testng.Assert.assertNotNull; import org.mobicents.protocols.ss7.isup.message.ISUPMessage; import org.mobicents.protocols.ss7.isup.message.IdentificationRequestMessage; import org.mobicents.protocols.ss7.isup.message.parameter.MCIDRequestIndicators; import org.mobicents.protocols.ss7.isup.message.parameter.MessageCompatibilityInformation; import org.testng.annotations.Test; /** * Start time:09:26:46 2009-04-22<br> * Project: mobicents-isup-stack<br> * Test for ACM * * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski </a> */ public class IDRTest extends MessageHarness { @Test(groups = { "functional.encode", "functional.decode", "message" }) public void testTwo_Params() throws Exception { byte[] message = getDefaultBody(); IdentificationRequestMessage msg = super.messageFactory.createIDR(); ((AbstractISUPMessage) msg).decode(message, messageFactory,parameterFactory); assertNotNull(msg.getMCIDRequestIndicators()); assertEquals(msg.getMCIDRequestIndicators().isHoldingIndicator(), true); assertEquals(msg.getMCIDRequestIndicators().isMcidRequestIndicator(), false); assertNotNull(msg.getMessageCompatibilityInformation()); MessageCompatibilityInformation mcis = msg.getMessageCompatibilityInformation(); assertNotNull(mcis.getMessageCompatibilityInstructionIndicators()); assertEquals(mcis.getMessageCompatibilityInstructionIndicators().length,2); assertNotNull(mcis.getMessageCompatibilityInstructionIndicators()[0]); assertNotNull(mcis.getMessageCompatibilityInstructionIndicators()[1]); assertEquals(mcis.getMessageCompatibilityInstructionIndicators()[0].getBandInterworkingIndicator(),2); assertEquals(mcis.getMessageCompatibilityInstructionIndicators()[1].getBandInterworkingIndicator(),0); } protected byte[] getDefaultBody() { byte[] message = { // CIC 0x0C, (byte) 0x0B, IdentificationRequestMessage.MESSAGE_CODE, //pointer 0x01, MCIDRequestIndicators._PARAMETER_CODE, //len 0x01, 0x02, //MCI MessageCompatibilityInformation._PARAMETER_CODE, //len 0x02, 0x42, (byte) 0x81, 0x00 }; return message; } protected ISUPMessage getDefaultMessage() { return super.messageFactory.createIDR(); } }