summaryrefslogtreecommitdiff
path: root/java/client/src/test
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2008-10-23 18:55:08 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2008-10-23 18:55:08 +0000
commit99c1552947bea5118b09c5034f6788cc93e2feca (patch)
tree5ea53bd8425e8daf90037bca6a3e7edf32d91ece /java/client/src/test
parent406f8bbabfa3b89480213d1744b940772b39673b (diff)
downloadqpid-python-99c1552947bea5118b09c5034f6788cc93e2feca.tar.gz
This is related to QPID-1319
Agree with Aidan that SSL should only be a broker level option. I have removed the code that copied the top level ssl value to the broker options. I will also correct the examples on the qpid wiki page git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@707443 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/src/test')
-rw-r--r--java/client/src/test/java/org/apache/qpid/test/unit/client/BrokerDetails/BrokerDetailsTest.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/java/client/src/test/java/org/apache/qpid/test/unit/client/BrokerDetails/BrokerDetailsTest.java b/java/client/src/test/java/org/apache/qpid/test/unit/client/BrokerDetails/BrokerDetailsTest.java
index c3175317e6..1b27ff6300 100644
--- a/java/client/src/test/java/org/apache/qpid/test/unit/client/BrokerDetails/BrokerDetailsTest.java
+++ b/java/client/src/test/java/org/apache/qpid/test/unit/client/BrokerDetails/BrokerDetailsTest.java
@@ -91,17 +91,6 @@ public class BrokerDetailsTest extends TestCase
}
}
-
- public void testBrokerDefaultsToTopLevelOptions() throws URLSyntaxException
- {
- String url = "amqp://guest:guest@clientid/test?ssl='false'&brokerlist='tcp://localhost:5672?ssl='true';tcp://myhost:5672'";
- ConnectionURL connectionurl = new AMQConnectionURL(url);
- BrokerDetails bd1 = connectionurl.getBrokerDetails(0);
- BrokerDetails bd2 = connectionurl.getBrokerDetails(1);
-
- assertTrue("Broker option should override the top level option",bd1.useSSL());
- assertFalse("Broker options should default to the top level options",bd2.useSSL());
- }
public static junit.framework.Test suite()
{