mirror of https://github.com/apache/activemq.git
fix potential NPE git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1490311 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c161033abb
commit
bfed9df3b7
|
@ -72,7 +72,6 @@ public class AmqpTransformerTest {
|
|||
amqpSession.close();
|
||||
amqpConnection.close();
|
||||
|
||||
|
||||
// receive with openwire JMS
|
||||
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("tcp://0.0.0.0:" + openwirePort);
|
||||
Connection openwireConn = factory.createConnection();
|
||||
|
@ -95,10 +94,9 @@ public class AmqpTransformerTest {
|
|||
c.close();
|
||||
session.close();
|
||||
openwireConn.close();
|
||||
|
||||
}
|
||||
|
||||
@Test(timeout=30000)
|
||||
@Test(timeout = 30000)
|
||||
public void testRawTransformation() throws Exception {
|
||||
|
||||
// default is native
|
||||
|
@ -120,7 +118,6 @@ public class AmqpTransformerTest {
|
|||
amqpSession.close();
|
||||
amqpConnection.close();
|
||||
|
||||
|
||||
// receive with openwire JMS
|
||||
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("tcp://0.0.0.0:" + openwirePort);
|
||||
Connection openwireConn = factory.createConnection();
|
||||
|
@ -139,15 +136,13 @@ public class AmqpTransformerTest {
|
|||
assertTrue("Didn't use the correct transformation, expected NATIVE", nativeTransformationUsed);
|
||||
assertEquals(2, message.getJMSDeliveryMode());
|
||||
|
||||
// should not equal 7 (should equal the default) because "raw" does not map
|
||||
// should not equal 7 (should equal the default) because "raw" does not map
|
||||
// headers
|
||||
assertEquals(4, message.getJMSPriority());
|
||||
|
||||
|
||||
c.close();
|
||||
session.close();
|
||||
openwireConn.close();
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
|
@ -171,7 +166,6 @@ public class AmqpTransformerTest {
|
|||
amqpSession.close();
|
||||
amqpConnection.close();
|
||||
|
||||
|
||||
// receive with openwire JMS
|
||||
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("tcp://0.0.0.0:" + openwirePort);
|
||||
Connection openwireConn = factory.createConnection();
|
||||
|
@ -193,7 +187,6 @@ public class AmqpTransformerTest {
|
|||
c.close();
|
||||
session.close();
|
||||
openwireConn.close();
|
||||
|
||||
}
|
||||
|
||||
public Connection createAmqpConnection() throws JMSException {
|
||||
|
@ -209,14 +202,13 @@ public class AmqpTransformerTest {
|
|||
return connection;
|
||||
}
|
||||
|
||||
|
||||
public void startBrokerWithAmqpTransport(String amqpUrl) throws Exception {
|
||||
brokerService = new BrokerService();
|
||||
brokerService.setPersistent(false);
|
||||
brokerService.setAdvisorySupport(false);
|
||||
brokerService.setDeleteAllMessagesOnStartup(true);
|
||||
|
||||
TransportConnector connector = brokerService.addConnector(amqpUrl);
|
||||
TransportConnector connector = brokerService.addConnector(amqpUrl);
|
||||
amqpPort = connector.getConnectUri().getPort();
|
||||
connector = brokerService.addConnector("tcp://0.0.0.0:0");
|
||||
openwirePort = connector.getConnectUri().getPort();
|
||||
|
|
Loading…
Reference in New Issue