/protocols/ss7/isup/isup-impl/src/test/java/org/mobicents/protocols/ss7/isup/impl/stack/timers/SAM_ACMTest.java
Java | 97 lines | 40 code | 17 blank | 40 comment | 0 complexity | 322d1ef8cfb0ca6de4e0cf5dcb7d67f9 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 23package org.mobicents.protocols.ss7.isup.impl.stack.timers; 24 25import java.util.Properties; 26 27import org.mobicents.protocols.ss7.isup.ISUPTimeoutEvent; 28import org.mobicents.protocols.ss7.isup.message.AddressCompleteMessage; 29import org.mobicents.protocols.ss7.isup.message.ISUPMessage; 30import org.mobicents.protocols.ss7.isup.message.SubsequentAddressMessage; 31import org.mobicents.protocols.ss7.isup.message.parameter.BackwardCallIndicators; 32import org.mobicents.protocols.ss7.isup.message.parameter.CircuitIdentificationCode; 33import org.mobicents.protocols.ss7.isup.message.parameter.SubsequentNumber; 34 35/** 36 * @author baranowb 37 * 38 */ 39public class SAM_ACMTest extends SingleTimers { 40 41 /* (non-Javadoc) 42 * @see org.mobicents.protocols.ss7.isup.impl.stack.timers.SingleTimers#getT() 43 */ 44 45 protected long getT() { 46 return ISUPTimeoutEvent.T7_DEFAULT; 47 } 48 49 /* (non-Javadoc) 50 * @see org.mobicents.protocols.ss7.isup.impl.stack.timers.SingleTimers#getT_ID() 51 */ 52 53 protected int getT_ID() { 54 return ISUPTimeoutEvent.T7; 55 } 56 57 /* (non-Javadoc) 58 * @see org.mobicents.protocols.ss7.isup.impl.stack.timers.EventTestHarness#getRequest() 59 */ 60 61 protected ISUPMessage getRequest() { 62 SubsequentAddressMessage msg = super.provider.getMessageFactory().createSAM(1); 63 64 SubsequentNumber sn = super.provider.getParameterFactory().createSubsequentNumber(); 65 sn.setAddress("11"); 66 msg.setSubsequentNumber(sn); 67 68 return msg; 69 } 70 71 /* (non-Javadoc) 72 * @see org.mobicents.protocols.ss7.isup.impl.stack.timers.EventTestHarness#getAnswer() 73 */ 74 75 protected ISUPMessage getAnswer() { 76 AddressCompleteMessage ans = super.provider.getMessageFactory().createACM(); 77 BackwardCallIndicators bci = super.provider.getParameterFactory().createBackwardCallIndicators(); 78 ans.setBackwardCallIndicators(bci); 79 CircuitIdentificationCode cic = super.provider.getParameterFactory().createCircuitIdentificationCode(); 80 cic.setCIC(1); 81 ans.setCircuitIdentificationCode(cic); 82 return ans; 83 } 84 85 /* (non-Javadoc) 86 * @see org.mobicents.protocols.ss7.isup.impl.stack.timers.EventTestHarness#getSpecificConfig() 87 */ 88 89 protected Properties getSpecificConfig() { 90 Properties p = new Properties(); 91 p.put("t7", getT()+""); 92 p.put("ni", "2"); 93 p.put("localspc", "2"); 94 return p; 95 } 96 97}