/protocols/jain-mgcp/stack/src/test/java/org/mobicents/protocols/mgcp/stack/test/deleteconnection/CA.java
Java | 119 lines | 70 code | 27 blank | 22 comment | 5 complexity | da798ed8f7c3378f0217af795bd843af MD5 | raw file
Possible License(s): LGPL-3.0, GPL-3.0, LGPL-2.1, GPL-2.0, CC-BY-SA-3.0, CC0-1.0, Apache-2.0, BSD-3-Clause
- /*
- * JBoss, Home of Professional Open Source
- * Copyright 2011, Red Hat, Inc. and individual contributors
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
- package org.mobicents.protocols.mgcp.stack.test.deleteconnection;
- import jain.protocol.ip.mgcp.JainMgcpCommandEvent;
- import jain.protocol.ip.mgcp.JainMgcpEvent;
- import jain.protocol.ip.mgcp.JainMgcpResponseEvent;
- import jain.protocol.ip.mgcp.message.Constants;
- import jain.protocol.ip.mgcp.message.DeleteConnection;
- import jain.protocol.ip.mgcp.message.parms.ConnectionIdentifier;
- import jain.protocol.ip.mgcp.message.parms.EndpointIdentifier;
- import jain.protocol.ip.mgcp.message.parms.ReturnCode;
- import org.apache.log4j.Logger;
- import org.mobicents.protocols.mgcp.stack.JainMgcpExtendedListener;
- import org.mobicents.protocols.mgcp.stack.JainMgcpStackProviderImpl;
- public class CA implements JainMgcpExtendedListener {
- private static Logger logger = Logger.getLogger(CA.class);
- private JainMgcpStackProviderImpl caProvider;
- private int mgStack = 0;
- private boolean responseReceived = false;
- public CA(JainMgcpStackProviderImpl caProvider, JainMgcpStackProviderImpl mgwProvider) {
- this.caProvider = caProvider;
- mgStack = mgwProvider.getJainMgcpStack().getPort();
- }
- public void sendDeleteConnection() {
- try {
- caProvider.addJainMgcpListener(this);
- EndpointIdentifier endpointID = new EndpointIdentifier("media/trunk/Announcement/enp14", "127.0.0.1:"
- + mgStack);
- ConnectionIdentifier connectionIdentifier = new ConnectionIdentifier((caProvider.getUniqueCallIdentifier())
- .toString());
- DeleteConnection deleteConnection = new DeleteConnection(this, endpointID);
- deleteConnection.setConnectionIdentifier(connectionIdentifier);
- deleteConnection.setTransactionHandle(caProvider.getUniqueTransactionHandler());
- caProvider.sendMgcpEvents(new JainMgcpEvent[] { deleteConnection });
- logger.debug(" DeleteConnection command sent for TxId " + deleteConnection.getTransactionHandle()
- + " and ConnectionIdentifier " + connectionIdentifier);
- } catch (Exception e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- DeleteConnectionTest.fail("Unexpected Exception");
- }
- }
- public void checkState() {
- DeleteConnectionTest.assertTrue("Expect to receive DLCX Response", responseReceived);
- }
- public void transactionEnded(int handle) {
- logger.info("transactionEnded " + handle);
- }
- public void transactionRxTimedOut(JainMgcpCommandEvent command) {
- logger.info("transactionRxTimedOut " + command);
- }
- public void transactionTxTimedOut(JainMgcpCommandEvent command) {
- logger.info("transactionTxTimedOut " + command);
- }
- public void processMgcpCommandEvent(JainMgcpCommandEvent jainmgcpcommandevent) {
- logger.info("processMgcpCommandEvent " + jainmgcpcommandevent);
- }
- public void processMgcpResponseEvent(JainMgcpResponseEvent jainmgcpresponseevent) {
- logger.debug("processMgcpResponseEvent = " + jainmgcpresponseevent);
- switch (jainmgcpresponseevent.getObjectIdentifier()) {
- case Constants.RESP_DELETE_CONNECTION:
- if (jainmgcpresponseevent.getReturnCode().getValue() == ReturnCode.UNKNOWN_CALL_ID
- || jainmgcpresponseevent.getReturnCode().getValue() == ReturnCode.TRANSACTION_EXECUTED_NORMALLY) {
- responseReceived = true;
- }
- break;
- default:
- logger.warn("This RESPONSE is unexpected " + jainmgcpresponseevent);
- DeleteConnectionTest.fail("Incorrect response for DLCX command ");
- break;
- }
- }
- }