diff options
| author | Rajith Muditha Attapattu <rajith@apache.org> | 2007-09-14 20:43:16 +0000 |
|---|---|---|
| committer | Rajith Muditha Attapattu <rajith@apache.org> | 2007-09-14 20:43:16 +0000 |
| commit | 8f6c5c6124db155ebad4533d66e1d2135ab21396 (patch) | |
| tree | 817e5dab8d5d1680e1cbd1cf201cea395c7d1a89 /java/client/src/test | |
| parent | b4ae4c1493c29e38f096eb8c973d7681dff55778 (diff) | |
| download | qpid-python-8f6c5c6124db155ebad4533d66e1d2135ab21396.tar.gz | |
Took out the URL parsing logic from the AMQConnectionURL and moved in two Parser classes.
The Connection Type (0-8 or 0-10) is decided based on the URL scheme if AMQConnection is created by passing a URL.
In other cases it will be based on a jvm switch. Other constructors in AMQConnection internally constructs an 0-8 URL and call the constrcutor with a URL.
In that case it is difficult to figure out the type of connection with out additional information.
The additional information commes in the form of the following jvm arguments
SwitchCon - enables this switch
0-10 - creates an 0-10 connection and the absence of it creates an 0-8 connection
This was done to minimize any impact on the test code.
currently only one code path can be tested at a given time.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@575789 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.java | 4 |
1 files changed, 2 insertions, 2 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 e513f25e3d..7bf96b99c1 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 @@ -34,8 +34,8 @@ public class BrokerDetailsTest extends TestCase AMQBrokerDetails broker = new AMQBrokerDetails(url); - assertTrue(broker.getOption("timeout").equals("200")); - assertTrue(broker.getOption("immediatedelivery").equals("true")); + assertTrue(broker.getProperty("timeout").equals("200")); + assertTrue(broker.getProperty("immediatedelivery").equals("true")); } public void testVMBroker() throws URLSyntaxException |
