/* * 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. */ package org.mobicents.protocols.ss7.cap.service.circuitSwitchedCall; import static org.testng.Assert.*; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.util.ArrayList; import java.util.Arrays; import javolution.xml.XMLObjectReader; import javolution.xml.XMLObjectWriter; import org.mobicents.protocols.asn.AsnInputStream; import org.mobicents.protocols.asn.AsnOutputStream; import org.mobicents.protocols.ss7.cap.api.isup.CalledPartyNumberCap; import org.mobicents.protocols.ss7.cap.isup.CalledPartyNumberCapImpl; import org.mobicents.protocols.ss7.cap.isup.CallingPartyNumberCapImpl; import org.mobicents.protocols.ss7.cap.primitives.CAPExtensionsTest; import org.mobicents.protocols.ss7.cap.service.circuitSwitchedCall.primitive.DestinationRoutingAddressImpl; import org.mobicents.protocols.ss7.inap.api.primitives.LegType; import org.mobicents.protocols.ss7.inap.primitives.LegIDImpl; import org.mobicents.protocols.ss7.isup.impl.message.parameter.CalledPartyNumberImpl; import org.mobicents.protocols.ss7.isup.impl.message.parameter.CallingPartyNumberImpl; import org.mobicents.protocols.ss7.map.api.primitives.AddressNature; import org.mobicents.protocols.ss7.map.api.primitives.NumberingPlan; import org.mobicents.protocols.ss7.map.primitives.ISDNAddressStringImpl; import org.mobicents.protocols.ss7.map.service.callhandling.CallReferenceNumberImpl; import org.testng.annotations.Test; /** * * @author sergey vetyutnev * */ public class InitiateCallAttemptRequestTest { public byte[] getData1() { return new byte[] { 48, 10, (byte) 160, 8, 4, 6, (byte) 129, 0, 34, 66, 68, 4 }; } public byte[] getData2() { return new byte[] { 48, 62, (byte) 160, 8, 4, 6, (byte) 129, 0, 34, 66, 68, 4, (byte) 164, 18, 48, 5, 2, 1, 2, (byte) 129, 0, 48, 9, 2, 1, 3, 10, 1, 1, (byte) 129, 1, (byte) 255, (byte) 165, 3, (byte) 129, 1, 6, (byte) 134, 1, 15, (byte) 158, 5, (byte) 130, 1, 16, 98, 7, (byte) 159, 51, 4, 10, 11, 12, 13, (byte) 159, 52, 4, (byte) 145, (byte) 136, 68, (byte) 248, (byte) 159, 53, 0 }; } public byte[] getDataCallReferenceNumber() { return new byte[] { 10, 11, 12, 13 }; } @Test(groups = { "functional.decode", "circuitSwitchedCall" }) public void testDecode() throws Exception { byte[] data = this.getData1(); AsnInputStream ais = new AsnInputStream(data); InitiateCallAttemptRequestImpl elem = new InitiateCallAttemptRequestImpl(); int tag = ais.readTag(); elem.decodeAll(ais); assertEquals(elem.getDestinationRoutingAddress().getCalledPartyNumber().size(), 1); CalledPartyNumberCap cpn = elem.getDestinationRoutingAddress().getCalledPartyNumber().get(0); assertEquals(cpn.getCalledPartyNumber().getAddress(), "2224444"); assertEquals(cpn.getCalledPartyNumber().getNatureOfAddressIndicator(), 1); assertNull(elem.getExtensions()); assertNull(elem.getLegToBeCreated()); assertNull(elem.getNewCallSegment()); assertNull(elem.getCallingPartyNumber()); assertNull(elem.getCallReferenceNumber()); assertNull(elem.getGsmSCFAddress()); assertFalse(elem.getSuppressTCsi()); data = this.getData2(); ais = new AsnInputStream(data); elem = new InitiateCallAttemptRequestImpl(); tag = ais.readTag(); elem.decodeAll(ais); assertEquals(elem.getDestinationRoutingAddress().getCalledPartyNumber().size(), 1); cpn = elem.getDestinationRoutingAddress().getCalledPartyNumber().get(0); assertEquals(cpn.getCalledPartyNumber().getAddress(), "2224444"); assertEquals(cpn.getCalledPartyNumber().getNatureOfAddressIndicator(), 1); assertTrue(CAPExtensionsTest.checkTestCAPExtensions(elem.getExtensions())); assertEquals(elem.getLegToBeCreated().getReceivingSideID(), LegType.leg6); assertEquals((int) elem.getNewCallSegment(), 15); assertEquals(elem.getCallingPartyNumber().getCallingPartyNumber().getAddress(), "01267"); assertEquals(elem.getCallingPartyNumber().getCallingPartyNumber().getNatureOfAddressIndicator(), 2); assertEquals(elem.getCallReferenceNumber().getData(), getDataCallReferenceNumber()); assertEquals(elem.getGsmSCFAddress().getAddress(), "88448"); assertTrue(elem.getSuppressTCsi()); } @Test(groups = { "functional.encode", "circuitSwitchedCall" }) public void testEncode() throws Exception { CalledPartyNumberImpl calledPartyNumber = new CalledPartyNumberImpl(1, "2224444", 0, 0); // int natureOfAddresIndicator, String address, int numberingPlanIndicator, // int internalNetworkNumberIndicator CalledPartyNumberCapImpl cpn = new CalledPartyNumberCapImpl(calledPartyNumber); ArrayList<CalledPartyNumberCap> calledPartyNumberArr = new ArrayList<CalledPartyNumberCap>(); calledPartyNumberArr.add(cpn); DestinationRoutingAddressImpl destinationRoutingAddress = new DestinationRoutingAddressImpl(calledPartyNumberArr); InitiateCallAttemptRequestImpl elem = new InitiateCallAttemptRequestImpl(destinationRoutingAddress, null, null, null, null, null, null, false); // DestinationRoutingAddress destinationRoutingAddress, // CAPExtensions extensions, LegID legToBeCreated, Integer newCallSegment, // CallingPartyNumberCap callingPartyNumber, CallReferenceNumber callReferenceNumber, // ISDNAddressString gsmSCFAddress, boolean suppressTCsi AsnOutputStream aos = new AsnOutputStream(); elem.encodeAll(aos); assertTrue(Arrays.equals(aos.toByteArray(), this.getData1())); LegIDImpl legToBeCreated = new LegIDImpl(false, LegType.leg6); CallingPartyNumberImpl cpn2 = new CallingPartyNumberImpl(2, "01267", 0, 0, 0, 1); // int natureOfAddresIndicator, String address, int numberingPlanIndicator, // int numberIncompleteIndicator, int addressRepresentationREstrictedIndicator, int screeningIndicator CallingPartyNumberCapImpl callingPartyNumber = new CallingPartyNumberCapImpl(cpn2); CallReferenceNumberImpl callReferenceNumber = new CallReferenceNumberImpl(getDataCallReferenceNumber()); ISDNAddressStringImpl gsmSCFAddress = new ISDNAddressStringImpl(AddressNature.international_number, NumberingPlan.ISDN, "88448"); elem = new InitiateCallAttemptRequestImpl(destinationRoutingAddress, CAPExtensionsTest.createTestCAPExtensions(), legToBeCreated, 15, callingPartyNumber, callReferenceNumber, gsmSCFAddress, true); aos = new AsnOutputStream(); elem.encodeAll(aos); assertTrue(Arrays.equals(aos.toByteArray(), this.getData2())); } @Test(groups = { "functional.xml.serialize", "circuitSwitchedCall" }) public void testXMLSerialize() throws Exception { CalledPartyNumberImpl calledPartyNumber = new CalledPartyNumberImpl(1, "2224444", 0, 0); CalledPartyNumberCapImpl cpn = new CalledPartyNumberCapImpl(calledPartyNumber); ArrayList<CalledPartyNumberCap> calledPartyNumberArr = new ArrayList<CalledPartyNumberCap>(); calledPartyNumberArr.add(cpn); DestinationRoutingAddressImpl destinationRoutingAddress = new DestinationRoutingAddressImpl(calledPartyNumberArr); LegIDImpl legToBeCreated = new LegIDImpl(false, LegType.leg6); CallingPartyNumberImpl cpn2 = new CallingPartyNumberImpl(2, "01267", 0, 0, 0, 1); CallingPartyNumberCapImpl callingPartyNumber = new CallingPartyNumberCapImpl(cpn2); CallReferenceNumberImpl callReferenceNumber = new CallReferenceNumberImpl(getDataCallReferenceNumber()); ISDNAddressStringImpl gsmSCFAddress = new ISDNAddressStringImpl(AddressNature.international_number, NumberingPlan.ISDN, "88448"); InitiateCallAttemptRequestImpl original = new InitiateCallAttemptRequestImpl(destinationRoutingAddress, CAPExtensionsTest.createTestCAPExtensions(), legToBeCreated, 15, callingPartyNumber, callReferenceNumber, gsmSCFAddress, true); // Writes the area to a file. ByteArrayOutputStream baos = new ByteArrayOutputStream(); XMLObjectWriter writer = XMLObjectWriter.newInstance(baos); // writer.setBinding(binding); // Optional. writer.setIndentation("\t"); // Optional (use tabulation for // indentation). writer.write(original, "initiateCallAttemptRequest", InitiateCallAttemptRequestImpl.class); writer.close(); byte[] rawData = baos.toByteArray(); String serializedEvent = new String(rawData); System.out.println(serializedEvent); ByteArrayInputStream bais = new ByteArrayInputStream(rawData); XMLObjectReader reader = XMLObjectReader.newInstance(bais); InitiateCallAttemptRequestImpl copy = reader.read("initiateCallAttemptRequest", InitiateCallAttemptRequestImpl.class); assertEquals(original.getDestinationRoutingAddress().getCalledPartyNumber().size(), copy.getDestinationRoutingAddress().getCalledPartyNumber().size()); CalledPartyNumberCap cpn11 = original.getDestinationRoutingAddress().getCalledPartyNumber().get(0); CalledPartyNumberCap cpn12 = copy.getDestinationRoutingAddress().getCalledPartyNumber().get(0); assertEquals(cpn11.getCalledPartyNumber().getAddress(), cpn12.getCalledPartyNumber().getAddress()); assertEquals(cpn11.getCalledPartyNumber().getNatureOfAddressIndicator(), cpn12.getCalledPartyNumber().getNatureOfAddressIndicator()); assertTrue(CAPExtensionsTest.checkTestCAPExtensions(original.getExtensions())); assertTrue(CAPExtensionsTest.checkTestCAPExtensions(copy.getExtensions())); assertEquals(original.getLegToBeCreated().getReceivingSideID(), copy.getLegToBeCreated().getReceivingSideID()); assertEquals((int) original.getNewCallSegment(), (int) copy.getNewCallSegment()); assertEquals(original.getCallingPartyNumber().getCallingPartyNumber().getAddress(), copy.getCallingPartyNumber().getCallingPartyNumber().getAddress()); assertEquals(original.getCallingPartyNumber().getCallingPartyNumber().getNatureOfAddressIndicator(), copy.getCallingPartyNumber() .getCallingPartyNumber().getNatureOfAddressIndicator()); assertEquals(original.getCallReferenceNumber().getData(), copy.getCallReferenceNumber().getData()); assertEquals(original.getGsmSCFAddress().getAddress(), copy.getGsmSCFAddress().getAddress()); assertEquals(original.getSuppressTCsi(), copy.getSuppressTCsi()); } }