[jboss-cvs] JBossRemoting/src/tests/org/jboss/test/remoting/marshall/preferredstream ...

Ron Sigal ron_sigal at yahoo.com
Wed Jan 31 01:18:02 EST 2007


  User: rsigal  
  Date: 07/01/31 01:18:02

  Added:       src/tests/org/jboss/test/remoting/marshall/preferredstream   
                        Tag: remoting_2_x TestMarshaller.java
                        TestUnMarshaller.java
                        SocketPreferredStreamMarshallerTestCase.java
  Log:
  JBREM-692:  Unit tests for PreferredStream(Un)Marshaller.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +57 -0     JBossRemoting/src/tests/org/jboss/test/remoting/marshall/preferredstream/Attic/TestMarshaller.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TestMarshaller.java
  ===================================================================
  RCS file: TestMarshaller.java
  diff -N TestMarshaller.java
  --- /dev/null	1 Jan 1970 00:00:00 -0000
  +++ TestMarshaller.java	31 Jan 2007 06:18:02 -0000	1.1.2.1
  @@ -0,0 +1,57 @@
  +/*
  +* 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.marshall.preferredstream;
  +
  +import java.io.BufferedOutputStream;
  +import java.io.IOException;
  +import java.io.ObjectOutputStream;
  +import java.io.OutputStream;
  +import java.util.Map;
  +
  +import org.jboss.remoting.marshal.Marshaller;
  +import org.jboss.remoting.marshal.serializable.SerializableMarshaller;
  +
  +/** 
  + * @author <a href="ron.sigal at jboss.com">Ron Sigal</a>
  + * @version $Revision: 1.1.2.1 $
  + * <p>
  + * Copyright Jan 29, 2007
  + * </p>
  + */
  +public class TestMarshaller extends SerializableMarshaller
  +{  
  +   /** The serialVersionUID */
  +   private static final long serialVersionUID = 5639800228740710244L;
  +   
  +   public TestMarshaller() {}
  +   
  +   public OutputStream getMarshallingStream(OutputStream outputStream, Map config)
  +   throws IOException
  +   {
  +      return new BufferedOutputStream(outputStream);
  +   }
  +   
  +   public Marshaller cloneMarshaller() throws CloneNotSupportedException
  +   {
  +      return new TestMarshaller();
  +   }
  +}
  
  
  
  1.1.2.1   +58 -0     JBossRemoting/src/tests/org/jboss/test/remoting/marshall/preferredstream/Attic/TestUnMarshaller.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TestUnMarshaller.java
  ===================================================================
  RCS file: TestUnMarshaller.java
  diff -N TestUnMarshaller.java
  --- /dev/null	1 Jan 1970 00:00:00 -0000
  +++ TestUnMarshaller.java	31 Jan 2007 06:18:02 -0000	1.1.2.1
  @@ -0,0 +1,58 @@
  +/*
  +* 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.marshall.preferredstream;
  +
  +import java.io.BufferedInputStream;
  +import java.io.IOException;
  +import java.io.InputStream;
  +import java.util.Map;
  +
  +import org.jboss.remoting.marshal.UnMarshaller;
  +import org.jboss.remoting.marshal.serializable.SerializableUnMarshaller;
  +
  +/** 
  + * @author <a href="ron.sigal at jboss.com">Ron Sigal</a>
  + * @version $Revision: 1.1.2.1 $
  + * <p>
  + * Copyright Jan 29, 2007
  + * </p>
  + */
  +public class TestUnMarshaller extends SerializableUnMarshaller
  +{
  +   /** The serialVersionUID */
  +   private static final long serialVersionUID = 37467690240020013L;
  +   
  +   public TestUnMarshaller() {}
  +   
  +   public InputStream getMarshalledStream(InputStream inputStream, Map config)
  +   throws IOException
  +   {
  +      return new BufferedInputStream(inputStream);
  +   }
  +   
  +   public UnMarshaller cloneUnMarshaller() throws CloneNotSupportedException
  +   {
  +      SerializableUnMarshaller unmarshaller = new TestUnMarshaller();
  +      unmarshaller.setClassLoader(customClassLoader);
  +      return unmarshaller;
  +   }
  +}
  
  
  
  1.1.2.1   +196 -0    JBossRemoting/src/tests/org/jboss/test/remoting/marshall/preferredstream/Attic/SocketPreferredStreamMarshallerTestCase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SocketPreferredStreamMarshallerTestCase.java
  ===================================================================
  RCS file: SocketPreferredStreamMarshallerTestCase.java
  diff -N SocketPreferredStreamMarshallerTestCase.java
  --- /dev/null	1 Jan 1970 00:00:00 -0000
  +++ SocketPreferredStreamMarshallerTestCase.java	31 Jan 2007 06:18:02 -0000	1.1.2.1
  @@ -0,0 +1,196 @@
  +/*
  +* 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.marshall.preferredstream;
  +
  +import java.io.ObjectInputStream;
  +import java.io.ObjectOutputStream;
  +import java.lang.reflect.Field;
  +import java.net.InetAddress;
  +import java.util.HashMap;
  +import java.util.List;
  +import java.util.Map;
  +
  +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.InvokerCallbackHandler;
  +import org.jboss.remoting.transport.Connector;
  +import org.jboss.remoting.transport.PortUtil;
  +import org.jboss.remoting.transport.socket.ClientSocketWrapper;
  +import org.jboss.remoting.transport.socket.MicroSocketClientInvoker;
  +
  +/** 
  + * This test verifies that the socket transport caches and reuses object streams
  + * provided by PreferredStream(Un)Marshallers.
  + * 
  + * @author <a href="ron.sigal at jboss.com">Ron Sigal</a>
  + * @version $Revision: 1.1.2.1 $
  + * <p>
  + * Copyright Jan 10, 2007
  + * </p>
  + */
  +public class SocketPreferredStreamMarshallerTestCase extends TestCase
  +{
  +   protected static Logger log = Logger.getLogger(SocketPreferredStreamMarshallerTestCase.class);
  +   protected static boolean firstTime = true;
  +   
  +   
  +   public void setUp() throws Exception
  +   {
  +      if (firstTime)
  +      {
  +         firstTime = false;
  +         Logger.getLogger("org.jboss.remoting").setLevel(Level.DEBUG);
  +         Logger.getLogger("org.jboss.test.remoting").setLevel(Level.DEBUG);
  +         String pattern = "[%d{ABSOLUTE}] [%t] %5p (%F:%L) - %m%n";
  +         PatternLayout layout = new PatternLayout(pattern);
  +         ConsoleAppender consoleAppender = new ConsoleAppender(layout);
  +         Logger.getRootLogger().addAppender(consoleAppender);  
  +      }
  +   }
  +   
  +   
  +   
  +   public void testObjectStreamsPreferred() throws Throwable
  +   {
  +      log.info("entering " + getName());
  +      String host = InetAddress.getLocalHost().getHostAddress();
  +      int port = PortUtil.findFreePort(host);
  +      String locatorURI = getTransport() + "://" + host + ":" + port;
  +      locatorURI += "/?marshaller=org.jboss.remoting.marshall.serializable.SerializableMarshaller";
  +      locatorURI += "&unmarshaller=org.jboss.remoting.marshall.serializable.SerializableUnMarshaller";
  +      InvokerLocator locator = new InvokerLocator(locatorURI);
  +      Connector connector = new Connector(locator);
  +      connector.create();
  +      connector.addInvocationHandler("test", new TestHandler());
  +      connector.start();
  +      
  +      HashMap config = new HashMap();
  +      config.put(InvokerLocator.FORCE_REMOTE, "true");
  +      Client client = new Client(locator, config);
  +      client.connect();
  +      Integer i = (Integer) client.invoke(new Integer(17));
  +      assertEquals(18, i.intValue());
  +      
  +      assertTrue(client.getInvoker() instanceof MicroSocketClientInvoker);
  +      MicroSocketClientInvoker clientInvoker = (MicroSocketClientInvoker) client.getInvoker();
  +      Field field = MicroSocketClientInvoker.class.getDeclaredField("pool");
  +      field.setAccessible(true);
  +      List pool = (List) field.get(clientInvoker);
  +      assertEquals(1, pool.size());
  +      ClientSocketWrapper csw = (ClientSocketWrapper) pool.get(0);
  +      field = ClientSocketWrapper.class.getDeclaredField("in");
  +      field.setAccessible(true);
  +      assertTrue(field.get(csw) instanceof ObjectInputStream);
  +      field = ClientSocketWrapper.class.getDeclaredField("out");
  +      field.setAccessible(true);
  +      assertTrue(field.get(csw) instanceof ObjectOutputStream);
  +      
  +      client.disconnect();
  +      connector.stop();
  +      log.info(getName() + " PASSES");
  +   }
  +   
  +   
  +   public void testBufferedStreamPreferred() throws Throwable
  +   {
  +      log.info("entering " + getName());
  +      String host = InetAddress.getLocalHost().getHostAddress();
  +      int port = PortUtil.findFreePort(host);
  +      String locatorURI = getTransport() + "://" + host + ":" + port;
  +      locatorURI += "/?marshaller=org.jboss.test.remoting.marshall.preferredstream.Marshaller";
  +      locatorURI += "&unmarshaller=org.jboss.test.remoting.marshall.preferredstream.UnMarshaller";
  +      InvokerLocator locator = new InvokerLocator(locatorURI);
  +      Connector connector = new Connector(locator);
  +      connector.create();
  +      connector.addInvocationHandler("test", new TestHandler());
  +      connector.start();
  +      
  +      HashMap config = new HashMap();
  +      config.put(InvokerLocator.FORCE_REMOTE, "true");
  +      Client client = new Client(locator, config);
  +      client.connect();
  +      Integer i = (Integer) client.invoke(new Integer(17));
  +      assertEquals(18, i.intValue());
  +      
  +      assertTrue(client.getInvoker() instanceof MicroSocketClientInvoker);
  +      MicroSocketClientInvoker clientInvoker = (MicroSocketClientInvoker) client.getInvoker();
  +      Field field = MicroSocketClientInvoker.class.getDeclaredField("pool");
  +      field.setAccessible(true);
  +      List pool = (List) field.get(clientInvoker);
  +      assertEquals(1, pool.size());
  +      ClientSocketWrapper csw = (ClientSocketWrapper) pool.get(0);
  +      field = ClientSocketWrapper.class.getDeclaredField("in");
  +      field.setAccessible(true);
  +      assertTrue(field.get(csw) instanceof ObjectInputStream);
  +      field = ClientSocketWrapper.class.getDeclaredField("out");
  +      field.setAccessible(true);
  +      assertTrue(field.get(csw) instanceof ObjectOutputStream);
  +      
  +      client.disconnect();
  +      connector.stop();
  +      log.info(getName() + " PASSES");
  +   }
  +   
  +   
  +   protected String getTransport()
  +   {
  +      return "socket";
  +   }
  +   
  +
  +   protected void addExtraClientConfig(Map config)
  +   {  
  +   }
  +   
  +   
  +   protected void addExtraServerConfig(Map config)
  +   {
  +   }
  +   
  +   
  +   public class TestHandler implements ServerInvocationHandler
  +   {
  +
  +      public void setMBeanServer(MBeanServer server) {}
  +      public void setInvoker(ServerInvoker invoker) {}
  +
  +      public Object invoke(InvocationRequest invocation) throws Throwable
  +      {
  +         Integer i = (Integer) invocation.getParameter();
  +         return new Integer(i.intValue() + 1);
  +      }
  +
  +      public void addListener(InvokerCallbackHandler callbackHandler) {}
  +      public void removeListener(InvokerCallbackHandler callbackHandler) {}
  +   }
  +}
  \ No newline at end of file
  
  
  



More information about the jboss-cvs-commits mailing list