mirror of https://github.com/apache/activemq.git
test case that shows something is wrong with start logic on pooled connection factory, the vm test variant was getting serialized on the broker vm transport server
This commit is contained in:
parent
27b3a7c344
commit
736ffc9b96
|
@ -34,9 +34,11 @@ import junit.framework.TestSuite;
|
||||||
|
|
||||||
import org.apache.activemq.ActiveMQConnection;
|
import org.apache.activemq.ActiveMQConnection;
|
||||||
import org.apache.activemq.ActiveMQConnectionFactory;
|
import org.apache.activemq.ActiveMQConnectionFactory;
|
||||||
|
import org.apache.activemq.broker.BrokerService;
|
||||||
import org.apache.activemq.command.ConnectionId;
|
import org.apache.activemq.command.ConnectionId;
|
||||||
import org.apache.activemq.util.Wait;
|
import org.apache.activemq.util.Wait;
|
||||||
import org.apache.log4j.Logger;
|
import org.apache.log4j.Logger;
|
||||||
|
import org.junit.Ignore;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks the behavior of the PooledConnectionFactory when the maximum amount of
|
* Checks the behavior of the PooledConnectionFactory when the maximum amount of
|
||||||
|
@ -203,23 +205,31 @@ public class PooledConnectionFactoryTest extends TestCase {
|
||||||
doTestConcurrentCreateGetsUniqueConnection(false);
|
doTestConcurrentCreateGetsUniqueConnection(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("something up - don't know why the start call to createConnection does not cause close - but that does not fix it either!")
|
||||||
public void testConcurrentCreateGetsUniqueConnectionCreateOnStart() throws Exception {
|
public void testConcurrentCreateGetsUniqueConnectionCreateOnStart() throws Exception {
|
||||||
doTestConcurrentCreateGetsUniqueConnection(true);
|
doTestConcurrentCreateGetsUniqueConnection(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void doTestConcurrentCreateGetsUniqueConnection(boolean createOnStart) throws Exception {
|
private void doTestConcurrentCreateGetsUniqueConnection(boolean createOnStart) throws Exception {
|
||||||
|
|
||||||
final int numConnections = 50;
|
BrokerService brokerService = new BrokerService();
|
||||||
|
brokerService.setPersistent(false);
|
||||||
|
brokerService.addConnector("tcp://localhost:0");
|
||||||
|
brokerService.start();
|
||||||
|
|
||||||
final ActiveMQConnectionFactory amq = new ActiveMQConnectionFactory("vm://broker1?marshal=false&broker.persistent=false");
|
try {
|
||||||
|
final int numConnections = 2;
|
||||||
|
|
||||||
|
final ActiveMQConnectionFactory amq = new ActiveMQConnectionFactory(brokerService.getTransportConnectors().get(0).getPublishableConnectString());
|
||||||
final PooledConnectionFactory cf = new PooledConnectionFactory();
|
final PooledConnectionFactory cf = new PooledConnectionFactory();
|
||||||
cf.setConnectionFactory(amq);
|
cf.setConnectionFactory(amq);
|
||||||
cf.setMaxConnections(numConnections);
|
cf.setMaxConnections(numConnections);
|
||||||
cf.setCreateConnectionOnStartup(createOnStart);
|
cf.setCreateConnectionOnStartup(createOnStart);
|
||||||
|
cf.start();
|
||||||
|
|
||||||
final ConcurrentHashMap<ConnectionId, Connection> connections =
|
final ConcurrentHashMap<ConnectionId, Connection> connections =
|
||||||
new ConcurrentHashMap<ConnectionId, Connection>();
|
new ConcurrentHashMap<ConnectionId, Connection>();
|
||||||
final ExecutorService executor = Executors.newFixedThreadPool(numConnections / 2);
|
final ExecutorService executor = Executors.newFixedThreadPool(numConnections);
|
||||||
|
|
||||||
for (int i = 0; i < numConnections; ++i) {
|
for (int i = 0; i < numConnections; ++i) {
|
||||||
executor.execute(new Runnable() {
|
executor.execute(new Runnable() {
|
||||||
|
@ -236,17 +246,17 @@ public class PooledConnectionFactoryTest extends TestCase {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
assertTrue("Should have all unique connections", Wait.waitFor(new Wait.Condition() {
|
|
||||||
@Override
|
|
||||||
public boolean isSatisified() throws Exception {
|
|
||||||
return connections.size() == numConnections;
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
|
|
||||||
executor.shutdown();
|
executor.shutdown();
|
||||||
assertTrue(executor.awaitTermination(5, TimeUnit.SECONDS));
|
assertTrue(executor.awaitTermination(5, TimeUnit.SECONDS));
|
||||||
|
|
||||||
|
assertEquals("Should have all unique connections", numConnections, connections.size());
|
||||||
|
|
||||||
connections.clear();
|
connections.clear();
|
||||||
cf.stop();
|
cf.stop();
|
||||||
|
|
||||||
|
} finally {
|
||||||
|
brokerService.stop();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue