mirror of https://github.com/apache/activemq.git
apply patch for: https://issues.apache.org/jira/browse/AMQ-3896
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1352984 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bd31548920
commit
11497e9e98
|
@ -16,6 +16,13 @@
|
|||
*/
|
||||
package org.apache.activemq.bugs;
|
||||
|
||||
import static org.junit.Assert.fail;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
|
||||
import org.apache.activemq.broker.BrokerService;
|
||||
import org.apache.activemq.broker.region.policy.FilePendingSubscriberMessageStoragePolicy;
|
||||
import org.apache.activemq.broker.region.policy.LastImageSubscriptionRecoveryPolicy;
|
||||
|
@ -31,15 +38,8 @@ import org.junit.After;
|
|||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
|
||||
import static org.junit.Assert.fail;
|
||||
|
||||
public class AMQ3622Test {
|
||||
|
||||
|
||||
protected BrokerService broker;
|
||||
protected AtomicBoolean failed = new AtomicBoolean(false);
|
||||
protected String connectionUri;
|
||||
|
@ -72,7 +72,7 @@ public class AMQ3622Test {
|
|||
policy.setSubscriptionRecoveryPolicy(new LastImageSubscriptionRecoveryPolicy());
|
||||
policy.setExpireMessagesPeriod(500);
|
||||
List<PolicyEntry> entries = new ArrayList<PolicyEntry>();
|
||||
|
||||
|
||||
entries.add(policy);
|
||||
PolicyMap pMap = new PolicyMap();
|
||||
pMap.setPolicyEntries(entries);
|
||||
|
@ -90,16 +90,17 @@ public class AMQ3622Test {
|
|||
broker.waitUntilStopped();
|
||||
Logger.getRootLogger().removeAppender(appender);
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void go() throws Exception {
|
||||
StompConnection connection = new StompConnection();
|
||||
connection.open("localhost", Integer.parseInt(connectionUri.replace("stomp://localhost:", "")));
|
||||
Integer port = Integer.parseInt(connectionUri.split(":")[2]);
|
||||
connection.open("localhost", port);
|
||||
connection.connect("", "");
|
||||
connection.subscribe("/topic/foobar", Stomp.Headers.Subscribe.AckModeValues.CLIENT);
|
||||
connection.disconnect();
|
||||
Thread.sleep(1000);
|
||||
|
||||
|
||||
if (failed.get()) {
|
||||
fail("Received NullPointerException");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue