Updated Branches: refs/heads/trunk fbd72d6d7 -> a165054df
Added multiple @Ignores to keep this test from hanging and blocking CI builds. AMQ-5041 Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/a165054d Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/a165054d Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/a165054d Branch: refs/heads/trunk Commit: a165054df9c354ff17856fe8e6390c09bfdf6a2d Parents: fbd72d6 Author: Kevin Earls <[email protected]> Authored: Tue Feb 11 14:39:40 2014 +0100 Committer: Kevin Earls <[email protected]> Committed: Tue Feb 11 14:39:40 2014 +0100 ---------------------------------------------------------------------- .../activemq/transport/amqp/JMSClientTest.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/a165054d/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/JMSClientTest.java ---------------------------------------------------------------------- diff --git a/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/JMSClientTest.java b/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/JMSClientTest.java index fc2bfd1..2e80e23 100644 --- a/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/JMSClientTest.java +++ b/activemq-amqp/src/test/java/org/apache/activemq/transport/amqp/JMSClientTest.java @@ -47,6 +47,8 @@ import org.apache.activemq.broker.jmx.QueueViewMBean; import org.apache.activemq.transport.amqp.joram.ActiveMQAdmin; import org.apache.activemq.util.Wait; import org.apache.qpid.amqp_1_0.jms.impl.ConnectionFactoryImpl; +import org.junit.Before; +import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TestName; @@ -56,6 +58,13 @@ public class JMSClientTest extends AmqpTestSupport { @Rule public TestName name = new TestName(); + @Override + @Before + public void setUp() throws Exception { + LOG.debug("Starting test {}", name.getMethodName()); + super.setUp(); + } + @SuppressWarnings("rawtypes") @Test public void testProducerConsume() throws Exception { @@ -86,6 +95,7 @@ public class JMSClientTest extends AmqpTestSupport { connection.close(); } + @Ignore("AMQ-5041") @Test public void testTransactedConsumer() throws Exception { ActiveMQAdmin.enableJMSFrameTracing(); @@ -117,6 +127,7 @@ public class JMSClientTest extends AmqpTestSupport { connection.close(); } + @Ignore("AMQ-5041") @Test public void testRollbackRececeivedMessage() throws Exception { @@ -161,6 +172,7 @@ public class JMSClientTest extends AmqpTestSupport { connection.close(); } + @Ignore("AMQ-5041") @Test public void testTXConsumerAndLargeNumberOfMessages() throws Exception { @@ -330,6 +342,7 @@ public class JMSClientTest extends AmqpTestSupport { } } + @Ignore("AMQ-5041") @Test(timeout=30000) public void testConsumerReceiveNoWaitThrowsWhenBrokerStops() throws Exception { @@ -362,6 +375,7 @@ public class JMSClientTest extends AmqpTestSupport { } } + @Ignore("AMQ-5041") @Test(timeout=30000) public void testConsumerReceiveTimedThrowsWhenBrokerStops() throws Exception { @@ -422,6 +436,7 @@ public class JMSClientTest extends AmqpTestSupport { } } + @Ignore("AMQ-5041") @Test(timeout=30000) public void testBrokerRestartWontHangConnectionClose() throws Exception { @@ -446,6 +461,7 @@ public class JMSClientTest extends AmqpTestSupport { } } + @Ignore("AMQ-5041") @Test(timeout=120000) public void testProduceAndConsumeLargeNumbersOfMessages() throws JMSException { @@ -660,6 +676,7 @@ public class JMSClientTest extends AmqpTestSupport { })); } + @Ignore("AMQ-5041") @Test(timeout=30000) public void testExecptionListenerCalledOnBrokerStop() throws Exception { ActiveMQAdmin.enableJMSFrameTracing(); @@ -695,6 +712,7 @@ public class JMSClientTest extends AmqpTestSupport { assertTrue("No exception listener event fired.", called.await(15, TimeUnit.SECONDS)); } + @Ignore("AMQ-5041") @Test(timeout=30000) public void testSessionTransactedCommit() throws JMSException, InterruptedException { ActiveMQAdmin.enableJMSFrameTracing();
