/protocols/ss7/map/map-impl/src/test/java/org/mobicents/protocols/ss7/map/service/sms/ReportSMDeliveryStatusResponseIndicationTest.java

http://mobicents.googlecode.com/ · Java · 86 lines · 43 code · 17 blank · 26 comment · 0 complexity · 2320a2d8a965a0b38e49eefec4adc411 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. package org.mobicents.protocols.ss7.map.service.sms;
  23. import java.util.Arrays;
  24. import org.mobicents.protocols.asn.AsnInputStream;
  25. import org.mobicents.protocols.asn.AsnOutputStream;
  26. import org.mobicents.protocols.asn.Tag;
  27. import org.mobicents.protocols.ss7.map.api.primitives.AddressNature;
  28. import org.mobicents.protocols.ss7.map.api.primitives.ISDNAddressString;
  29. import org.mobicents.protocols.ss7.map.api.primitives.MAPExtensionContainer;
  30. import org.mobicents.protocols.ss7.map.api.primitives.NumberingPlan;
  31. import org.mobicents.protocols.ss7.map.primitives.ISDNAddressStringImpl;
  32. import org.mobicents.protocols.ss7.map.primitives.MAPExtensionContainerTest;
  33. import static org.testng.Assert.*;import org.testng.*;import org.testng.annotations.*;
  34. /**
  35. *
  36. * @author sergey vetyutnev
  37. *
  38. */
  39. public class ReportSMDeliveryStatusResponseIndicationTest {
  40. private byte[] getEncodedData() {
  41. return new byte[] { 48, 49, 4, 6, -111, -120, 120, 119, 102, -10, 48, 39, -96, 32, 48, 10, 6, 3, 42, 3, 4, 11, 12, 13, 14, 15, 48, 5, 6, 3, 42, 3, 6,
  42. 48, 11, 6, 3, 42, 3, 5, 21, 22, 23, 24, 25, 26, -95, 3, 31, 32, 33 };
  43. }
  44. @Test(groups = { "functional.decode","service.sms"})
  45. public void testDecode() throws Exception {
  46. byte[] rawData = getEncodedData();
  47. AsnInputStream asn = new AsnInputStream(rawData);
  48. int tag = asn.readTag();
  49. ReportSMDeliveryStatusResponseIndicationImpl ind = new ReportSMDeliveryStatusResponseIndicationImpl();
  50. ind.decodeAll(asn);
  51. assertEquals( tag,Tag.SEQUENCE);
  52. assertEquals( asn.getTagClass(),Tag.CLASS_UNIVERSAL);
  53. assertEquals( ind.getStoredMSISDN().getAddressNature(),AddressNature.international_number);
  54. assertEquals( ind.getStoredMSISDN().getNumberingPlan(),NumberingPlan.ISDN);
  55. assertEquals( ind.getStoredMSISDN().getAddress(),"888777666");
  56. assertTrue(MAPExtensionContainerTest.CheckTestExtensionContainer(ind.getExtensionContainer()));
  57. }
  58. @Test(groups = { "functional.encode","service.sms"})
  59. public void testEncode() throws Exception {
  60. ISDNAddressString storedMSISDN = new ISDNAddressStringImpl(AddressNature.international_number, NumberingPlan.ISDN, "888777666");
  61. MAPExtensionContainer extensionContainer = MAPExtensionContainerTest.GetTestExtensionContainer();
  62. ReportSMDeliveryStatusResponseIndicationImpl ind = new ReportSMDeliveryStatusResponseIndicationImpl(storedMSISDN, extensionContainer);
  63. AsnOutputStream asnOS = new AsnOutputStream();
  64. ind.encodeAll(asnOS);
  65. byte[] encodedData = asnOS.toByteArray();
  66. byte[] rawData = getEncodedData();
  67. assertTrue( Arrays.equals(rawData,encodedData));
  68. }
  69. }