mirror of https://github.com/apache/activemq.git
fix test case after changes in https://issues.apache.org/jira/browse/AMQ-4237 broke the test's MBean lookup
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1428950 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e5d616da50
commit
cbee1cc147
|
@ -138,10 +138,12 @@ public class DurableSubscriberNonPersistentMessageTest extends TestCase {
|
||||||
|
|
||||||
createConsumer(interest, cleanupMsgCount);
|
createConsumer(interest, cleanupMsgCount);
|
||||||
|
|
||||||
String brokerVersion = (String) mbeanServer.getAttribute(new ObjectName("org.apache.activemq:BrokerName=localhost,Type=Broker"), "BrokerVersion");
|
String brokerVersion = (String) mbeanServer.getAttribute(new ObjectName("org.apache.activemq:brokerName=localhost,type=Broker"), "BrokerVersion");
|
||||||
|
|
||||||
LOG.info("Test run on: " + brokerVersion);
|
LOG.info("Test run on: " + brokerVersion);
|
||||||
final String theJmxObject = "org.apache.activemq:BrokerName=localhost,Type=Subscription,persistentMode=Durable,subscriptionID=MyDurableTopic,destinationType=Topic,destinationName=TEST,clientId=Jason";
|
final String theJmxObject = "org.apache.activemq:type=Broker,brokerName=localhost," +
|
||||||
|
"endpoint=Consumer,destinationType=Topic,destinationName=TEST,clientId=Jason," +
|
||||||
|
"consumerId=Durable(Jason_MyDurableTopic)";
|
||||||
|
|
||||||
assertTrue("pendingQueueSize should be zero", Wait.waitFor(new Wait.Condition() {
|
assertTrue("pendingQueueSize should be zero", Wait.waitFor(new Wait.Condition() {
|
||||||
@Override
|
@Override
|
||||||
|
@ -275,10 +277,10 @@ public class DurableSubscriberNonPersistentMessageTest extends TestCase {
|
||||||
|
|
||||||
public class Consumer {
|
public class Consumer {
|
||||||
|
|
||||||
private ConnectionFactory factory;
|
private final ConnectionFactory factory;
|
||||||
private ActiveMQConnection connection;
|
private final ActiveMQConnection connection;
|
||||||
private Session session;
|
private final Session session;
|
||||||
private MessageConsumer messageConsumer;
|
private final MessageConsumer messageConsumer;
|
||||||
|
|
||||||
public Consumer(String brokerURL, String interest, String clientId) throws JMSException {
|
public Consumer(String brokerURL, String interest, String clientId) throws JMSException {
|
||||||
factory = new ActiveMQConnectionFactory(brokerURL);
|
factory = new ActiveMQConnectionFactory(brokerURL);
|
||||||
|
|
Loading…
Reference in New Issue