fix up tests to account for change in port handling
Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/8e3f1bd5 Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/8e3f1bd5 Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/8e3f1bd5 Branch: refs/heads/master Commit: 8e3f1bd50a53fccec69d78196b784b5e51da4a7b Parents: 082df05 Author: Robert Gemmell <[email protected]> Authored: Wed Jan 7 16:44:09 2015 +0000 Committer: Robert Gemmell <[email protected]> Committed: Wed Jan 7 16:44:09 2015 +0000 ---------------------------------------------------------------------- .../apache/qpid/jms/integration/SessionIntegrationTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/8e3f1bd5/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/SessionIntegrationTest.java ---------------------------------------------------------------------- diff --git a/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/SessionIntegrationTest.java b/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/SessionIntegrationTest.java index 2d96c74..ed25300 100644 --- a/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/SessionIntegrationTest.java +++ b/qpid-jms-client/src/test/java/org/apache/qpid/jms/integration/SessionIntegrationTest.java @@ -216,7 +216,7 @@ public class SessionIntegrationTest extends QpidJmsTestCase { } private void doCreateConsumerSourceContainsCapabilityTestImpl(Class<? extends Destination> destType) throws JMSException, Exception, IOException { - try (TestAmqpPeer testPeer = new TestAmqpPeer(IntegrationTestFixture.PORT);) { + try (TestAmqpPeer testPeer = new TestAmqpPeer(testFixture.getAvailablePort());) { Connection connection = testFixture.establishConnecton(testPeer); testPeer.expectBegin(true); @@ -277,7 +277,7 @@ public class SessionIntegrationTest extends QpidJmsTestCase { } private void doCreateProducerTargetContainsCapabilityTestImpl(Class<? extends Destination> destType) throws JMSException, Exception, IOException { - try (TestAmqpPeer testPeer = new TestAmqpPeer(IntegrationTestFixture.PORT);) { + try (TestAmqpPeer testPeer = new TestAmqpPeer(testFixture.getAvailablePort());) { Connection connection = testFixture.establishConnecton(testPeer); testPeer.expectBegin(true); @@ -316,7 +316,7 @@ public class SessionIntegrationTest extends QpidJmsTestCase { @Test(timeout = 5000) public void testCreateAnonymousProducerTargetContainsNoTypeCapabilityWhenAnonymousRelayNodeIsSupported() throws Exception { - try (TestAmqpPeer testPeer = new TestAmqpPeer(IntegrationTestFixture.PORT);) { + try (TestAmqpPeer testPeer = new TestAmqpPeer(testFixture.getAvailablePort());) { //Add capability to indicate support for ANONYMOUS-RELAY Symbol[] serverCapabilities = new Symbol[]{AmqpConnectionProperties.ANONYMOUS_RELAY}; @@ -365,7 +365,7 @@ public class SessionIntegrationTest extends QpidJmsTestCase { } private void doCreateAnonymousProducerTargetContainsCapabilityWhenAnonymousRelayNodeIsNotSupportedTestImpl(Class<? extends Destination> destType) throws Exception { - try (TestAmqpPeer testPeer = new TestAmqpPeer(IntegrationTestFixture.PORT);) { + try (TestAmqpPeer testPeer = new TestAmqpPeer(testFixture.getAvailablePort());) { //DO NOT add capability to indicate server support for ANONYMOUS-RELAY --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
