From be0311bea07610f017ba7ea9653aca4f3fb1bc0f Mon Sep 17 00:00:00 2001 From: Timothy Bish Date: Wed, 4 Jun 2014 12:19:34 -0400 Subject: [PATCH] Add a couple tests for concurrent create an unique connections being created. --- .../jms/pool/PooledConnectionFactoryTest.java | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/activemq-jms-pool/src/test/java/org/apache/activemq/jms/pool/PooledConnectionFactoryTest.java b/activemq-jms-pool/src/test/java/org/apache/activemq/jms/pool/PooledConnectionFactoryTest.java index 3c39ac41d4..873a354e35 100644 --- a/activemq-jms-pool/src/test/java/org/apache/activemq/jms/pool/PooledConnectionFactoryTest.java +++ b/activemq-jms-pool/src/test/java/org/apache/activemq/jms/pool/PooledConnectionFactoryTest.java @@ -17,6 +17,7 @@ package org.apache.activemq.jms.pool; import java.util.concurrent.Callable; +import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentLinkedQueue; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; @@ -31,7 +32,9 @@ import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; +import org.apache.activemq.ActiveMQConnection; import org.apache.activemq.ActiveMQConnectionFactory; +import org.apache.activemq.command.ConnectionId; import org.apache.activemq.util.Wait; import org.apache.log4j.Logger; @@ -193,6 +196,57 @@ public class PooledConnectionFactoryTest extends TestCase { } connections.clear(); + cf.stop(); + } + + public void testConcurrentCreateGetsUniqueConnectionCreateOnDemand() throws Exception { + doTestConcurrentCreateGetsUniqueConnection(false); + } + + public void testConcurrentCreateGetsUniqueConnectionCreateOnStart() throws Exception { + doTestConcurrentCreateGetsUniqueConnection(true); + } + + private void doTestConcurrentCreateGetsUniqueConnection(boolean createOnStart) throws Exception { + + final int numConnections = 50; + + final ActiveMQConnectionFactory amq = new ActiveMQConnectionFactory("vm://broker1?marshal=false&broker.persistent=false"); + final PooledConnectionFactory cf = new PooledConnectionFactory(); + cf.setConnectionFactory(amq); + cf.setMaxConnections(numConnections); + cf.setCreateConnectionOnStartup(createOnStart); + + final ConcurrentHashMap connections = + new ConcurrentHashMap(); + final ExecutorService executor = Executors.newFixedThreadPool(numConnections / 2); + + for (int i = 0; i < numConnections; ++i) { + executor.execute(new Runnable() { + + @Override + public void run() { + try { + PooledConnection pooled = (PooledConnection) cf.createConnection(); + ActiveMQConnection amq = (ActiveMQConnection) pooled.getConnection(); + connections.put(amq.getConnectionInfo().getConnectionId(), pooled); + } catch (JMSException e) { + } + } + }); + } + + assertTrue("Should have all unique connections", Wait.waitFor(new Wait.Condition() { + @Override + public boolean isSatisified() throws Exception { + return connections.size() == numConnections; + } + })); + + executor.shutdown(); + assertTrue(executor.awaitTermination(5, TimeUnit.SECONDS)); + connections.clear(); + cf.stop(); } /**