[jboss-remoting-commits] JBoss Remoting SVN: r5982 - remoting2/branches/2.2/src/tests/org/jboss/test/remoting/connection/deadlock.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed Aug 4 21:06:24 EDT 2010


Author: ron.sigal at jboss.com
Date: 2010-08-04 21:06:23 -0400 (Wed, 04 Aug 2010)
New Revision: 5982

Modified:
   remoting2/branches/2.2/src/tests/org/jboss/test/remoting/connection/deadlock/DeadlockTestCase.java
   remoting2/branches/2.2/src/tests/org/jboss/test/remoting/connection/deadlock/DeadlockTestClient.java
   remoting2/branches/2.2/src/tests/org/jboss/test/remoting/connection/deadlock/DeadlockTestServer.java
Log:
JBREM-1241: Added svn:eol-style subversion property.


Property changes on: remoting2/branches/2.2/src/tests/org/jboss/test/remoting/connection/deadlock/DeadlockTestCase.java
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: remoting2/branches/2.2/src/tests/org/jboss/test/remoting/connection/deadlock/DeadlockTestClient.java
===================================================================
--- remoting2/branches/2.2/src/tests/org/jboss/test/remoting/connection/deadlock/DeadlockTestClient.java	2010-08-05 01:04:38 UTC (rev 5981)
+++ remoting2/branches/2.2/src/tests/org/jboss/test/remoting/connection/deadlock/DeadlockTestClient.java	2010-08-05 01:06:23 UTC (rev 5982)
@@ -1,154 +1,154 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2008, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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.connection.deadlock;
-
-import java.net.InetAddress;
-import java.util.HashMap;
-import java.util.Map;
-
-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.ConnectionListener;
-import org.jboss.remoting.ConnectionValidator;
-import org.jboss.remoting.InvokerLocator;
-
-/**
- * Unit test for JBREM-1070.
- * 
- * @author <a href="ron.sigal at jboss.com">Ron Sigal</a>
- * @version 
- * <p>
- * Copyright Nov 29, 2008
- * </p>
- */
-public class DeadlockTestClient extends TestCase
-{
-   private static Logger log = Logger.getLogger(DeadlockTestClient.class);
-   
-   private static boolean firstTime = true;
-   
-   protected String host;
-   protected int port = 7777;
-   protected String locatorURI;
-   protected InvokerLocator serverLocator;
-
-   
-   public void setUp() throws Exception
-   {
-      if (firstTime)
-      {
-         firstTime = false;
-         Logger.getLogger("org.jboss.remoting").setLevel(Level.INFO);
-         Logger.getLogger("org.jboss.test.remoting").setLevel(Level.INFO);
-         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 tearDown()
-   {
-   }
-   
-   
-   public void testForDeadlock() throws Throwable
-   {
-      log.info("entering " + getName());
-      for (int i = 0; i < 10; i++)
-      {
-         assertTrue("failed execution: " + i, doTest());
-         log.info("execution " + i + " PASSES\n");
-      }
-      log.info(getName() + " PASSES");
-   }
-   
-   
-   public boolean doTest() throws Throwable
-   {
-      // Create client.
-      host = InetAddress.getLocalHost().getHostAddress();
-      locatorURI = getTransport() + "://" + host + ":" + port;
-      String metadata = System.getProperty("remoting.metadata");
-      if (metadata != null)
-      {
-         locatorURI += "/?" + metadata;
-      }
-      InvokerLocator clientLocator = new InvokerLocator(locatorURI);
-      HashMap clientConfig = new HashMap();
-      clientConfig.put(ConnectionValidator.VALIDATOR_PING_TIMEOUT, "5000");
-      clientConfig.put(ConnectionValidator.VALIDATOR_PING_PERIOD, "1000");
-      addExtraClientConfig(clientConfig);
-      Client client = new Client(clientLocator, clientConfig);
-      client.connect();
-      log.info("client is connected");
-      
-      // Test connections.
-      assertEquals("abc", client.invoke("abc"));
-      log.info("connection is good");
-      
-      // Add ConnectionListener.
-      TestConnectionListener listener = new TestConnectionListener();
-      client.addConnectionListener(listener);
-      
-      // Wait for notification.
-      for (int i = 0; i < 20; i++)
-      {
-         if (listener.ok)
-         {
-            break;
-         }
-         Thread.sleep(1000);
-      }
-      
-      client.disconnect();
-      return listener.ok;
-   }
-   
-   
-   protected String getTransport()
-   {
-      return "socket";
-   }
-   
-   
-   protected void addExtraClientConfig(Map config) {}
-
-   
-   static class TestConnectionListener implements ConnectionListener
-   {
-      public boolean ok;
-      
-      public void handleConnectionException(Throwable throwable, Client client)
-      {
-         ok = true;
-         log.info("handleConnectionException() called");
-      }
-   }
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.connection.deadlock;
+
+import java.net.InetAddress;
+import java.util.HashMap;
+import java.util.Map;
+
+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.ConnectionListener;
+import org.jboss.remoting.ConnectionValidator;
+import org.jboss.remoting.InvokerLocator;
+
+/**
+ * Unit test for JBREM-1070.
+ * 
+ * @author <a href="ron.sigal at jboss.com">Ron Sigal</a>
+ * @version 
+ * <p>
+ * Copyright Nov 29, 2008
+ * </p>
+ */
+public class DeadlockTestClient extends TestCase
+{
+   private static Logger log = Logger.getLogger(DeadlockTestClient.class);
+   
+   private static boolean firstTime = true;
+   
+   protected String host;
+   protected int port = 7777;
+   protected String locatorURI;
+   protected InvokerLocator serverLocator;
+
+   
+   public void setUp() throws Exception
+   {
+      if (firstTime)
+      {
+         firstTime = false;
+         Logger.getLogger("org.jboss.remoting").setLevel(Level.INFO);
+         Logger.getLogger("org.jboss.test.remoting").setLevel(Level.INFO);
+         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 tearDown()
+   {
+   }
+   
+   
+   public void testForDeadlock() throws Throwable
+   {
+      log.info("entering " + getName());
+      for (int i = 0; i < 10; i++)
+      {
+         assertTrue("failed execution: " + i, doTest());
+         log.info("execution " + i + " PASSES\n");
+      }
+      log.info(getName() + " PASSES");
+   }
+   
+   
+   public boolean doTest() throws Throwable
+   {
+      // Create client.
+      host = InetAddress.getLocalHost().getHostAddress();
+      locatorURI = getTransport() + "://" + host + ":" + port;
+      String metadata = System.getProperty("remoting.metadata");
+      if (metadata != null)
+      {
+         locatorURI += "/?" + metadata;
+      }
+      InvokerLocator clientLocator = new InvokerLocator(locatorURI);
+      HashMap clientConfig = new HashMap();
+      clientConfig.put(ConnectionValidator.VALIDATOR_PING_TIMEOUT, "5000");
+      clientConfig.put(ConnectionValidator.VALIDATOR_PING_PERIOD, "1000");
+      addExtraClientConfig(clientConfig);
+      Client client = new Client(clientLocator, clientConfig);
+      client.connect();
+      log.info("client is connected");
+      
+      // Test connections.
+      assertEquals("abc", client.invoke("abc"));
+      log.info("connection is good");
+      
+      // Add ConnectionListener.
+      TestConnectionListener listener = new TestConnectionListener();
+      client.addConnectionListener(listener);
+      
+      // Wait for notification.
+      for (int i = 0; i < 20; i++)
+      {
+         if (listener.ok)
+         {
+            break;
+         }
+         Thread.sleep(1000);
+      }
+      
+      client.disconnect();
+      return listener.ok;
+   }
+   
+   
+   protected String getTransport()
+   {
+      return "socket";
+   }
+   
+   
+   protected void addExtraClientConfig(Map config) {}
+
+   
+   static class TestConnectionListener implements ConnectionListener
+   {
+      public boolean ok;
+      
+      public void handleConnectionException(Throwable throwable, Client client)
+      {
+         ok = true;
+         log.info("handleConnectionException() called");
+      }
+   }
 }
\ No newline at end of file


Property changes on: remoting2/branches/2.2/src/tests/org/jboss/test/remoting/connection/deadlock/DeadlockTestClient.java
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: remoting2/branches/2.2/src/tests/org/jboss/test/remoting/connection/deadlock/DeadlockTestServer.java
===================================================================
--- remoting2/branches/2.2/src/tests/org/jboss/test/remoting/connection/deadlock/DeadlockTestServer.java	2010-08-05 01:04:38 UTC (rev 5981)
+++ remoting2/branches/2.2/src/tests/org/jboss/test/remoting/connection/deadlock/DeadlockTestServer.java	2010-08-05 01:06:23 UTC (rev 5982)
@@ -1,193 +1,193 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2008, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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.connection.deadlock;
-
-import java.net.InetAddress;
-import java.util.HashMap;
-import java.util.Map;
-
-import javax.management.MBeanServer;
-
-import org.apache.log4j.ConsoleAppender;
-import org.apache.log4j.Level;
-import org.apache.log4j.Logger;
-import org.apache.log4j.PatternLayout;
-import org.jboss.jrunit.extensions.ServerTestCase;
-import org.jboss.remoting.Client;
-import org.jboss.remoting.ConnectionListener;
-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.socket.SocketServerInvoker;
-
-
-/**
- * Unit test for JBREM-1070.
- * 
- * @author <a href="ron.sigal at jboss.com">Ron Sigal</a>
- * @version 
- * <p>
- * Copyright Nov 29, 2008
- * </p>
- */
-public class DeadlockTestServer extends ServerTestCase
-{
-   private static Logger log = Logger.getLogger(DeadlockTestServer.class);
-   
-   private static boolean firstTime = true;
-   
-   protected String host;
-   protected int port = 7777;
-   protected String locatorURI;
-   protected InvokerLocator serverLocator;
-   protected TestServerInvoker serverInvoker;
-   protected TestInvocationHandler invocationHandler;
-   
-   
-   public static void main(String[] args)
-   {
-      try
-      {
-         DeadlockTestServer server = new DeadlockTestServer();
-         server.setUp();
-         Thread.sleep(600000);
-         server.shutdownServer();
-      }
-      catch (Throwable t)
-      {
-         log.error("error", t);
-      }
-   }
-
-   
-   public void setUp() throws Exception
-   {
-      if (firstTime)
-      {
-         firstTime = false;
-         Logger.getLogger("org.jboss.remoting").setLevel(Level.INFO);
-         Logger.getLogger("org.jboss.test.remoting").setLevel(Level.INFO);
-         String pattern = "[%d{ABSOLUTE}] [%t] %5p (%F:%L) - %m%n";
-         PatternLayout layout = new PatternLayout(pattern);
-         ConsoleAppender consoleAppender = new ConsoleAppender(layout);
-         Logger.getRootLogger().addAppender(consoleAppender);  
-      }
-      
-      setupServer();
-   }
-
-   
-   public void tearDown() throws Exception
-   {
-      shutdownServer();
-   }
-   
-   
-   protected String getTransport()
-   {
-      return "socket";
-   }
-   
-   
-   protected void addExtraClientConfig(Map config) {}
-   protected void addExtraServerConfig(Map config) {}
-   
-
-   protected void setupServer() throws Exception
-   {
-      host = InetAddress.getLocalHost().getHostAddress();
-      locatorURI = getTransport() + "://" + host + ":" + port;
-      String metadata = System.getProperty("remoting.metadata");
-      if (metadata != null)
-      {
-         locatorURI += "/?" + metadata;
-      }
-      serverLocator = new InvokerLocator(locatorURI);
-      log.info("Starting remoting server with locator uri of: " + locatorURI);
-      HashMap config = new HashMap();
-      config.put(InvokerLocator.FORCE_REMOTE, "true");
-      addExtraServerConfig(config);
-      
-      serverInvoker = new TestServerInvoker(serverLocator, config);
-      serverInvoker.create();
-      invocationHandler = new TestInvocationHandler();
-      serverInvoker.addInvocationHandler("test", invocationHandler);
-      serverInvoker.start();
-      log.info("TestServerInvoker(" + locatorURI + ") started");
-   }
-   
-   
-   protected void shutdownServer() throws Exception
-   {
-      if (serverInvoker != null)
-         serverInvoker.stop();
-   }
-   
-   
-   static class TestInvocationHandler implements ServerInvocationHandler
-   {
-      public void addListener(InvokerCallbackHandler callbackHandler) {}
-      public Object invoke(final InvocationRequest invocation) throws Throwable
-      {
-         return invocation.getParameter();
-      }
-      public void removeListener(InvokerCallbackHandler callbackHandler) {}
-      public void setMBeanServer(MBeanServer server) {}
-      public void setInvoker(ServerInvoker invoker) {}
-   }
-   
-   static class TestServerInvoker extends SocketServerInvoker
-   {
-      public TestServerInvoker(InvokerLocator locator, Map config)
-      {
-         super(locator, config);
-         log.info("TestServerInvoker: " + locator);
-      }
-      public Object invoke(InvocationRequest invocation) throws Throwable
-      {
-         if ("$PING$".equals(invocation.getParameter()))
-         {
-            log.info("TestServerInvoker received $PING$");
-            Thread.sleep(10000);
-            throw new Exception("got $PING$");
-         }
-         else
-         {
-            return super.invoke(invocation);
-         }
-      }
-   }
-
-   static class TestConnectionListener implements ConnectionListener
-   {
-      public boolean ok;
-      
-      public void handleConnectionException(Throwable throwable, Client client)
-      {
-         ok = true;
-         log.info("handleConnectionException() called");
-      }
-   }
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.connection.deadlock;
+
+import java.net.InetAddress;
+import java.util.HashMap;
+import java.util.Map;
+
+import javax.management.MBeanServer;
+
+import org.apache.log4j.ConsoleAppender;
+import org.apache.log4j.Level;
+import org.apache.log4j.Logger;
+import org.apache.log4j.PatternLayout;
+import org.jboss.jrunit.extensions.ServerTestCase;
+import org.jboss.remoting.Client;
+import org.jboss.remoting.ConnectionListener;
+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.socket.SocketServerInvoker;
+
+
+/**
+ * Unit test for JBREM-1070.
+ * 
+ * @author <a href="ron.sigal at jboss.com">Ron Sigal</a>
+ * @version 
+ * <p>
+ * Copyright Nov 29, 2008
+ * </p>
+ */
+public class DeadlockTestServer extends ServerTestCase
+{
+   private static Logger log = Logger.getLogger(DeadlockTestServer.class);
+   
+   private static boolean firstTime = true;
+   
+   protected String host;
+   protected int port = 7777;
+   protected String locatorURI;
+   protected InvokerLocator serverLocator;
+   protected TestServerInvoker serverInvoker;
+   protected TestInvocationHandler invocationHandler;
+   
+   
+   public static void main(String[] args)
+   {
+      try
+      {
+         DeadlockTestServer server = new DeadlockTestServer();
+         server.setUp();
+         Thread.sleep(600000);
+         server.shutdownServer();
+      }
+      catch (Throwable t)
+      {
+         log.error("error", t);
+      }
+   }
+
+   
+   public void setUp() throws Exception
+   {
+      if (firstTime)
+      {
+         firstTime = false;
+         Logger.getLogger("org.jboss.remoting").setLevel(Level.INFO);
+         Logger.getLogger("org.jboss.test.remoting").setLevel(Level.INFO);
+         String pattern = "[%d{ABSOLUTE}] [%t] %5p (%F:%L) - %m%n";
+         PatternLayout layout = new PatternLayout(pattern);
+         ConsoleAppender consoleAppender = new ConsoleAppender(layout);
+         Logger.getRootLogger().addAppender(consoleAppender);  
+      }
+      
+      setupServer();
+   }
+
+   
+   public void tearDown() throws Exception
+   {
+      shutdownServer();
+   }
+   
+   
+   protected String getTransport()
+   {
+      return "socket";
+   }
+   
+   
+   protected void addExtraClientConfig(Map config) {}
+   protected void addExtraServerConfig(Map config) {}
+   
+
+   protected void setupServer() throws Exception
+   {
+      host = InetAddress.getLocalHost().getHostAddress();
+      locatorURI = getTransport() + "://" + host + ":" + port;
+      String metadata = System.getProperty("remoting.metadata");
+      if (metadata != null)
+      {
+         locatorURI += "/?" + metadata;
+      }
+      serverLocator = new InvokerLocator(locatorURI);
+      log.info("Starting remoting server with locator uri of: " + locatorURI);
+      HashMap config = new HashMap();
+      config.put(InvokerLocator.FORCE_REMOTE, "true");
+      addExtraServerConfig(config);
+      
+      serverInvoker = new TestServerInvoker(serverLocator, config);
+      serverInvoker.create();
+      invocationHandler = new TestInvocationHandler();
+      serverInvoker.addInvocationHandler("test", invocationHandler);
+      serverInvoker.start();
+      log.info("TestServerInvoker(" + locatorURI + ") started");
+   }
+   
+   
+   protected void shutdownServer() throws Exception
+   {
+      if (serverInvoker != null)
+         serverInvoker.stop();
+   }
+   
+   
+   static class TestInvocationHandler implements ServerInvocationHandler
+   {
+      public void addListener(InvokerCallbackHandler callbackHandler) {}
+      public Object invoke(final InvocationRequest invocation) throws Throwable
+      {
+         return invocation.getParameter();
+      }
+      public void removeListener(InvokerCallbackHandler callbackHandler) {}
+      public void setMBeanServer(MBeanServer server) {}
+      public void setInvoker(ServerInvoker invoker) {}
+   }
+   
+   static class TestServerInvoker extends SocketServerInvoker
+   {
+      public TestServerInvoker(InvokerLocator locator, Map config)
+      {
+         super(locator, config);
+         log.info("TestServerInvoker: " + locator);
+      }
+      public Object invoke(InvocationRequest invocation) throws Throwable
+      {
+         if ("$PING$".equals(invocation.getParameter()))
+         {
+            log.info("TestServerInvoker received $PING$");
+            Thread.sleep(10000);
+            throw new Exception("got $PING$");
+         }
+         else
+         {
+            return super.invoke(invocation);
+         }
+      }
+   }
+
+   static class TestConnectionListener implements ConnectionListener
+   {
+      public boolean ok;
+      
+      public void handleConnectionException(Throwable throwable, Client client)
+      {
+         ok = true;
+         log.info("handleConnectionException() called");
+      }
+   }
 }
\ No newline at end of file


Property changes on: remoting2/branches/2.2/src/tests/org/jboss/test/remoting/connection/deadlock/DeadlockTestServer.java
___________________________________________________________________
Name: svn:eol-style
   + native



More information about the jboss-remoting-commits mailing list