[jboss-cvs] JBossRemoting/src/tests/org/jboss/test/remoting/transport/socket/oneway ...

Ron Sigal ron_sigal at yahoo.com
Mon Jan 22 20:04:13 EST 2007


  User: rsigal  
  Date: 07/01/22 20:04:13

  Added:       src/tests/org/jboss/test/remoting/transport/socket/oneway 
                        Tag: remoting_2_x OnewayInvocationTestCase.java
  Log:
  JBREM-684:  New unit test to confirm that MicroSocketClientInvoker.transport() returns socket to pool in the case of oneway invocations.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +202 -0    JBossRemoting/src/tests/org/jboss/test/remoting/transport/socket/oneway/Attic/OnewayInvocationTestCase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: OnewayInvocationTestCase.java
  ===================================================================
  RCS file: OnewayInvocationTestCase.java
  diff -N OnewayInvocationTestCase.java
  --- /dev/null	1 Jan 1970 00:00:00 -0000
  +++ OnewayInvocationTestCase.java	23 Jan 2007 01:04:13 -0000	1.1.2.1
  @@ -0,0 +1,202 @@
  +/*
  +* JBoss, Home of Professional Open Source
  +* Copyright 2005, JBoss Inc., and individual contributors as indicated
  +* 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.jboss.test.remoting.transport.socket.oneway;
  +
  +import java.net.InetAddress;
  +import java.util.HashMap;
  +
  +import javax.management.MBeanServer;
  +
  +import junit.framework.TestCase;
  +
  +import org.apache.log4j.ConsoleAppender;
  +import org.apache.log4j.Level;
  +import org.apache.log4j.Logger;
  +import org.apache.log4j.PatternLayout;
  +import org.jboss.remoting.Client;
  +import org.jboss.remoting.InvocationRequest;
  +import org.jboss.remoting.InvokerLocator;
  +import org.jboss.remoting.ServerInvocationHandler;
  +import org.jboss.remoting.ServerInvoker;
  +import org.jboss.remoting.callback.Callback;
  +import org.jboss.remoting.callback.HandleCallbackException;
  +import org.jboss.remoting.callback.InvokerCallbackHandler;
  +import org.jboss.remoting.transport.Connector;
  +import org.jboss.remoting.transport.PortUtil;
  +import org.jboss.remoting.transport.socket.MicroSocketClientInvoker;
  +
  +/** 
  + * @author <a href="ron.sigal at jboss.com">Ron Sigal</a>
  + * @version $Revision: 1.1.2.1 $
  + * <p>
  + * Copyright Jan 22, 2007
  + * </p>
  + */
  +public class OnewayInvocationTestCase extends TestCase
  +{
  +   private static Logger log = Logger.getLogger("OnewayInvocationTestCase");
  +   private static final int MAX_POOL_SIZE = 50;
  +   private static boolean firstTime = true;
  +
  +   
  +   public void setUp()
  +   {
  +      if (firstTime)
  +      {
  +         firstTime = false;
  +         String pattern = "[%d{ABSOLUTE}] [%t] %5p (%F:%L) - %m%n";
  +         PatternLayout layout = new PatternLayout(pattern);
  +         ConsoleAppender consoleAppender = new ConsoleAppender(layout);
  +         Logger.getRootLogger().addAppender(consoleAppender); 
  +         Logger.getLogger("org.jboss.remoting").setLevel(Level.INFO);
  +         Logger.getLogger("org.jboss.test.remoting").setLevel(Level.INFO);
  +      }
  +   }
  +   
  +   
  +   public void testServerSideThreads() throws Throwable
  +   {
  +      log.info("entering " + getName());
  +      String host = InetAddress.getLocalHost().getHostAddress();
  +      int port = PortUtil.findFreePort(host);
  +      String locatorURI = getTransport() + "://" + host + ":" + port;
  +      InvokerLocator locator = new InvokerLocator(locatorURI);
  +      HashMap serverConfig = new HashMap();
  +      serverConfig.put(InvokerLocator.FORCE_REMOTE, "true");
  +      Connector connector = new Connector(locator, serverConfig);
  +      connector.create();
  +      TestHandler handler = new TestHandler();
  +      connector.addInvocationHandler("test", handler);
  +      connector.start();
  +      
  +      HashMap clientConfig = new HashMap();
  +      clientConfig.put(InvokerLocator.FORCE_REMOTE, "true");
  +      clientConfig.put(MicroSocketClientInvoker.MAX_POOL_SIZE_FLAG, Integer.toString(MAX_POOL_SIZE));
  +      Client client = new Client(locator, clientConfig);
  +      client.connect();
  +      MicroSocketClientInvoker invoker = (MicroSocketClientInvoker) client.getInvoker();
  +      invoker.setNumberOfRetries(3);
  +      
  +      int i = 0;
  +      try
  +      {
  +         for (; i < MAX_POOL_SIZE + 10; i++)
  +         {
  +            client.invokeOneway(new Integer(i), null, false);
  +            log.debug("invocation: " + i);
  +         }
  +      }
  +      catch (Throwable t)
  +      {
  +         log.info("failed on invocation: " + i + " (should be " + MAX_POOL_SIZE + ")");
  +      }
  +
  +      Thread.sleep(1000);
  +      assertEquals(MAX_POOL_SIZE + 10, i);
  +      assertEquals(MAX_POOL_SIZE + 10, handler.counter);
  +      client.disconnect();
  +      connector.stop();
  +      log.info(getName() + " PASSES");
  +   }
  +
  +
  +   public void testClientSideThreads() throws Throwable
  +   {
  +      log.info("entering " + getName());
  +      String host = InetAddress.getLocalHost().getHostAddress();
  +      int port = PortUtil.findFreePort(host);
  +      String locatorURI = getTransport() + "://" + host + ":" + port;
  +      InvokerLocator locator = new InvokerLocator(locatorURI);
  +      HashMap serverConfig = new HashMap();
  +      serverConfig.put(InvokerLocator.FORCE_REMOTE, "true");
  +      Connector connector = new Connector(locator, serverConfig);
  +      connector.create();
  +      TestHandler handler = new TestHandler();
  +      connector.addInvocationHandler("test", handler);
  +      connector.start();
  +      
  +      HashMap clientConfig = new HashMap();
  +      clientConfig.put(InvokerLocator.FORCE_REMOTE, "true");
  +      clientConfig.put(MicroSocketClientInvoker.MAX_POOL_SIZE_FLAG, Integer.toString(MAX_POOL_SIZE));
  +      Client client = new Client(locator, clientConfig);
  +      client.connect();
  +      MicroSocketClientInvoker invoker = (MicroSocketClientInvoker) client.getInvoker();
  +      invoker.setNumberOfRetries(3);
  +      
  +      int i = 0;
  +      try
  +      {
  +         for (; i < MAX_POOL_SIZE + 10; i++)
  +         {
  +            client.invokeOneway(new Integer(i), null, true);
  +            log.debug("invocation: " + i);
  +         }
  +      }
  +      catch (Throwable t)
  +      {
  +         log.info("failed on invocation: " + i + " (should be " + MAX_POOL_SIZE + ")");
  +      }
  +
  +      Thread.sleep(1000);
  +      assertEquals(MAX_POOL_SIZE + 10, i);
  +      assertEquals(MAX_POOL_SIZE + 10, handler.counter);
  +      client.disconnect();
  +      connector.stop();
  +      log.info(getName() + " PASSES");
  +   }
  +
  +   
  +   protected String getTransport()
  +   {
  +      return "socket";
  +   }
  +   
  +   
  +   public static class TestHandler implements ServerInvocationHandler
  +   {
  +      public int counter;
  +      
  +      public void setMBeanServer(MBeanServer server) {}
  +      public void setInvoker(ServerInvoker invoker) {}
  +
  +      public Object invoke(InvocationRequest invocation) throws Throwable
  +      {
  +         counter++;
  +         Integer i = (Integer) invocation.getParameter();
  +         return new Integer(i.intValue() + 1);
  +      }
  +
  +      public void addListener(InvokerCallbackHandler callbackHandler)
  +      {
  +         try
  +         {
  +            callbackHandler.handleCallback(new Callback("callback"));
  +         }
  +         catch (HandleCallbackException e)
  +         {
  +            log.error("error handling callback");
  +         }
  +      }
  +      
  +      public void removeListener(InvokerCallbackHandler callbackHandler) {}
  +   }
  +}
  
  
  



More information about the jboss-cvs-commits mailing list