/protocols/jain-mgcp/stack/src/test/java/org/mobicents/protocols/mgcp/stack/test/endpointconfiguration/MGW.java
Java | 109 lines | 61 code | 27 blank | 21 comment | 1 complexity | abdb415abb24f02d11c097b788e1ec8a 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.mgcp.stack.test.endpointconfiguration; 24 25import jain.protocol.ip.mgcp.JainMgcpCommandEvent; 26import jain.protocol.ip.mgcp.JainMgcpEvent; 27import jain.protocol.ip.mgcp.JainMgcpResponseEvent; 28import jain.protocol.ip.mgcp.message.Constants; 29import jain.protocol.ip.mgcp.message.EndpointConfiguration; 30import jain.protocol.ip.mgcp.message.EndpointConfigurationResponse; 31import jain.protocol.ip.mgcp.message.parms.BearerInformation; 32import jain.protocol.ip.mgcp.message.parms.ReturnCode; 33 34import java.util.TooManyListenersException; 35 36import org.apache.log4j.Logger; 37import org.mobicents.protocols.mgcp.stack.JainMgcpExtendedListener; 38import org.mobicents.protocols.mgcp.stack.JainMgcpStackProviderImpl; 39 40public class MGW implements JainMgcpExtendedListener { 41 42 private static Logger logger = Logger.getLogger(MGW.class); 43 private boolean responseSent = false; 44 45 JainMgcpStackProviderImpl mgwProvider; 46 47 public MGW(JainMgcpStackProviderImpl mgwProvider) { 48 this.mgwProvider = mgwProvider; 49 try { 50 this.mgwProvider.addJainMgcpListener(this); 51 } catch (TooManyListenersException e) { 52 e.printStackTrace(); 53 EndpointConfigurationTest.fail("Unexpected Exception"); 54 } 55 } 56 57 public void checkState() { 58 EndpointConfigurationTest.assertTrue("Expect to sent CRCX Response", responseSent); 59 } 60 61 public void transactionEnded(int handle) { 62 logger.info("transactionEnded " + handle); 63 64 } 65 66 public void transactionRxTimedOut(JainMgcpCommandEvent command) { 67 logger.info("transactionRxTimedOut " + command); 68 69 } 70 71 public void transactionTxTimedOut(JainMgcpCommandEvent command) { 72 logger.info("transactionTxTimedOut " + command); 73 EndpointConfigurationTest.fail("Transaction Timed Out while sending the EPCF Response"); 74 75 } 76 77 public void processMgcpCommandEvent(JainMgcpCommandEvent jainmgcpcommandevent) { 78 logger.info("processMgcpCommandEvent " + jainmgcpcommandevent); 79 80 switch (jainmgcpcommandevent.getObjectIdentifier()) { 81 case Constants.CMD_ENDPOINT_CONFIGURATION: 82 EndpointConfiguration endpointConfiguration = (EndpointConfiguration) jainmgcpcommandevent; 83 BearerInformation b = endpointConfiguration.getBearerInformation(); 84 85 EndpointConfigurationTest.assertEquals(BearerInformation.ENC_METHOD_A_LAW, b.getEncodingMethod()); 86 87 EndpointConfigurationResponse response = new EndpointConfigurationResponse( 88 jainmgcpcommandevent.getSource(), ReturnCode.Transaction_Executed_Normally); 89 90 response.setTransactionHandle(jainmgcpcommandevent.getTransactionHandle()); 91 mgwProvider.sendMgcpEvents(new JainMgcpEvent[] { response }); 92 93 responseSent = true; 94 95 break; 96 default: 97 logger.warn("This REQUEST is unexpected " + jainmgcpcommandevent); 98 break; 99 100 } 101 102 } 103 104 public void processMgcpResponseEvent(JainMgcpResponseEvent jainmgcpresponseevent) { 105 logger.info("processMgcpResponseEvent " + jainmgcpresponseevent); 106 107 } 108 109}