[jboss-cvs] JBoss Messaging SVN: r7899 - in branches/Branch_1_4: integration/EAP4/tests-src/org/jboss/test/messaging/jms/bridge and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Nov 10 23:03:42 EST 2009


Author: gaohoward
Date: 2009-11-10 23:03:41 -0500 (Tue, 10 Nov 2009)
New Revision: 7899

Added:
   branches/Branch_1_4/integration/EAP4/tests-src/org/jboss/test/messaging/jms/bridge/
   branches/Branch_1_4/integration/EAP4/tests-src/org/jboss/test/messaging/jms/bridge/ReconnectWithRecoveryTest.java
Removed:
   branches/Branch_1_4/tests/src/org/jboss/test/messaging/jms/bridge/ReconnectWithRecoveryTest.java
Log:
JBMESSAGING-1745
found another test


Added: branches/Branch_1_4/integration/EAP4/tests-src/org/jboss/test/messaging/jms/bridge/ReconnectWithRecoveryTest.java
===================================================================
--- branches/Branch_1_4/integration/EAP4/tests-src/org/jboss/test/messaging/jms/bridge/ReconnectWithRecoveryTest.java	                        (rev 0)
+++ branches/Branch_1_4/integration/EAP4/tests-src/org/jboss/test/messaging/jms/bridge/ReconnectWithRecoveryTest.java	2009-11-11 04:03:41 UTC (rev 7899)
@@ -0,0 +1,155 @@
+/*
+ * 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.bridge;
+
+import java.util.Properties;
+
+import org.jboss.jms.jndi.JMSProviderAdapter;
+import org.jboss.jms.server.bridge.Bridge;
+import org.jboss.logging.Logger;
+import org.jboss.test.messaging.tools.ServerManagement;
+import org.jboss.test.messaging.tools.TestJMSProviderAdaptor;
+import org.jboss.test.messaging.tools.aop.PoisonInterceptor;
+
+/**
+ * @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a>
+ * @version <tt>$Revision: 1.1 $</tt>
+ *
+ * $Id$
+ *
+ */
+public class ReconnectWithRecoveryTest extends BridgeTestBase
+{
+   private static final Logger log = Logger.getLogger(ReconnectTest.class);
+
+   public ReconnectWithRecoveryTest(String name)
+   {
+      super(name);
+   }
+
+   protected void setUp() throws Exception
+   {   
+      super.setUp();         
+      
+      //Now install local JMSProviderAdaptor classes
+      
+      Properties props1 = new Properties();
+      props1.putAll(ServerManagement.getJNDIEnvironment(1));
+        
+      JMSProviderAdapter targetAdaptor =
+         new TestJMSProviderAdaptor(props1, "/XAConnectionFactory", "adaptor1");
+      
+      sc.installJMSProviderAdaptor("adaptor1", targetAdaptor);
+      
+      sc.startRecoveryManager();      
+   }
+
+   protected void tearDown() throws Exception
+   {  
+      super.tearDown();
+
+      sc.stopRecoveryManager();
+      
+      sc.uninstallJMSProviderAdaptor("adaptor1");
+
+      log.debug(this + " torn down");
+   }
+      
+   /*
+    * Send some messages   
+    * Crash the server after prepare but on commit
+    * Bring up the destination server
+    * Send some more messages
+    * Verify all messages are received
+    */
+   public void testCrashAndReconnectDestCrashOnCommit() throws Exception
+   {
+      Bridge bridge = null;
+            
+      try
+      {
+         final int NUM_MESSAGES = 10;         
+         
+         bridge = new Bridge(false, sourceProps, targetProps, "/queue/sourceQueue", "/queue/targetQueue",
+                             "/ConnectionFactory", "/ConnectionFactory", 
+                             null, null, null, null,
+                             null, 1000, -1, Bridge.QOS_ONCE_AND_ONLY_ONCE, 
+                             NUM_MESSAGES, -1, null, null, false);
+         
+         bridge.start();
+         
+         //Poison server 1 so it crashes on commit of dest but after prepare
+         
+         //This means the transaction branch on source will get commmitted
+         //but the branch on dest won't be - it will remain prepared
+         //This corresponds to a HeuristicMixedException
+         
+         ServerManagement.poisonTheServer(1, PoisonInterceptor.TYPE_2PC_COMMIT);
+         
+         log.info("Poisoned server");
+         
+         //Send some messages
+         
+         sendMessages(cf0, sourceQueue, 0, NUM_MESSAGES, true);
+              
+         //Restart the server
+         
+         //Wait a bit for the batch to be sent - this should cause the server to crash on commit
+         
+         Thread.sleep(3000);
+         
+         log.info("Restarting server");
+                  
+         ServerManagement.start(1, "all", false);
+         
+         log.info("Restarted server");    
+         
+         ServerManagement.deployQueue("targetQueue", 1);
+                  
+         this.setUpAdministeredObjects();
+                        
+         log.info("Deployed queue");
+         
+         log.info("*** waiting for recovery");
+             
+         //There may be a long wait for the first time (need to let recovery kick in)
+         checkMessagesReceived(cf1, targetQueue, Bridge.QOS_ONCE_AND_ONLY_ONCE, NUM_MESSAGES, true);
+      }
+      finally
+      {      
+         if (bridge != null)
+         {
+            try
+            {
+               bridge.stop();
+            }
+            catch (Exception e)
+            {
+               log.error("Failed to stop bridge", e);
+            }
+         }
+      }                  
+   }
+   
+   // Inner classes -------------------------------------------------------------------   
+}
+

