mirror of https://github.com/apache/activemq.git
Applied patch from https://issues.apache.org/activemq/browse/AMQ-1200
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@650392 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ad2465ace8
commit
464402cd0e
|
@ -54,11 +54,13 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>jmock</groupId>
|
<groupId>jmock</groupId>
|
||||||
<artifactId>jmock</artifactId>
|
<artifactId>jmock</artifactId>
|
||||||
|
<version>1.2.0</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>jmock</groupId>
|
<groupId>jmock</groupId>
|
||||||
<artifactId>jmock-cglib</artifactId>
|
<artifactId>jmock-cglib</artifactId>
|
||||||
|
<version>1.2.0</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -26,7 +26,7 @@ public class ActiveMQEndpointActivationKey {
|
||||||
/**
|
/**
|
||||||
* For testing
|
* For testing
|
||||||
*/
|
*/
|
||||||
ActiveMQEndpointActivationKey() {
|
protected ActiveMQEndpointActivationKey() {
|
||||||
this(null, null);
|
this(null, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -159,9 +159,14 @@ public class ServerSessionImpl implements ServerSession, InboundContext, Work, D
|
||||||
while (true) {
|
while (true) {
|
||||||
log.debug("run loop start");
|
log.debug("run loop start");
|
||||||
try {
|
try {
|
||||||
|
if ( session.isRunning() ) {
|
||||||
InboundContextSupport.register(this);
|
InboundContextSupport.register(this);
|
||||||
currentBatchSize = 0;
|
currentBatchSize = 0;
|
||||||
session.run();
|
session.run();
|
||||||
|
} else {
|
||||||
|
log.debug("JMS Session is no longer running (maybe due to loss of connection?), marking ServerSesison as stale");
|
||||||
|
stale = true;
|
||||||
|
}
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
stale = true;
|
stale = true;
|
||||||
log.debug("Endpoint failed to process message.", e);
|
log.debug("Endpoint failed to process message.", e);
|
||||||
|
|
|
@ -20,7 +20,7 @@ import javax.jms.Connection;
|
||||||
import javax.resource.spi.BootstrapContext;
|
import javax.resource.spi.BootstrapContext;
|
||||||
import javax.resource.spi.endpoint.MessageEndpointFactory;
|
import javax.resource.spi.endpoint.MessageEndpointFactory;
|
||||||
|
|
||||||
import org.jmock.cglib.Mock;
|
import org.jmock.Mock;
|
||||||
import org.jmock.cglib.MockObjectTestCase;
|
import org.jmock.cglib.MockObjectTestCase;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -40,14 +40,15 @@ public class ActiveMQAsfEndpointWorkerTest extends MockObjectTestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testTopicSubscriberDurableNoDups() throws Exception {
|
public void testTopicSubscriberDurableNoDups() throws Exception {
|
||||||
|
// Constraint[] args = {isA(Topic.class),
|
||||||
/*
|
// eq(stubActivationSpec.getSubscriptionId()),
|
||||||
* Constraint[] args = {isA(Topic.class),
|
// NULL,
|
||||||
* eq(stubActivationSpec.getSubscriptionId()), NULL, ANYTHING,
|
// ANYTHING,
|
||||||
* ANYTHING}; mockConnection.expects(once())
|
// ANYTHING};
|
||||||
* .method("createDurableConnectionConsumer") .with(args)
|
// mockConnection.expects(once()).method("createDurableConnectionConsumer").with(args)
|
||||||
* .will(returnValue(null)); worker.start(); verifyMocks();
|
// .will(returnValue(null));
|
||||||
*/
|
// worker.start();
|
||||||
|
// verifyMocks();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void setUp() throws Exception {
|
protected void setUp() throws Exception {
|
||||||
|
@ -66,11 +67,11 @@ public class ActiveMQAsfEndpointWorkerTest extends MockObjectTestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setupMocks() {
|
private void setupMocks() {
|
||||||
mockResourceAdapter = new Mock(ActiveMQResourceAdapter.class);
|
mockResourceAdapter = mock(ActiveMQResourceAdapter.class);
|
||||||
mockActivationKey = new Mock(ActiveMQEndpointActivationKey.class);
|
mockActivationKey = mock(ActiveMQEndpointActivationKey.class);
|
||||||
mockEndpointFactory = new Mock(MessageEndpointFactory.class);
|
mockEndpointFactory = mock(MessageEndpointFactory.class);
|
||||||
mockBootstrapContext = new Mock(BootstrapContext.class);
|
mockBootstrapContext = mock(BootstrapContext.class);
|
||||||
// mockConnection = new Mock(Connection.class);
|
// mockConnection = mock(Connection.class);
|
||||||
|
|
||||||
mockActivationKey.expects(atLeastOnce()).method("getMessageEndpointFactory").will(returnValue((MessageEndpointFactory)mockEndpointFactory.proxy()));
|
mockActivationKey.expects(atLeastOnce()).method("getMessageEndpointFactory").will(returnValue((MessageEndpointFactory)mockEndpointFactory.proxy()));
|
||||||
|
|
||||||
|
|
|
@ -16,12 +16,74 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.activemq.ra;
|
package org.apache.activemq.ra;
|
||||||
|
|
||||||
import org.jmock.MockObjectTestCase;
|
import java.lang.reflect.Method;
|
||||||
|
import javax.jms.Message;
|
||||||
|
import javax.jms.MessageListener;
|
||||||
|
import javax.jms.Session;
|
||||||
|
import javax.resource.ResourceException;
|
||||||
|
import javax.resource.spi.endpoint.MessageEndpoint;
|
||||||
|
import javax.resource.spi.work.WorkManager;
|
||||||
|
import org.apache.activemq.ActiveMQConnection;
|
||||||
|
import org.apache.activemq.ActiveMQSession;
|
||||||
|
import org.jmock.Mock;
|
||||||
|
import org.jmock.cglib.MockObjectTestCase;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @version $Revision: 1.1.1.1 $
|
* @version $Revision: 1.1.1.1 $
|
||||||
*/
|
*/
|
||||||
public class ServerSessionImplTest extends MockObjectTestCase {
|
public class ServerSessionImplTest extends MockObjectTestCase {
|
||||||
|
private static final String BROKER_URL = "vm://localhost";
|
||||||
|
private ServerSessionImpl serverSession;
|
||||||
|
private Mock pool;
|
||||||
|
private Mock workManager;
|
||||||
|
private MessageEndpoint messageEndpoint;
|
||||||
|
private ActiveMQConnection con;
|
||||||
|
private ActiveMQSession session;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void setUp() throws Exception
|
||||||
|
{
|
||||||
|
super.setUp();
|
||||||
|
org.apache.activemq.ActiveMQConnectionFactory factory =
|
||||||
|
new org.apache.activemq.ActiveMQConnectionFactory(BROKER_URL);
|
||||||
|
con = (ActiveMQConnection) factory.createConnection();
|
||||||
|
session = (ActiveMQSession) con.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
||||||
|
pool = mock(ServerSessionPoolImpl.class, new Class[]{ActiveMQEndpointWorker.class, int.class}, new Object[]{null, 10});
|
||||||
|
workManager = mock(WorkManager.class);
|
||||||
|
messageEndpoint = new MockMessageEndpoint();
|
||||||
|
|
||||||
|
serverSession = new ServerSessionImpl(
|
||||||
|
(ServerSessionPoolImpl) pool.proxy(),
|
||||||
|
session,
|
||||||
|
(WorkManager) workManager.proxy(),
|
||||||
|
messageEndpoint,
|
||||||
|
false,
|
||||||
|
10);
|
||||||
|
}
|
||||||
|
|
||||||
|
private class MockMessageEndpoint implements MessageEndpoint, MessageListener {
|
||||||
|
|
||||||
|
public void afterDelivery() throws ResourceException
|
||||||
|
{
|
||||||
|
throw new UnsupportedOperationException("Not supported yet.");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void beforeDelivery(Method arg0) throws NoSuchMethodException, ResourceException
|
||||||
|
{
|
||||||
|
throw new UnsupportedOperationException("Not supported yet.");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void release()
|
||||||
|
{
|
||||||
|
throw new UnsupportedOperationException("Not supported yet.");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void onMessage(Message msg)
|
||||||
|
{
|
||||||
|
throw new UnsupportedOperationException("Not supported yet.");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Need to re-work this test case, it broke since the amq4 internals changed and
|
* Need to re-work this test case, it broke since the amq4 internals changed and
|
||||||
|
@ -90,4 +152,11 @@ public class ServerSessionImplTest extends MockObjectTestCase {
|
||||||
return (TransportChannel) tc.proxy();
|
return (TransportChannel) tc.proxy();
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
public void testRunDetectsStoppedSession() throws Exception {
|
||||||
|
con.close();
|
||||||
|
pool.expects(once()).method("removeFromPool").with(eq(serverSession));
|
||||||
|
serverSession.run();
|
||||||
|
pool.verify();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue