/* * 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:12:21:06 2009-04-23<br> * Project: mobicents-isup-stack<br> * * @author <a href="mailto:baranowb@gmail.com">Bartosz Baranowski * </a> * */ package org.mobicents.protocols.ss7.isup.impl.message.parameter; import java.lang.reflect.InvocationTargetException; import org.mobicents.protocols.ss7.isup.ParameterException; import org.testng.annotations.Test; /** * Start time:12:21:06 2009-04-23<br> * Project: mobicents-isup-stack<br> * Class to test BCI * * @author <a href="mailto:baranowb@gmail.com">Bartosz Baranowski </a> */ public class BackwardCallIndicatorsTest extends ParameterHarness { public BackwardCallIndicatorsTest() { super(); super.badBodies.add(new byte[1]); super.badBodies.add(new byte[3]); super.goodBodies.add(getBody1()); super.goodBodies.add(getBody2()); } private byte[] getBody1() { byte[] body = new byte[2]; // Chardi IND : 10 - charge // Called part status ind: 01 - sub free // Called part category ind: 10 - pay phone // e2emethod ind: 10 - sccp // whole: 10100110 body[0] = (byte) 0xA6; // Interworking : 1 - encoutnered // e2einfo ind : 0 - no info // ISUP ind : 1 - all the way // hold ind : 1 - requested // ISDN acc ind : 1 - terminating acc isdn // echo ctrl dev: 0 - not included // SCCP m ind : 10 - connection oriented only // whole : 10011101 body[1] = (byte) 0x9D; return body; } @Test(groups = { "functional.encode", "functional.decode", "parameter" }) public void testBody1EncodedValues() throws SecurityException, NoSuchMethodException, IllegalArgumentException, IllegalAccessException, InvocationTargetException, ParameterException { BackwardCallIndicatorsImpl bci = new BackwardCallIndicatorsImpl(getBody1()); String[] methodNames = { "getChargeIndicator", "getCalledPartysStatusIndicator", "getCalledPartysCategoryIndicator", "getEndToEndMethodIndicator", "isInterworkingIndicator", "isEndToEndInformationIndicator", "isIsdnUserPartIndicator", "isHoldingIndicator", "isIsdnAccessIndicator", "isEchoControlDeviceIndicator", "getSccpMethodIndicator" }; Object[] expectedValues = { bci._CHARGE_INDICATOR_CHARGE, bci._CPSI_SUBSCRIBER_FREE, bci._CPCI_PAYPHONE, bci._ETEMI_SCCP, bci._II_IE, bci._ETEII_NO_IA, bci._ISDN_UPI_UATW, bci._HI_REQUESTED, bci._ISDN_AI_TA_ISDN, bci._ECDI_IECD_NOT_INCLUDED, bci._SCCP_MI_CONNECTION_ORIENTED }; super.testValues(bci, methodNames, expectedValues); } private byte[] getBody2() { byte[] body = new byte[2]; // Chardi IND : 01 - no charge // Called part status ind: 10 - conn when free // Called part category ind: 10 - pay phone // e2emethod ind: 11 - pass alond and sccp // whole: 11101001 body[0] = (byte) 0xE9; // Interworking : 1 - encoutnered // e2einfo ind : 0 - no info // ISUP ind : 1 - all the way // hold ind : 1 - requested // ISDN acc ind : 1 - terminating acc isdn // echo ctrl dev: 1 - not included // SCCP m ind : 10 - connection oriented only // whole : 10111101 body[1] = (byte) 0xBD; return body; } @Test(groups = { "functional.encode", "functional.decode", "parameter" }) public void testBody2EncodedValues() throws SecurityException, NoSuchMethodException, IllegalArgumentException, IllegalAccessException, InvocationTargetException, ParameterException { BackwardCallIndicatorsImpl bci = new BackwardCallIndicatorsImpl(getBody2()); String[] methodNames = { "getChargeIndicator", "getCalledPartysStatusIndicator", "getCalledPartysCategoryIndicator", "getEndToEndMethodIndicator", "isInterworkingIndicator", "isEndToEndInformationIndicator", "isIsdnUserPartIndicator", "isHoldingIndicator", "isIsdnAccessIndicator", "isEchoControlDeviceIndicator", "getSccpMethodIndicator" }; Object[] expectedValues = { bci._CHARGE_INDICATOR_NOCHARGE, bci._CPSI_CONNECT_WHEN_FREE, bci._CPCI_PAYPHONE, bci._ETEMI_SCCP_AND_PASSALONG, bci._II_IE, bci._ETEII_NO_IA, bci._ISDN_UPI_UATW, bci._HI_REQUESTED, bci._ISDN_AI_TA_ISDN, bci._ECDI_IECD_INCLUDED, bci._SCCP_MI_CONNECTION_ORIENTED }; super.testValues(bci, methodNames, expectedValues); } /* * (non-Javadoc) * * @see org.mobicents.isup.messages.parameters.ParameterHarness#getTestedComponent () */ public AbstractISUPParameter getTestedComponent() throws ParameterException { return new org.mobicents.protocols.ss7.isup.impl.message.parameter.BackwardCallIndicatorsImpl(new byte[2]); } }