Deleted: branches/Branch_1_4/tests/src/org/jboss/test/messaging/jms/bridge/ReconnectWithRecoveryTest.java
===================================================================
--- branches/Branch_1_4/tests/src/org/jboss/test/messaging/jms/bridge/ReconnectWithRecoveryTest.java	2009-11-10 07:31:23 UTC (rev 7898)
+++ branches/Branch_1_4/tests/src/org/jboss/test/messaging/jms/bridge/ReconnectWithRecoveryTest.java	2009-11-11 04:03:41 UTC (rev 7899)
@@ -1,155 +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.bridge;
-
-import java.util.Properties;
-
-import org.jboss.jms.jndi.JMSProviderAdapter;
-import org.jboss.jms.server.bridge.Bridge;
-import org.jboss.logging.Logger;
-import org.jboss.test.messaging.tools.ServerManagement;
-import org.jboss.test.messaging.tools.TestJMSProviderAdaptor;
-import org.jboss.test.messaging.tools.aop.PoisonInterceptor;
-
-/**
- * @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a>
- * @version <tt>$Revision: 1.1 $</tt>
- *
- * $Id$
- *
- */
-public class ReconnectWithRecoveryTest extends BridgeTestBase
-{
-   private static final Logger log = Logger.getLogger(ReconnectTest.class);
-
-   public ReconnectWithRecoveryTest(String name)
-   {
-      super(name);
-   }
-
-   protected void setUp() throws Exception
-   {   
-      super.setUp();         
-      
-      //Now install local JMSProviderAdaptor classes
-      
-      Properties props1 = new Properties();
-      props1.putAll(ServerManagement.getJNDIEnvironment(1));
-        
-      JMSProviderAdapter targetAdaptor =
-         new TestJMSProviderAdaptor(props1, "/XAConnectionFactory", "adaptor1");
-      
-      sc.installJMSProviderAdaptor("adaptor1", targetAdaptor);
-      
-      sc.startRecoveryManager();      
-   }
-
-   protected void tearDown() throws Exception
-   {  
-      super.tearDown();
-
-      sc.stopRecoveryManager();
-      
-      sc.uninstallJMSProviderAdaptor("adaptor1");
-
-      log.debug(this + " torn down");
-   }
-      
-   /*
-    * Send some messages   
-    * Crash the server after prepare but on commit
-    * Bring up the destination server
-    * Send some more messages
-    * Verify all messages are received
-    */
-   public void testCrashAndReconnectDestCrashOnCommit() throws Exception
-   {
-      Bridge bridge = null;
-            
-      try
-      {
-         final int NUM_MESSAGES = 10;         
-         
-         bridge = new Bridge(false, sourceProps, targetProps, "/queue/sourceQueue", "/queue/targetQueue",
-                             "/ConnectionFactory", "/ConnectionFactory", 
-                             null, null, null, null,
-                             null, 1000, -1, Bridge.QOS_ONCE_AND_ONLY_ONCE, 
-                             NUM_MESSAGES, -1, null, null, false);
-         
-         bridge.start();
-         
-         //Poison server 1 so it crashes on commit of dest but after prepare
-         
-         //This means the transaction branch on source will get commmitted
-         //but the branch on dest won't be - it will remain prepared
-         //This corresponds to a HeuristicMixedException
-         
-         ServerManagement.poisonTheServer(1, PoisonInterceptor.TYPE_2PC_COMMIT);
-         
-         log.info("Poisoned server");
-         
-         //Send some messages
-         
-         sendMessages(cf0, sourceQueue, 0, NUM_MESSAGES, true);
-              
-         //Restart the server
-         
-         //Wait a bit for the batch to be sent - this should cause the server to crash on commit
-         
-         Thread.sleep(3000);
-         
-         log.info("Restarting server");
-                  
-         ServerManagement.start(1, "all", false);
-         
-         log.info("Restarted server");    
-         
-         ServerManagement.deployQueue("targetQueue", 1);
-                  
-         this.setUpAdministeredObjects();
-                        
-         log.info("Deployed queue");
-         
-         log.info("*** waiting for recovery");
-             
-         //There may be a long wait for the first time (need to let recovery kick in)
-         checkMessagesReceived(cf1, targetQueue, Bridge.QOS_ONCE_AND_ONLY_ONCE, NUM_MESSAGES, true);
-      }
-      finally
-      {      
-         if (bridge != null)
-         {
-            try
-            {
-               bridge.stop();
-            }
-            catch (Exception e)
-            {
-               log.error("Failed to stop bridge", e);
-            }
-         }
-      }                  
-   }
-   
-   // Inner classes -------------------------------------------------------------------   
-}
-




More information about the jboss-cvs-commits mailing list