[jboss-cvs] JBoss Messaging SVN: r2014 - in trunk/tests: src/org/jboss/test/messaging/jms and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Jan 21 05:53:11 EST 2007


Author: ovidiu.feodorov at jboss.com
Date: 2007-01-21 05:53:10 -0500 (Sun, 21 Jan 2007)
New Revision: 2014

Added:
   trunk/tests/src/org/jboss/test/thirdparty/remoting/InvokerReferenceCountTest.java
Removed:
   trunk/tests/src/org/jboss/test/messaging/jms/YetAnotherRemotingBugTest.java
Modified:
   trunk/tests/etc/log4j.xml
Log:
Moved the test for http://jira.jboss.com/jira/browse/JBMESSAGING-765 under thirdparty.remoting

Modified: trunk/tests/etc/log4j.xml
===================================================================
--- trunk/tests/etc/log4j.xml	2007-01-21 10:36:24 UTC (rev 2013)
+++ trunk/tests/etc/log4j.xml	2007-01-21 10:53:10 UTC (rev 2014)
@@ -84,12 +84,6 @@
       <priority value="DEBUG"/>
    </category>
 
-   <category name="org.jboss.remoting.LeasePinger">
-      <priority value="TRACE" class="org.jboss.logging.XLevel"/>
-   </category>
-
-
-
    <root>
       <appender-ref ref="CONSOLE"/>
       <appender-ref ref="FILE"/>

Deleted: trunk/tests/src/org/jboss/test/messaging/jms/YetAnotherRemotingBugTest.java
===================================================================
--- trunk/tests/src/org/jboss/test/messaging/jms/YetAnotherRemotingBugTest.java	2007-01-21 10:36:24 UTC (rev 2013)
+++ trunk/tests/src/org/jboss/test/messaging/jms/YetAnotherRemotingBugTest.java	2007-01-21 10:53:10 UTC (rev 2014)
@@ -1,114 +0,0 @@
-/*
- * 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.messaging.jms;
-
-import javax.jms.Connection;
-import javax.jms.ConnectionFactory;
-import javax.jms.Queue;
-import javax.naming.InitialContext;
-
-import org.jboss.test.messaging.MessagingTestCase;
-import org.jboss.test.messaging.tools.ServerManagement;
-
-/**
- * 
- * A YetAnotherRemotingBugTest
- *
- * @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a>
- * @version <tt>$Revision: 1.1 $</tt>
- *
- * $Id$
- *
- */
-public class YetAnotherRemotingBugTest extends MessagingTestCase
-{
-
-   public YetAnotherRemotingBugTest(String name)
-   {
-      super(name);
-   }
-
-   private ConnectionFactory cf;
-   
-   private Queue queue;
-   
-   protected void setUp() throws Exception
-   {
-      super.setUp();
-      
-      ServerManagement.start("all");
-      
-      ServerManagement.deployQueue("testQueue");
-      
-      InitialContext ic = new InitialContext(ServerManagement.getJNDIEnvironment());
-      
-      cf = (ConnectionFactory)ic.lookup("/ConnectionFactory");
-      
-      queue = (Queue)ic.lookup("/queue/testQueue");
-      
-      this.drainDestination(cf, queue);
-      
-      ic.close();
-      
-   }
-
-   protected void tearDown() throws Exception
-   {
-      super.tearDown();
-      
-      ServerManagement.undeployQueue("testQueue");
-      
-      ServerManagement.stop();
-   }
-   
-   public void testFuckUp() throws Exception
-   {
-      log.info("Creating conn1");
-      Connection conn1 = cf.createConnection();              
-      log.info("Created conn2");                     
-      
-      log.info("Creating conn2");
-      Connection conn2 = cf.createConnection();
-      log.info("Created conn2");   
-      
-      Thread.sleep(4000);
-      
-      log.info("Closing conn2");
-      conn2.close();      
-      log.info("Closed conn2");
-                               
-      log.info("Creating conn3");
-      Connection conn3 = cf.createConnection();
-      log.info("Created conn3");
-      
-      Thread.sleep(4000);
-      
-      log.info("Closing conn3");
-      conn3.close();      
-      log.info("Closed conn3");
-            
-      log.info("Closing conn1");
-      conn1.close();            
-      log.info("Closed conn1");
-   }
-
-}

Copied: trunk/tests/src/org/jboss/test/thirdparty/remoting/InvokerReferenceCountTest.java (from rev 2013, trunk/tests/src/org/jboss/test/messaging/jms/YetAnotherRemotingBugTest.java)
===================================================================
--- trunk/tests/src/org/jboss/test/thirdparty/remoting/InvokerReferenceCountTest.java	                        (rev 0)
+++ trunk/tests/src/org/jboss/test/thirdparty/remoting/InvokerReferenceCountTest.java	2007-01-21 10:53:10 UTC (rev 2014)
@@ -0,0 +1,113 @@
+/*
+ * 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.thirdparty.remoting;
+
+import javax.jms.Connection;
+import javax.jms.ConnectionFactory;
+import javax.jms.Queue;
+import javax.naming.InitialContext;
+
+import org.jboss.test.messaging.MessagingTestCase;
+import org.jboss.test.messaging.tools.ServerManagement;
+
+/**
+ * @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a>
+ * @version <tt>$Revision: 1.1 $</tt>
+ *
+ * $Id$
+ *
+ */
+public class InvokerReferenceCountTest extends MessagingTestCase
+{
+   public InvokerReferenceCountTest(String name)
+   {
+      super(name);
+   }
+
+   private ConnectionFactory cf;
+   
+   protected void setUp() throws Exception
+   {
+      super.setUp();
+      
+      ServerManagement.start("all");
+      
+      ServerManagement.deployQueue("testQueue");
+      
+      InitialContext ic = new InitialContext(ServerManagement.getJNDIEnvironment());
+      
+      cf = (ConnectionFactory)ic.lookup("/ConnectionFactory");
+      
+      Queue queue = (Queue)ic.lookup("/queue/testQueue");
+      
+      this.drainDestination(cf, queue);
+      
+      ic.close();
+      
+   }
+
+   protected void tearDown() throws Exception
+   {
+      super.tearDown();
+      
+      ServerManagement.undeployQueue("testQueue");
+      
+      ServerManagement.stop();
+   }
+   
+   public void testReferenceCount() throws Exception
+   {
+//      if (!ServerManagement.isRemote())
+//      {
+//         fail("This test should be run in a remote configuration!");
+//      }
+      
+      log.info("Creating conn1");
+      Connection conn1 = cf.createConnection();              
+      log.info("Created conn2");                     
+      
+      log.info("Creating conn2");
+      Connection conn2 = cf.createConnection();
+      log.info("Created conn2");   
+      
+      Thread.sleep(4000);
+      
+      log.info("Closing conn2");
+      conn2.close();      
+      log.info("Closed conn2");
+                               
+      log.info("Creating conn3");
+      Connection conn3 = cf.createConnection();
+      log.info("Created conn3");
+      
+      Thread.sleep(4000);
+      
+      log.info("Closing conn3");
+      conn3.close();      
+      log.info("Closed conn3");
+            
+      log.info("Closing conn1");
+      conn1.close();            
+      log.info("Closed conn1");
+   }
+
+}




More information about the jboss-cvs-commits mailing list