/protocols/ss7/isup/isup-impl/src/test/java/org/mobicents/protocols/ss7/isup/impl/message/parameter/InformationRequestIndicatorsTest.java
Java | 94 lines | 35 code | 13 blank | 46 comment | 0 complexity | a37ad83e06edcfa4c4331b5f45598e32 MD5 | raw file
1/* 2 * JBoss, Home of Professional Open Source 3 * Copyright 2011, Red Hat, Inc. and individual contributors 4 * by the @authors tag. See the copyright.txt in the distribution for a 5 * full listing of individual contributors. 6 * 7 * This is free software; you can redistribute it and/or modify it 8 * under the terms of the GNU Lesser General Public License as 9 * published by the Free Software Foundation; either version 2.1 of 10 * the License, or (at your option) any later version. 11 * 12 * This software is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * Lesser General Public License for more details. 16 * 17 * You should have received a copy of the GNU Lesser General Public 18 * License along with this software; if not, write to the Free 19 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 20 * 02110-1301 USA, or see the FSF site: http://www.fsf.org. 21 */ 22 23/** 24 * Start time:11:34:01 2009-04-24<br> 25 * Project: mobicents-isup-stack<br> 26 * 27 * @author <a href="mailto:baranowb@gmail.com">Bartosz Baranowski 28 * </a> 29 * 30 */ 31package org.mobicents.protocols.ss7.isup.impl.message.parameter; 32 33import org.mobicents.protocols.ss7.isup.ParameterException; 34import org.testng.annotations.Test; 35 36/** 37 * Start time:11:34:01 2009-04-24<br> 38 * Project: mobicents-isup-stack<br> 39 * 40 * @author <a href="mailto:baranowb@gmail.com">Bartosz Baranowski 41 * </a> 42 */ 43public class InformationRequestIndicatorsTest extends ParameterHarness { 44 private final static int _TURN_ON = 1; 45 private final static int _TURN_OFF = 0; 46 47 public InformationRequestIndicatorsTest() { 48 super(); 49 //super.goodBodies.add(new byte[] { 67, 12 }); 50 //super.badBodies.add(new byte[3]); 51 //super.badBodies.add(new byte[1]); 52 } 53 54 private byte[] getBody(boolean callingPartAddressRequestIndicator, boolean holdingIndicator, boolean callingpartysCategoryRequestIndicator, boolean chargeInformationRequestIndicator, 55 boolean maliciousCallIdentificationRequestIndicator, int reserved) { 56 57 int b0 = 0; 58 int b1 = 0; 59 b0 |= callingPartAddressRequestIndicator ? _TURN_ON : _TURN_OFF; 60 b0 |= (holdingIndicator ? _TURN_ON : _TURN_OFF) << 1; 61 b0 |= (callingpartysCategoryRequestIndicator ? _TURN_ON : _TURN_OFF) << 3; 62 b0 |= (chargeInformationRequestIndicator ? _TURN_ON : _TURN_OFF) << 4; 63 b0 |= (maliciousCallIdentificationRequestIndicator ? _TURN_ON : _TURN_OFF) << 7; 64 65 b1 |= (reserved & 0x0F) << 4; 66 67 return new byte[] { (byte) b0, (byte) b1 }; 68 69 } 70 @Test(groups = { "functional.encode","functional.decode","parameter"}) 71 public void testBody1EncodedValues() throws ParameterException { 72 InformationRequestIndicatorsImpl eci = new InformationRequestIndicatorsImpl(getBody(InformationRequestIndicatorsImpl._INDICATOR_REQUESTED, InformationRequestIndicatorsImpl._INDICATOR_NOT_REQUESTED, 73 InformationRequestIndicatorsImpl._INDICATOR_REQUESTED, InformationRequestIndicatorsImpl._INDICATOR_NOT_REQUESTED, InformationRequestIndicatorsImpl._INDICATOR_NOT_REQUESTED, 10)); 74 75 String[] methodNames = { "isCallingPartAddressRequestIndicator", "isHoldingIndicator", "isCallingpartysCategoryRequestIndicator", "isChargeInformationRequestIndicator", 76 "isMaliciousCallIdentificationRequestIndicator", "getReserved" }; 77 Object[] expectedValues = { InformationRequestIndicatorsImpl._INDICATOR_REQUESTED, InformationRequestIndicatorsImpl._INDICATOR_NOT_REQUESTED, InformationRequestIndicatorsImpl._INDICATOR_REQUESTED, 78 InformationRequestIndicatorsImpl._INDICATOR_NOT_REQUESTED, InformationRequestIndicatorsImpl._INDICATOR_NOT_REQUESTED, 10 }; 79 super.testValues(eci, methodNames, expectedValues); 80 } 81 82 /* 83 * (non-Javadoc) 84 * 85 * @see 86 * org.mobicents.isup.messages.parameters.ParameterHarness#getTestedComponent 87 * () 88 */ 89 90 public AbstractISUPParameter getTestedComponent() throws ParameterException { 91 return new InformationRequestIndicatorsImpl(new byte[2]); 92 } 93 94}