[ARTEMIS-1448] Fix Core to JMS conversion
priority is stored as a byte in the ICoreMessage's map. It is stored then in a int when it is converted to JMS (as JMSPriority header is an Integer). JIRA: https://issues.apache.org/jira/browse/ARTEMIS-1448
This commit is contained in:
parent
49e4f0941b
commit
1bb710cd93
|
@ -82,7 +82,7 @@ public interface ICoreMessage extends Message {
|
|||
map.put("durable", isDurable());
|
||||
map.put("expiration", getExpiration());
|
||||
map.put("timestamp", getTimestamp());
|
||||
map.put("priority", (int)getPriority());
|
||||
map.put("priority", getPriority());
|
||||
|
||||
return map;
|
||||
}
|
||||
|
|
|
@ -69,7 +69,7 @@ public class ActiveMQMessage implements javax.jms.Message {
|
|||
Map<String, Object> jmsMessage = new HashMap<>();
|
||||
|
||||
String deliveryMode = (Boolean) coreMessage.get("durable") ? "PERSISTENT" : "NON_PERSISTENT";
|
||||
byte priority = (Byte) coreMessage.get("priority");
|
||||
int priority = (Byte) coreMessage.get("priority");
|
||||
long timestamp = (Long) coreMessage.get("timestamp");
|
||||
long expiration = (Long) coreMessage.get("expiration");
|
||||
|
||||
|
|
|
@ -0,0 +1,46 @@
|
|||
/*
|
||||
* 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.artemis.jms.client;
|
||||
|
||||
import org.apache.activemq.artemis.api.core.ICoreMessage;
|
||||
import org.apache.activemq.artemis.core.client.impl.ClientMessageImpl;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
/**
|
||||
* Test conversion from Core message to JMS message.
|
||||
*/
|
||||
public class ConversionTest {
|
||||
|
||||
@Test
|
||||
public void testCoreToJMSConversion() {
|
||||
ICoreMessage clientMessage = new ClientMessageImpl();
|
||||
clientMessage.setDurable(true)
|
||||
.setPriority((byte) 9)
|
||||
.setExpiration(123456);
|
||||
Map<String, Object> messageMap = clientMessage.toMap();
|
||||
Map<String, Object> jmsMap = ActiveMQMessage.coreMaptoJMSMap(messageMap);
|
||||
|
||||
Object priority = jmsMap.get("JMSPriority");
|
||||
assertTrue(priority instanceof Integer);
|
||||
assertEquals(9, priority);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue