Author: gtully
Date: Tue Mar 26 22:56:16 2013
New Revision: 1461362
URL: http://svn.apache.org/r1461362
Log:
https://issues.apache.org/jira/browse/AMQ-4408 - fix and test
Added:
activemq/trunk/activemq-unit-tests/src/test/java/org/apache/activemq/network/NetworkLoopBackTest.java
(with props)
Modified:
activemq/trunk/activemq-broker/src/main/java/org/apache/activemq/network/DemandForwardingBridgeSupport.java
Modified:
activemq/trunk/activemq-broker/src/main/java/org/apache/activemq/network/DemandForwardingBridgeSupport.java
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-broker/src/main/java/org/apache/activemq/network/DemandForwardingBridgeSupport.java?rev=1461362&r1=1461361&r2=1461362&view=diff
==============================================================================
---
activemq/trunk/activemq-broker/src/main/java/org/apache/activemq/network/DemandForwardingBridgeSupport.java
(original)
+++
activemq/trunk/activemq-broker/src/main/java/org/apache/activemq/network/DemandForwardingBridgeSupport.java
Tue Mar 26 22:56:16 2013
@@ -365,6 +365,7 @@ public abstract class DemandForwardingBr
// Before we try and build the bridge lets check if we are in a
loop
// and if so just stop now before registering anything.
+ remoteBrokerId = remoteBrokerInfo.getBrokerId();
if (localBrokerId.equals(remoteBrokerId)) {
if (LOG.isTraceEnabled()) {
LOG.trace(configuration.getBrokerName() +
@@ -373,11 +374,12 @@ public abstract class DemandForwardingBr
}
ServiceSupport.dispose(localBroker);
ServiceSupport.dispose(remoteBroker);
+ // the bridge is left in a bit of limbo, but it won't get
retried
+ // in this state.
return;
}
// Fill in the remote broker's information now.
- remoteBrokerId = remoteBrokerInfo.getBrokerId();
remoteBrokerPath[0] = remoteBrokerId;
remoteBrokerName = remoteBrokerInfo.getBrokerName();
} catch (Throwable e) {
Added:
activemq/trunk/activemq-unit-tests/src/test/java/org/apache/activemq/network/NetworkLoopBackTest.java
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-unit-tests/src/test/java/org/apache/activemq/network/NetworkLoopBackTest.java?rev=1461362&view=auto
==============================================================================
---
activemq/trunk/activemq-unit-tests/src/test/java/org/apache/activemq/network/NetworkLoopBackTest.java
(added)
+++
activemq/trunk/activemq-unit-tests/src/test/java/org/apache/activemq/network/NetworkLoopBackTest.java
Tue Mar 26 22:56:16 2013
@@ -0,0 +1,66 @@
+/**
+ * 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.network;
+
+import org.apache.activemq.util.Wait;
+import org.junit.Test;
+
+import org.apache.activemq.broker.BrokerService;
+import org.apache.activemq.broker.TransportConnector;
+
+import static junit.framework.Assert.assertEquals;
+import static junit.framework.Assert.assertTrue;
+
+public class NetworkLoopBackTest {
+ @Test
+ public void testLoopbackOnDifferentUrlScheme() throws Exception {
+ final BrokerService brokerServce = new BrokerService();
+ brokerServce.setPersistent(false);
+
+ TransportConnector transportConnector =
brokerServce.addConnector("nio://0.0.0.0:0");
+ // connection filter is bypassed when scheme is different
+ final NetworkConnector networkConnector =
brokerServce.addNetworkConnector("static:(tcp://"
+ + transportConnector.getConnectUri().getHost() + ":" +
transportConnector.getConnectUri().getPort() + ")");
+
+ brokerServce.start();
+ brokerServce.waitUntilStarted();
+
+ try {
+ Wait.waitFor(new Wait.Condition() {
+ @Override
+ public boolean isSatisified() throws Exception {
+ return 1 == networkConnector.bridges.size();
+ }
+ });
+
+ final DemandForwardingBridgeSupport loopbackBridge =
(DemandForwardingBridgeSupport)
networkConnector.bridges.elements().nextElement();
+ assertTrue("nc started", networkConnector.isStarted());
+
+ assertTrue("It should get disposed", Wait.waitFor(new
Wait.Condition() {
+ @Override
+ public boolean isSatisified() throws Exception {
+ return loopbackBridge.getRemoteBroker().isDisposed();
+ }
+ }));
+
+ assertEquals("No peer brokers", 0,
brokerServce.getBroker().getPeerBrokerInfos().length);
+
+ } finally {
+ brokerServce.stop();
+ }
+ }
+}
\ No newline at end of file
Propchange:
activemq/trunk/activemq-unit-tests/src/test/java/org/apache/activemq/network/NetworkLoopBackTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
activemq/trunk/activemq-unit-tests/src/test/java/org/apache/activemq/network/NetworkLoopBackTest.java
------------------------------------------------------------------------------
svn:keywords = Rev Date