/** * 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.bugs; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import javax.jms.BytesMessage; import javax.jms.Connection; import javax.jms.Destination; import javax.jms.Message; import javax.jms.MessageConsumer; import javax.jms.MessageProducer; import javax.jms.Session; import javax.jms.StreamMessage; import org.apache.activemq.ActiveMQConnection; import org.apache.activemq.ActiveMQConnectionFactory; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TestName; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class AMQ4887Test { private static final transient Logger LOG = LoggerFactory.getLogger(AMQ4887Test.class); private static final Integer ITERATIONS = 10; @Rule public TestName name = new TestName(); @Test public void testBytesMessageSetPropertyBeforeCopy() throws Exception { ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("vm://localhost"); ActiveMQConnection connection = (ActiveMQConnection) connectionFactory.createConnection(); connection.start(); doTestBytesMessageSetPropertyBeforeCopy(connection); } @Test public void testBytesMessageSetPropertyBeforeCopyCompressed() throws Exception { ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("vm://localhost"); connectionFactory.setUseCompression(true); ActiveMQConnection connection = (ActiveMQConnection) connectionFactory.createConnection(); connection.start(); doTestBytesMessageSetPropertyBeforeCopy(connection); } public void doTestBytesMessageSetPropertyBeforeCopy(Connection connection) throws Exception { Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); Destination destination = session.createQueue(name.toString()); MessageConsumer consumer = session.createConsumer(destination); MessageProducer producer = session.createProducer(destination); BytesMessage message = session.createBytesMessage(); for (int i=0; i < ITERATIONS; i++) { long sendTime = System.currentTimeMillis(); message.setLongProperty("sendTime", sendTime); producer.send(message); LOG.debug("Receiving message " + i); Message receivedMessage = consumer.receive(5000); assertNotNull("On message " + i, receivedMessage); assertTrue("On message " + i, receivedMessage instanceof BytesMessage); BytesMessage receivedBytesMessage = (BytesMessage) receivedMessage; int numElements = 0; try { while (true) { receivedBytesMessage.readBoolean(); numElements++; } } catch (Exception ex) { } LOG.info("Iteration [{}]: Received Message contained {} boolean values.", i, numElements); assertEquals(i, numElements); long receivedSendTime = receivedBytesMessage.getLongProperty("sendTime"); assertEquals("On message " + i, receivedSendTime, sendTime); // Add a new bool value on each iteration. message.writeBoolean(true); } } @Test public void testStreamMessageSetPropertyBeforeCopy() throws Exception { ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("vm://localhost"); ActiveMQConnection connection = (ActiveMQConnection) connectionFactory.createConnection(); connection.start(); doTestStreamMessageSetPropertyBeforeCopy(connection); } @Test public void testStreamMessageSetPropertyBeforeCopyCompressed() throws Exception { ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("vm://localhost"); connectionFactory.setUseCompression(true); ActiveMQConnection connection = (ActiveMQConnection) connectionFactory.createConnection(); connection.start(); doTestStreamMessageSetPropertyBeforeCopy(connection); } public void doTestStreamMessageSetPropertyBeforeCopy(Connection connection) throws Exception { Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); Destination destination = session.createQueue(name.toString()); MessageConsumer consumer = session.createConsumer(destination); MessageProducer producer = session.createProducer(destination); StreamMessage message = session.createStreamMessage(); for (int i=0; i < ITERATIONS; i++) { long sendTime = System.currentTimeMillis(); message.setLongProperty("sendTime", sendTime); producer.send(message); LOG.debug("Receiving message " + i); Message receivedMessage = consumer.receive(5000); assertNotNull("On message " + i, receivedMessage); assertTrue("On message " + i, receivedMessage instanceof StreamMessage); StreamMessage receivedStreamMessage = (StreamMessage) receivedMessage; int numElements = 0; try { while (true) { receivedStreamMessage.readBoolean(); numElements++; } } catch (Exception ex) { } LOG.info("Iteration [{}]: Received Message contained {} boolean values.", i, numElements); assertEquals(i, numElements); long receivedSendTime = receivedStreamMessage.getLongProperty("sendTime"); assertEquals("On message " + i, receivedSendTime, sendTime); // Add a new bool value on each iteration. message.writeBoolean(true); } } }