/* * 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.no491; import gov.nist.javax.sip.SipStackImpl; import gov.nist.javax.sip.parser.PipelinedMsgParser; import gov.nist.javax.sip.parser.PostParseExecutorServices; 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 M. Ranganathan * */ public class ReInviteTCPPostParserThreadPoolTest extends ScenarioHarness implements SipListener { protected Shootist shootist; private Shootme shootme; private static Logger logger = Logger.getLogger("test.tck"); private SipListener getSipListener(EventObject sipEvent) { SipProvider source = (SipProvider) sipEvent.getSource(); SipListener listener = (SipListener) providerTable.get(source); assertTrue(listener != null); return listener; } @Override public String getName() { return ReInviteTCPPostParserThreadPoolTest.class.getName(); } public ReInviteTCPPostParserThreadPoolTest() { super("reinvitetest", true); } public void setUp() { try { this.transport = "tcp"; 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); ((SipStackImpl)getTiProtocolObjects().sipStack).setIsBackToBackUserAgent(true); ((SipStackImpl)getRiProtocolObjects().sipStack).setIsBackToBackUserAgent(true); } catch (Exception ex) { ex.printStackTrace(); fail("unexpected exception "); } } public void testSendInvite() throws Exception { int threads = 32; PostParseExecutorServices.setPostParseExcutorSize(threads, 10000); ((SipStackImpl)getRiProtocolObjects().sipStack).setTcpPostParsingThreadPoolSize(threads); ((SipStackImpl)getTiProtocolObjects().sipStack).setTcpPostParsingThreadPoolSize(threads); getRiProtocolObjects().start(); getTiProtocolObjects().start(); this.shootist.sendInvite(); try { Thread.sleep(20000); } catch (InterruptedException e) { e.printStackTrace(); } this.shootist.checkState(); this.shootme.checkState(); } public void tearDown() { try { super.tearDown(); 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); } }