Package test.unit.gov.nist.javax.sip.stack.challenge

Source Code of test.unit.gov.nist.javax.sip.stack.challenge.ChallengeTest

/*
* Conditions Of Use
*
* This software was developed by employees of the National Institute of
* Standards and Technology (NIST), and others.
* This software is has been contributed to the public domain.
* As a result, a formal license is not needed to use the software.
*
* This software is provided "AS IS." 
* NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED
* OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT
* AND DATA ACCURACY.  NIST does not warrant or make any representations
* regarding the use of the software or the results thereof, including but
* not limited to the correctness, accuracy, reliability or usefulness of
* the software.
*
*
*/
/**
*
*/
package test.unit.gov.nist.javax.sip.stack.challenge;

import java.util.EventObject;

import javax.sip.DialogTerminatedEvent;
import javax.sip.IOExceptionEvent;
import javax.sip.RequestEvent;
import javax.sip.ResponseEvent;
import javax.sip.SipListener;
import javax.sip.SipProvider;
import javax.sip.TimeoutEvent;
import javax.sip.TransactionTerminatedEvent;

import org.apache.log4j.Logger;

import test.tck.msgflow.callflows.ScenarioHarness;

/**
* @author Jeroen van Bemmel (jbemmel@zonnet.nl)
*
*/
public class ChallengeTest extends ScenarioHarness implements SipListener {

 
  protected Shootist shootist;

  private Shootme shootme;

  private static Logger logger = Logger.getLogger("test.tck");

  static {
    if (!logger.isAttached(console))
      logger.addAppender(console);
  }

  private SipListener getSipListener(EventObject sipEvent) {
    SipProvider source = (SipProvider) sipEvent.getSource();
    SipListener listener = (SipListener) providerTable.get(source);
    assertTrue(listener != null);
    return listener;
  }

  public ChallengeTest() {
    super("challengetest", true);
  }

  public void setUp() {

    try {
      this.transport = "udp";
      // testedImplFlag = true;  // reverse RI/TI
      super.setUp();
      shootist = new Shootist(getRiProtocolObjects());
      SipProvider shootistProvider = shootist.createSipProvider();
      providerTable.put(shootistProvider, shootist);

      shootme = new Shootme(getTiProtocolObjects());
      SipProvider shootmeProvider = shootme.createSipProvider();
      providerTable.put(shootmeProvider, shootme);
      shootistProvider.addSipListener(this);
      shootmeProvider.addSipListener(this);

      getRiProtocolObjects().start();
      if (getTiProtocolObjects() != getRiProtocolObjects())
        getTiProtocolObjects().start();
    } catch (Exception ex) {
      ex.printStackTrace();
      fail("unexpected exception ");
    }
  }

  public void testSendInvite() {
    this.shootist.sendInvite();
  }

  public void tearDown() {
    try {
      Thread.sleep(10000)// wait for events to fire
      this.shootist.checkState();
      this.shootme.checkState();
      getTiProtocolObjects().destroy();
      if (getTiProtocolObjects() != getRiProtocolObjects())
        getRiProtocolObjects().destroy();
      Thread.sleep(1000);
      this.providerTable.clear();
      logTestCompleted();
    } catch (Exception ex) {
      ex.printStackTrace();
    }

  }

  public void processRequest(RequestEvent requestEvent) {
    getSipListener(requestEvent).processRequest(requestEvent);

  }

  public void processResponse(ResponseEvent responseEvent) {
    getSipListener(responseEvent).processResponse(responseEvent);

  }

  public void processTimeout(TimeoutEvent timeoutEvent) {
    getSipListener(timeoutEvent).processTimeout(timeoutEvent);
  }

  public void processIOException(IOExceptionEvent exceptionEvent) {
    fail("unexpected exception");

  }

  public void processTransactionTerminated(
      TransactionTerminatedEvent transactionTerminatedEvent) {
    getSipListener(transactionTerminatedEvent)
        .processTransactionTerminated(transactionTerminatedEvent);

  }

  public void processDialogTerminated(
      DialogTerminatedEvent dialogTerminatedEvent) {
    getSipListener(dialogTerminatedEvent).processDialogTerminated(
        dialogTerminatedEvent);

  }

}
TOP

Related Classes of test.unit.gov.nist.javax.sip.stack.challenge.ChallengeTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.