You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by rg...@apache.org on 2016/11/30 16:20:31 UTC

svn commit: r1772076 - in /qpid/java/trunk: systests/src/test/java/org/apache/qpid/test/client/message/JMSDestinationTest.java test-profiles/Java10Excludes test-profiles/Java10UninvestigatedTestsExcludes

Author: rgodfrey
Date: Wed Nov 30 16:20:31 2016
New Revision: 1772076

URL: http://svn.apache.org/viewvc?rev=1772076&view=rev
Log:
QPID-7546 : JMSDestinationTest

Modified:
    qpid/java/trunk/systests/src/test/java/org/apache/qpid/test/client/message/JMSDestinationTest.java
    qpid/java/trunk/test-profiles/Java10Excludes
    qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes

Modified: qpid/java/trunk/systests/src/test/java/org/apache/qpid/test/client/message/JMSDestinationTest.java
URL: http://svn.apache.org/viewvc/qpid/java/trunk/systests/src/test/java/org/apache/qpid/test/client/message/JMSDestinationTest.java?rev=1772076&r1=1772075&r2=1772076&view=diff
==============================================================================
--- qpid/java/trunk/systests/src/test/java/org/apache/qpid/test/client/message/JMSDestinationTest.java (original)
+++ qpid/java/trunk/systests/src/test/java/org/apache/qpid/test/client/message/JMSDestinationTest.java Wed Nov 30 16:20:31 2016
@@ -20,10 +20,8 @@
  */
 package org.apache.qpid.test.client.message;
 
-import org.apache.qpid.client.AMQDestination;
-import org.apache.qpid.client.CustomJMSXProperty;
-import org.apache.qpid.configuration.ClientProperties;
-import org.apache.qpid.test.utils.QpidBrokerTestCase;
+import java.util.concurrent.CountDownLatch;
+import java.util.concurrent.TimeUnit;
 
 import javax.jms.Connection;
 import javax.jms.Destination;
@@ -36,8 +34,10 @@ import javax.jms.Queue;
 import javax.jms.Session;
 import javax.jms.Topic;
 
-import java.util.concurrent.CountDownLatch;
-import java.util.concurrent.TimeUnit;
+import org.apache.qpid.client.AMQDestination;
+import org.apache.qpid.client.CustomJMSXProperty;
+import org.apache.qpid.configuration.ClientProperties;
+import org.apache.qpid.test.utils.QpidBrokerTestCase;
 
 /**
  * From the API Docs getJMSDestination:
@@ -71,7 +71,7 @@ public class JMSDestinationTest extends
     public void testQueue() throws Exception
     {
 
-        Queue queue = _session.createQueue(getTestQueueName());
+        Queue queue = createTestQueue(_session);
 
         MessageConsumer consumer = _session.createConsumer(queue);
 
@@ -98,7 +98,7 @@ public class JMSDestinationTest extends
     public void testTopic() throws Exception
     {
 
-        Topic topic = _session.createTopic(getTestQueueName() + "Topic");
+        Topic topic = createTopic(_connection, getTestQueueName() + "Topic");
 
         MessageConsumer consumer = _session.createConsumer(topic);
 
@@ -125,7 +125,7 @@ public class JMSDestinationTest extends
     public void testQueueAsync() throws Exception
     {
 
-        Queue queue = _session.createQueue(getTestQueueName());
+        Queue queue = createTestQueue(_session);
 
         MessageConsumer consumer = _session.createConsumer(queue);
 

Modified: qpid/java/trunk/test-profiles/Java10Excludes
URL: http://svn.apache.org/viewvc/qpid/java/trunk/test-profiles/Java10Excludes?rev=1772076&r1=1772075&r2=1772076&view=diff
==============================================================================
--- qpid/java/trunk/test-profiles/Java10Excludes (original)
+++ qpid/java/trunk/test-profiles/Java10Excludes Wed Nov 30 16:20:31 2016
@@ -148,6 +148,21 @@ org.apache.qpid.server.SupportedProtocol
 // Tests the client setting of JMSXUserId and the client options to control that
 org.apache.qpid.test.client.message.JMSXUserIDTest#*
 
+// Test of 0-x client settings around creating exchanges/queues dynamically
+org.apache.qpid.test.unit.client.DynamicQueueExchangeCreateTest#*
+
+// This test aims to establish a connection without going through SASL exchanges.  The model for 1.0 is different, and
+// this should probably be tested in a new protocol specific broker test
+org.apache.qpid.transport.ConnectionEstablishmentTest#*
+
+org.apache.qpid.test.client.message.JMSDestinationTest#testReceiveResend
+org.apache.qpid.test.client.message.JMSDestinationTest#testQueueWithBindingUrlUsingCustomExchange
+org.apache.qpid.test.client.message.JMSDestinationTest#testQueueWithBindingUrlUsingAmqDirectExchange
+org.apache.qpid.test.client.message.JMSDestinationTest#testQueueWithBindingUrlUsingDefaultExchange
+
+
+
+
 
 
 

Modified: qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes
URL: http://svn.apache.org/viewvc/qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes?rev=1772076&r1=1772075&r2=1772076&view=diff
==============================================================================
--- qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes (original)
+++ qpid/java/trunk/test-profiles/Java10UninvestigatedTestsExcludes Wed Nov 30 16:20:31 2016
@@ -26,7 +26,6 @@ org.apache.qpid.server.logging.DurableQu
 org.apache.qpid.server.logging.QueueLoggingTest#*
 org.apache.qpid.server.logging.TransientQueueLoggingTest#*
 org.apache.qpid.server.security.auth.manager.ExternalAuthenticationTest#*
-org.apache.qpid.test.unit.client.DynamicQueueExchangeCreateTest#*
 org.apache.qpid.client.prefetch.PrefetchBehaviourTest#*
 org.apache.qpid.client.redelivered.RedeliveredMessageTest#*
 org.apache.qpid.client.SynchReceiveTest#*
@@ -40,10 +39,8 @@ org.apache.qpid.test.unit.close.JavaServ
 org.apache.qpid.test.unit.client.MaxDeliveryCountTest#*
 org.apache.qpid.test.unit.client.connection.BrokerClosesClientConnectionTest#*
 org.apache.qpid.test.client.queue.LVQTest#*
-org.apache.qpid.test.client.message.JMSDestinationTest#*
 org.apache.qpid.systest.rest.ConnectionRestTest#*
 org.apache.qpid.systest.rest.MessagesRestTest#*
-org.apache.qpid.transport.ConnectionEstablishmentTest#*
 org.apache.qpid.test.unit.topic.TopicPublisherTest#*
 org.apache.qpid.systest.disttest.endtoend.EndToEndTest#*
 



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