/protocols/ss7/map/map-impl/src/test/java/org/mobicents/protocols/ss7/map/service/lsm/AreaEventInfoTest.java

http://mobicents.googlecode.com/ · Java · 163 lines · 97 code · 36 blank · 30 comment · 0 complexity · 8a4bfa53687b347649a1c8a284be9c37 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.lsm;
  23. import static org.testng.Assert.assertEquals;
  24. import static org.testng.Assert.assertNotNull;
  25. import static org.testng.Assert.assertTrue;
  26. import java.io.ByteArrayInputStream;
  27. import java.io.ByteArrayOutputStream;
  28. import java.io.InputStream;
  29. import java.io.ObjectInputStream;
  30. import java.io.ObjectOutputStream;
  31. import java.util.Arrays;
  32. import org.mobicents.protocols.asn.AsnInputStream;
  33. import org.mobicents.protocols.asn.AsnOutputStream;
  34. import org.mobicents.protocols.asn.Tag;
  35. import org.mobicents.protocols.ss7.map.MAPParameterFactoryImpl;
  36. import org.mobicents.protocols.ss7.map.api.MAPParameterFactory;
  37. import org.mobicents.protocols.ss7.map.api.service.lsm.Area;
  38. import org.mobicents.protocols.ss7.map.api.service.lsm.AreaDefinition;
  39. import org.mobicents.protocols.ss7.map.api.service.lsm.AreaEventInfo;
  40. import org.mobicents.protocols.ss7.map.api.service.lsm.AreaList;
  41. import org.mobicents.protocols.ss7.map.api.service.lsm.AreaType;
  42. import org.mobicents.protocols.ss7.map.api.service.lsm.OccurrenceInfo;
  43. import org.testng.annotations.AfterClass;
  44. import org.testng.annotations.AfterTest;
  45. import org.testng.annotations.BeforeClass;
  46. import org.testng.annotations.BeforeTest;
  47. import org.testng.annotations.Test;
  48. /**
  49. * @author amit bhayani
  50. *
  51. */
  52. public class AreaEventInfoTest {
  53. MAPParameterFactory MAPParameterFactory = new MAPParameterFactoryImpl();
  54. @BeforeClass
  55. public static void setUpClass() throws Exception {
  56. }
  57. @AfterClass
  58. public static void tearDownClass() throws Exception {
  59. }
  60. @BeforeTest
  61. public void setUp() {
  62. }
  63. @AfterTest
  64. public void tearDown() {
  65. }
  66. @Test(groups = { "functional.decode","service.lsm"})
  67. public void testDecode() throws Exception {
  68. // TODO this is self generated trace. We need trace from operator
  69. byte[] data = new byte[] { (byte)0xb0, 0x1f, (byte) 0xa0, 0x16, (byte) 0xa0, 0x14, 0x30, 0x08, (byte) 0x80, 0x01, 0x05, (byte) 0x81, 0x03, 0x09, 0x70, 0x71, 0x30, 0x08,
  70. (byte) 0x80, 0x01, 0x03, (byte) 0x81, 0x03, 0x04, 0x30, 0x31, (byte) 0x81, 0x01, 0x01, (byte) 0x82, 0x02, 0x7f, (byte) 0xfe };
  71. AsnInputStream asn = new AsnInputStream(data);
  72. int tag = asn.readTag();
  73. AreaEventInfo areaEvtInf = new AreaEventInfoImpl();
  74. ((AreaEventInfoImpl)areaEvtInf).decodeAll(asn);
  75. AreaDefinition areaDef = areaEvtInf.getAreaDefinition();
  76. assertNotNull(areaDef);
  77. AreaList areaList = areaDef.getAreaList();
  78. assertNotNull(areaList);
  79. assertEquals( areaList.getAreas().length,2);
  80. Area[] areas = areaList.getAreas();
  81. assertNotNull(areas[0].getAreaIdentification());
  82. assertTrue(Arrays.equals(new byte[] { 0x09, 0x70, 0x71 }, areas[0].getAreaIdentification()));
  83. OccurrenceInfo occInfo = areaEvtInf.getOccurrenceInfo();
  84. assertNotNull(occInfo);
  85. assertEquals( occInfo,OccurrenceInfo.multipleTimeEvent);
  86. int intTime = areaEvtInf.getIntervalTime();
  87. assertEquals( intTime,32766);
  88. }
  89. @Test(groups = { "functional.encode","service.lsm"})
  90. public void testEncode() throws Exception {
  91. // TODO this is self generated trace. We need trace from operator
  92. byte[] data = new byte[] { (byte)0xb0, 0x1f, (byte) 0xa0, 0x16, (byte) 0xa0, 0x14, 0x30, 0x08, (byte) 0x80, 0x01, 0x05, (byte) 0x81, 0x03, 0x09, 0x70, 0x71, 0x30, 0x08,
  93. (byte) 0x80, 0x01, 0x03, (byte) 0x81, 0x03, 0x04, 0x30, 0x31, (byte) 0x81, 0x01, 0x01, (byte) 0x82, 0x02, 0x7f, (byte) 0xfe };
  94. Area area1 = new AreaImpl(AreaType.utranCellId, new byte[] { 0x09, 0x70, 0x71 });
  95. Area area2 = new AreaImpl(AreaType.routingAreaId, new byte[] { 0x04, 0x30, 0x31 });
  96. AreaList areaList = new AreaListImpl(new Area[] { area1, area2 });
  97. AreaDefinition areaDef = new AreaDefinitionImpl(areaList);
  98. AreaEventInfo areaEvtInf = new AreaEventInfoImpl(areaDef, OccurrenceInfo.multipleTimeEvent, 32766);
  99. AsnOutputStream asnOS = new AsnOutputStream();
  100. ((AreaEventInfoImpl)areaEvtInf).encodeAll(asnOS, Tag.CLASS_CONTEXT_SPECIFIC, Tag.SEQUENCE);
  101. byte[] encodedData = asnOS.toByteArray();
  102. assertTrue( Arrays.equals(data,encodedData));
  103. }
  104. @Test(groups = { "functional.serialize", "service.lsm" })
  105. public void testSerialization() throws Exception {
  106. Area area1 = new AreaImpl(AreaType.utranCellId, new byte[] { 0x09, 0x70, 0x71 });
  107. Area area2 = new AreaImpl(AreaType.routingAreaId, new byte[] { 0x04, 0x30, 0x31 });
  108. AreaList areaList = new AreaListImpl(new Area[] { area1, area2 });
  109. AreaDefinition areaDef = new AreaDefinitionImpl(areaList);
  110. AreaEventInfo original = new AreaEventInfoImpl(areaDef, OccurrenceInfo.multipleTimeEvent, 32766);
  111. // serialize
  112. ByteArrayOutputStream out = new ByteArrayOutputStream();
  113. ObjectOutputStream oos = new ObjectOutputStream(out);
  114. oos.writeObject(original);
  115. oos.close();
  116. // deserialize
  117. byte[] pickled = out.toByteArray();
  118. InputStream in = new ByteArrayInputStream(pickled);
  119. ObjectInputStream ois = new ObjectInputStream(in);
  120. Object o = ois.readObject();
  121. AreaEventInfoImpl copy = (AreaEventInfoImpl) o;
  122. //test result
  123. assertEquals(copy.getAreaDefinition(), original.getAreaDefinition());
  124. assertEquals(copy.getOccurrenceInfo(), original.getOccurrenceInfo());
  125. assertEquals(copy.getIntervalTime(), original.getIntervalTime());
  126. }
  127. }