mirror of https://github.com/apache/activemq.git
Add fix and test for: https://issues.apache.org/jira/browse/AMQ-3674
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1235341 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7b90f4178f
commit
eec1091c45
|
@ -172,12 +172,14 @@ public class TopicRegion extends AbstractRegion {
|
||||||
@Override
|
@Override
|
||||||
public void removeSubscription(ConnectionContext context, RemoveSubscriptionInfo info) throws Exception {
|
public void removeSubscription(ConnectionContext context, RemoveSubscriptionInfo info) throws Exception {
|
||||||
SubscriptionKey key = new SubscriptionKey(info.getClientId(), info.getSubscriptionName());
|
SubscriptionKey key = new SubscriptionKey(info.getClientId(), info.getSubscriptionName());
|
||||||
DurableTopicSubscription sub = durableSubscriptions.remove(key);
|
DurableTopicSubscription sub = durableSubscriptions.get(key);
|
||||||
if (sub == null) {
|
if (sub == null) {
|
||||||
throw new InvalidDestinationException("No durable subscription exists for: " + info.getSubscriptionName());
|
throw new InvalidDestinationException("No durable subscription exists for: " + info.getSubscriptionName());
|
||||||
}
|
}
|
||||||
if (sub.isActive()) {
|
if (sub.isActive()) {
|
||||||
throw new JMSException("Durable consumer is in use");
|
throw new JMSException("Durable consumer is in use");
|
||||||
|
} else {
|
||||||
|
durableSubscriptions.get(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
destinationsLock.readLock().lock();
|
destinationsLock.readLock().lock();
|
||||||
|
|
|
@ -0,0 +1,121 @@
|
||||||
|
/**
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright ownership.
|
||||||
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||||
|
* (the "License"); you may not use this file except in compliance with
|
||||||
|
* the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.apache.activemq.bugs;
|
||||||
|
|
||||||
|
import static org.junit.Assert.*;
|
||||||
|
|
||||||
|
import javax.jms.Connection;
|
||||||
|
import javax.jms.DeliveryMode;
|
||||||
|
import javax.jms.MessageProducer;
|
||||||
|
import javax.jms.Session;
|
||||||
|
import javax.jms.TopicSubscriber;
|
||||||
|
import javax.management.ObjectName;
|
||||||
|
|
||||||
|
import org.apache.activemq.ActiveMQConnectionFactory;
|
||||||
|
import org.apache.activemq.broker.BrokerService;
|
||||||
|
import org.apache.activemq.broker.TransportConnector;
|
||||||
|
import org.apache.activemq.broker.jmx.BrokerView;
|
||||||
|
import org.apache.activemq.command.ActiveMQTopic;
|
||||||
|
import org.apache.activemq.util.Wait;
|
||||||
|
import org.junit.After;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
public class AMQ3674Test {
|
||||||
|
|
||||||
|
private static Logger LOG = LoggerFactory.getLogger(AMQ3674Test.class);
|
||||||
|
|
||||||
|
private final static int deliveryMode = DeliveryMode.NON_PERSISTENT;
|
||||||
|
private final static ActiveMQTopic destination = new ActiveMQTopic("XYZ");
|
||||||
|
|
||||||
|
private ActiveMQConnectionFactory factory;
|
||||||
|
private BrokerService broker;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void removeSubscription() throws Exception {
|
||||||
|
|
||||||
|
final Connection producerConnection = factory.createConnection();
|
||||||
|
producerConnection.start();
|
||||||
|
final Connection consumerConnection = factory.createConnection();
|
||||||
|
|
||||||
|
consumerConnection.setClientID("subscriber1");
|
||||||
|
Session consumerMQSession = consumerConnection.createSession(false, Session.CLIENT_ACKNOWLEDGE);
|
||||||
|
TopicSubscriber activeConsumer = (TopicSubscriber) consumerMQSession.createDurableSubscriber(destination, "myTopic");
|
||||||
|
consumerConnection.start();
|
||||||
|
|
||||||
|
Session session = producerConnection.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
||||||
|
MessageProducer producer = session.createProducer(destination);
|
||||||
|
producer.setDeliveryMode(deliveryMode);
|
||||||
|
|
||||||
|
final BrokerView brokerView = broker.getAdminView();
|
||||||
|
|
||||||
|
assertEquals(1, brokerView.getDurableTopicSubscribers().length);
|
||||||
|
|
||||||
|
LOG.info("Current Durable Topic Subscriptions: " + brokerView.getDurableTopicSubscribers().length);
|
||||||
|
|
||||||
|
try {
|
||||||
|
brokerView.destroyDurableSubscriber("subscriber1", "myTopic");
|
||||||
|
fail("Expected Exception for Durable consumer is in use");
|
||||||
|
} catch(Exception e) {
|
||||||
|
LOG.info("Recieved expected exception: " + e.getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
LOG.info("Current Durable Topic Subscriptions: " + brokerView.getDurableTopicSubscribers().length);
|
||||||
|
|
||||||
|
assertEquals(1, brokerView.getDurableTopicSubscribers().length);
|
||||||
|
|
||||||
|
activeConsumer.close();
|
||||||
|
consumerConnection.stop();
|
||||||
|
|
||||||
|
assertTrue("The subscription should be in the inactive state.", Wait.waitFor(new Wait.Condition() {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isSatisified() throws Exception {
|
||||||
|
return brokerView.getInactiveDurableTopicSubscribers().length == 1;
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
|
||||||
|
try {
|
||||||
|
brokerView.destroyDurableSubscriber("subscriber1", "myTopic");
|
||||||
|
} finally {
|
||||||
|
producer.close();
|
||||||
|
producerConnection.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setUp() throws Exception {
|
||||||
|
broker = new BrokerService();
|
||||||
|
broker.setPersistent(false);
|
||||||
|
broker.setUseJmx(true);
|
||||||
|
broker.setDeleteAllMessagesOnStartup(true);
|
||||||
|
TransportConnector connector = broker.addConnector("tcp://localhost:0");
|
||||||
|
broker.start();
|
||||||
|
|
||||||
|
factory = new ActiveMQConnectionFactory(connector.getPublishableConnectString());
|
||||||
|
factory.setAlwaysSyncSend(true);
|
||||||
|
factory.setDispatchAsync(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@After
|
||||||
|
public void tearDown() throws Exception {
|
||||||
|
broker.stop();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue