Repository: qpid-jms
Updated Branches:
  refs/heads/master ed27c4ea5 -> 02c76f64c


QPIDJMS-395: expand test to check versions with and without container-id hint, 
i.e. invalid ClientID


Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/02c76f64
Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/02c76f64
Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/02c76f64

Branch: refs/heads/master
Commit: 02c76f64c5a7b83f862e5f4358e7135ed096da7d
Parents: ed27c4e
Author: Robbie Gemmell <rob...@apache.org>
Authored: Mon Jun 25 11:08:31 2018 +0100
Committer: Robbie Gemmell <rob...@apache.org>
Committed: Mon Jun 25 11:08:31 2018 +0100

----------------------------------------------------------------------
 .../failover/FailoverIntegrationTest.java       | 36 ++++++++++++++++++--
 1 file changed, 34 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/02c76f64/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/failover/FailoverIntegrationTest.java
----------------------------------------------------------------------
diff --git 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/failover/FailoverIntegrationTest.java
 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/failover/FailoverIntegrationTest.java
index 8aa8b1f..734f875 100644
--- 
a/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/failover/FailoverIntegrationTest.java
+++ 
b/qpid-jms-client/src/test/java/org/apache/qpid/jms/provider/failover/FailoverIntegrationTest.java
@@ -32,6 +32,8 @@ import static org.junit.Assert.fail;
 
 import java.net.URI;
 import java.util.Enumeration;
+import java.util.HashMap;
+import java.util.Map;
 import java.util.concurrent.CountDownLatch;
 import java.util.concurrent.TimeUnit;
 import java.util.concurrent.atomic.AtomicBoolean;
@@ -66,6 +68,7 @@ import org.apache.qpid.jms.JmsQueue;
 import org.apache.qpid.jms.JmsResourceNotFoundException;
 import org.apache.qpid.jms.JmsSendTimedOutException;
 import org.apache.qpid.jms.policy.JmsDefaultPrefetchPolicy;
+import org.apache.qpid.jms.provider.amqp.AmqpSupport;
 import org.apache.qpid.jms.test.QpidJmsTestCase;
 import org.apache.qpid.jms.test.Wait;
 import org.apache.qpid.jms.test.testpeer.TestAmqpPeer;
@@ -125,7 +128,16 @@ public class FailoverIntegrationTest extends 
QpidJmsTestCase {
 
     @Test(timeout = 20000)
     public void testFailoverHandlesConnectErrorInvalidField() throws Exception 
{
+        doFailoverHandlesConnectErrorInvalidFieldTestImpl(false);
+    }
+
+    @Test(timeout = 20000)
+    public void 
testFailoverHandlesConnectErrorInvalidFieldWithContainerIdHint() throws 
Exception {
+        // As above but also including hint that the container-id is the 
invalid field, i.e invalid ClientID
+        doFailoverHandlesConnectErrorInvalidFieldTestImpl(true);
+    }
 
+    private void doFailoverHandlesConnectErrorInvalidFieldTestImpl(boolean 
includeContainerIdHint) throws Exception {
         try (TestAmqpPeer originalPeer = new TestAmqpPeer();
              TestAmqpPeer finalPeer = new TestAmqpPeer();) {
 
@@ -133,7 +145,13 @@ public class FailoverIntegrationTest extends 
QpidJmsTestCase {
             final String finalURI = createPeerURI(finalPeer);
             final DescribedType amqpValueNullContent = new 
AmqpValueDescribedType(null);
 
-            originalPeer.rejectConnect(AmqpError.INVALID_FIELD, "Client ID 
already in use", null);
+            Map<Symbol, Object> errorInfo = null;
+            if (includeContainerIdHint) {
+                errorInfo = new HashMap<Symbol, Object>();
+                errorInfo.put(AmqpSupport.INVALID_FIELD, 
AmqpSupport.CONTAINER_ID);
+            }
+
+            originalPeer.rejectConnect(AmqpError.INVALID_FIELD, "Client ID 
already in use", errorInfo);
 
             finalPeer.expectSaslAnonymous();
             finalPeer.expectOpen();
@@ -179,7 +197,16 @@ public class FailoverIntegrationTest extends 
QpidJmsTestCase {
 
     @Test(timeout = 20000)
     public void testFailoverHandlesConnectErrorInvalidFieldOnReconnect() 
throws Exception {
+        doFailoverHandlesConnectErrorInvalidFieldOnReconnectTestImpl(false);
+    }
 
+    @Test(timeout = 20000)
+    public void 
testFailoverHandlesConnectErrorInvalidFieldOnReconnectWithContainerIdHint() 
throws Exception {
+        // As above but also including hint that the container-id is the 
invalid field, i.e invalid ClientID
+        doFailoverHandlesConnectErrorInvalidFieldOnReconnectTestImpl(true);
+    }
+
+    private void 
doFailoverHandlesConnectErrorInvalidFieldOnReconnectTestImpl(boolean 
includeContainerIdHint) throws Exception {
         try (TestAmqpPeer originalPeer = new TestAmqpPeer();
              TestAmqpPeer rejectingPeer = new TestAmqpPeer();
              TestAmqpPeer finalPeer = new TestAmqpPeer();) {
@@ -193,7 +220,12 @@ public class FailoverIntegrationTest extends 
QpidJmsTestCase {
             originalPeer.expectBegin();
             originalPeer.dropAfterLastHandler(10);
 
-            rejectingPeer.rejectConnect(AmqpError.INVALID_FIELD, "Client ID 
already in use", null);
+            Map<Symbol, Object> errorInfo = null;
+            if (includeContainerIdHint) {
+                errorInfo = new HashMap<Symbol, Object>();
+                errorInfo.put(AmqpSupport.INVALID_FIELD, 
AmqpSupport.CONTAINER_ID);
+            }
+            rejectingPeer.rejectConnect(AmqpError.INVALID_FIELD, "Client ID 
already in use", errorInfo);
 
             finalPeer.expectSaslAnonymous();
             finalPeer.expectOpen();


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org

Reply via email to