/protocols/ss7/isup/isup-impl/src/test/java/org/mobicents/protocols/ss7/isup/impl/stack/timers/GRSTest.java

http://mobicents.googlecode.com/ · Java · 119 lines · 51 code · 20 blank · 48 comment · 0 complexity · 9a1c48831d6f6c345eebefe8155367bb 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.isup.impl.stack.timers;
  23. import java.util.Properties;
  24. import org.mobicents.protocols.ss7.isup.ISUPTimeoutEvent;
  25. import org.mobicents.protocols.ss7.isup.message.CircuitGroupResetAckMessage;
  26. import org.mobicents.protocols.ss7.isup.message.CircuitGroupResetMessage;
  27. import org.mobicents.protocols.ss7.isup.message.ISUPMessage;
  28. import org.mobicents.protocols.ss7.isup.message.parameter.CircuitIdentificationCode;
  29. import org.mobicents.protocols.ss7.isup.message.parameter.RangeAndStatus;
  30. /**
  31. * @author baranowb
  32. *
  33. */
  34. public class GRSTest extends DoubleTimers {
  35. //thanks to magic of super class, this is whole test :)
  36. /* (non-Javadoc)
  37. * @see org.mobicents.protocols.ss7.isup.impl.stack.DoubleTimers#getSmallerT()
  38. */
  39. protected long getSmallerT() {
  40. return ISUPTimeoutEvent.T22_DEFAULT+3000;
  41. }
  42. /* (non-Javadoc)
  43. * @see org.mobicents.protocols.ss7.isup.impl.stack.DoubleTimers#getBiggerT()
  44. */
  45. protected long getBiggerT() {
  46. return ISUPTimeoutEvent.T23_DEFAULT;
  47. }
  48. /* (non-Javadoc)
  49. * @see org.mobicents.protocols.ss7.isup.impl.stack.DoubleTimers#getSmallerT_ID()
  50. */
  51. protected int getSmallerT_ID() {
  52. return ISUPTimeoutEvent.T22;
  53. }
  54. /* (non-Javadoc)
  55. * @see org.mobicents.protocols.ss7.isup.impl.stack.DoubleTimers#getBiggerT_ID()
  56. */
  57. protected int getBiggerT_ID() {
  58. return ISUPTimeoutEvent.T23;
  59. }
  60. /* (non-Javadoc)
  61. * @see org.mobicents.protocols.ss7.isup.impl.stack.DoubleTimers#getRequest()
  62. */
  63. protected ISUPMessage getRequest() {
  64. RangeAndStatus ras = super.provider.getParameterFactory().createRangeAndStatus();
  65. ras.setRange((byte) 7,true);
  66. ras.setAffected((byte)1, true);
  67. ras.setAffected((byte)0, true);
  68. CircuitGroupResetMessage grs = super.provider.getMessageFactory().createGRS(1);
  69. grs.setRangeAndStatus(ras);
  70. return grs;
  71. }
  72. /* (non-Javadoc)
  73. * @see org.mobicents.protocols.ss7.isup.impl.stack.DoubleTimers#getAnswer()
  74. */
  75. protected ISUPMessage getAnswer() {
  76. CircuitGroupResetAckMessage gra = super.provider.getMessageFactory().createGRA();
  77. CircuitIdentificationCode cic = super.provider.getParameterFactory().createCircuitIdentificationCode();
  78. cic.setCIC(1);
  79. gra.setCircuitIdentificationCode(cic);
  80. RangeAndStatus ras = super.provider.getParameterFactory().createRangeAndStatus();
  81. ras.setRange((byte) 7,true);
  82. ras.setAffected((byte)1, true);
  83. ras.setAffected((byte)0, true);
  84. gra.setRangeAndStatus(ras);
  85. return gra;
  86. }
  87. /* (non-Javadoc)
  88. * @see org.mobicents.protocols.ss7.isup.impl.stack.EventTestHarness#getSpecificConfig()
  89. */
  90. protected Properties getSpecificConfig() {
  91. //ensure proper values;
  92. Properties p = new Properties();
  93. p.put("t22", getSmallerT()+"");
  94. p.put("t23" , getBiggerT()+"");
  95. p.put("ni", "2");
  96. p.put("localspc", "2");
  97. return p;
  98. }
  99. }