Search in sources :

Example 1 with AmqpListToListConverter

use of org.apache.qpid.server.protocol.v0_10.transport.mimecontentconverter.AmqpListToListConverter in project qpid-broker-j by apache.

the class MessageConverter_1_0_to_v0_10Test method testAmqpSequenceWithMap.

public void testAmqpSequenceWithMap() throws Exception {
    final List<Object> originalList = Collections.singletonList(Collections.singletonMap("testKey", "testValue"));
    final AmqpSequence amqpSequence = new AmqpSequence(originalList);
    Message_1_0 sourceMessage = createTestMessage(amqpSequence.createEncodingRetainingSection());
    final MessageTransferMessage convertedMessage = _converter.convert(sourceMessage, mock(NamedAddressSpace.class));
    assertEquals("Unexpected mime type", "amqp/list", convertedMessage.getMessageHeader().getMimeType());
    final QpidByteBuffer content = convertedMessage.getContent(0, (int) convertedMessage.getSize());
    List<Object> convertedList = new AmqpListToListConverter().toObject(getBytes(content));
    assertEquals("Unexpected size", originalList.size(), convertedList.size());
    assertEquals("Unexpected map item", new HashMap<String, Object>((Map) originalList.get(0)), new HashMap<String, Object>((Map) convertedList.get(0)));
}
Also used : MessageTransferMessage(org.apache.qpid.server.protocol.v0_10.MessageTransferMessage) NamedAddressSpace(org.apache.qpid.server.model.NamedAddressSpace) Message_1_0(org.apache.qpid.server.protocol.v1_0.Message_1_0) QpidByteBuffer(org.apache.qpid.server.bytebuffer.QpidByteBuffer) AmqpListToListConverter(org.apache.qpid.server.protocol.v0_10.transport.mimecontentconverter.AmqpListToListConverter) AmqpSequence(org.apache.qpid.server.protocol.v1_0.type.messaging.AmqpSequence) HashMap(java.util.HashMap) JmsMapMessageToMap(org.apache.qpid.server.typedmessage.mimecontentconverter.JmsMapMessageToMap) LinkedHashMap(java.util.LinkedHashMap) Map(java.util.Map)

Example 2 with AmqpListToListConverter

use of org.apache.qpid.server.protocol.v0_10.transport.mimecontentconverter.AmqpListToListConverter in project qpid-broker-j by apache.

the class MessageConverter_1_0_to_v0_8Test method testAmqpValueWithListContainingMap.

public void testAmqpValueWithListContainingMap() throws Exception {
    final List<Object> originalList = Collections.singletonList(Collections.singletonMap("testKey", "testValue"));
    final AmqpValue amqpValue = new AmqpValue(originalList);
    Message_1_0 sourceMessage = createTestMessage(amqpValue.createEncodingRetainingSection());
    final AMQMessage convertedMessage = _converter.convert(sourceMessage, mock(NamedAddressSpace.class));
    assertEquals("Unexpected mime type", "amqp/list", convertedMessage.getMessageHeader().getMimeType());
    final QpidByteBuffer content = convertedMessage.getContent(0, (int) convertedMessage.getSize());
    List<Object> convertedList = new AmqpListToListConverter().toObject(getBytes(content));
    assertEquals("Unexpected size", originalList.size(), convertedList.size());
    assertEquals("Unexpected map item", new HashMap<String, Object>((Map) originalList.get(0)), new HashMap<String, Object>((Map) convertedList.get(0)));
}
Also used : NamedAddressSpace(org.apache.qpid.server.model.NamedAddressSpace) Message_1_0(org.apache.qpid.server.protocol.v1_0.Message_1_0) QpidByteBuffer(org.apache.qpid.server.bytebuffer.QpidByteBuffer) AmqpListToListConverter(org.apache.qpid.server.protocol.v0_10.transport.mimecontentconverter.AmqpListToListConverter) HashMap(java.util.HashMap) JmsMapMessageToMap(org.apache.qpid.server.typedmessage.mimecontentconverter.JmsMapMessageToMap) LinkedHashMap(java.util.LinkedHashMap) Map(java.util.Map) AmqpValue(org.apache.qpid.server.protocol.v1_0.type.messaging.AmqpValue) AMQMessage(org.apache.qpid.server.protocol.v0_8.AMQMessage)

Example 3 with AmqpListToListConverter

use of org.apache.qpid.server.protocol.v0_10.transport.mimecontentconverter.AmqpListToListConverter in project qpid-broker-j by apache.

the class MessageConverter_1_0_to_v0_10Test method testAmqpValueWithListContainingMap.

public void testAmqpValueWithListContainingMap() throws Exception {
    final List<Object> originalList = Collections.singletonList(Collections.singletonMap("testKey", "testValue"));
    final AmqpValue amqpValue = new AmqpValue(originalList);
    Message_1_0 sourceMessage = createTestMessage(amqpValue.createEncodingRetainingSection());
    final MessageTransferMessage convertedMessage = _converter.convert(sourceMessage, mock(NamedAddressSpace.class));
    assertEquals("Unexpected mime type", "amqp/list", convertedMessage.getMessageHeader().getMimeType());
    final QpidByteBuffer content = convertedMessage.getContent(0, (int) convertedMessage.getSize());
    List<Object> convertedList = new AmqpListToListConverter().toObject(getBytes(content));
    assertEquals("Unexpected size", originalList.size(), convertedList.size());
    assertEquals("Unexpected map item", new HashMap<String, Object>((Map) originalList.get(0)), new HashMap<String, Object>((Map) convertedList.get(0)));
}
Also used : MessageTransferMessage(org.apache.qpid.server.protocol.v0_10.MessageTransferMessage) NamedAddressSpace(org.apache.qpid.server.model.NamedAddressSpace) Message_1_0(org.apache.qpid.server.protocol.v1_0.Message_1_0) QpidByteBuffer(org.apache.qpid.server.bytebuffer.QpidByteBuffer) AmqpListToListConverter(org.apache.qpid.server.protocol.v0_10.transport.mimecontentconverter.AmqpListToListConverter) HashMap(java.util.HashMap) JmsMapMessageToMap(org.apache.qpid.server.typedmessage.mimecontentconverter.JmsMapMessageToMap) LinkedHashMap(java.util.LinkedHashMap) Map(java.util.Map) AmqpValue(org.apache.qpid.server.protocol.v1_0.type.messaging.AmqpValue)

Example 4 with AmqpListToListConverter

use of org.apache.qpid.server.protocol.v0_10.transport.mimecontentconverter.AmqpListToListConverter in project qpid-broker-j by apache.

the class MessageConverter_1_0_to_v0_8Test method testAmqpSequenceWithMap.

public void testAmqpSequenceWithMap() throws Exception {
    final List<Object> originalList = Collections.singletonList(Collections.singletonMap("testKey", "testValue"));
    final AmqpSequence amqpSequence = new AmqpSequence(originalList);
    Message_1_0 sourceMessage = createTestMessage(amqpSequence.createEncodingRetainingSection());
    final AMQMessage convertedMessage = _converter.convert(sourceMessage, mock(NamedAddressSpace.class));
    assertEquals("Unexpected mime type", "amqp/list", convertedMessage.getMessageHeader().getMimeType());
    final QpidByteBuffer content = convertedMessage.getContent(0, (int) convertedMessage.getSize());
    List<Object> convertedList = new AmqpListToListConverter().toObject(getBytes(content));
    assertEquals("Unexpected size", originalList.size(), convertedList.size());
    assertEquals("Unexpected map item", new HashMap<String, Object>((Map) originalList.get(0)), new HashMap<String, Object>((Map) convertedList.get(0)));
}
Also used : NamedAddressSpace(org.apache.qpid.server.model.NamedAddressSpace) Message_1_0(org.apache.qpid.server.protocol.v1_0.Message_1_0) QpidByteBuffer(org.apache.qpid.server.bytebuffer.QpidByteBuffer) AmqpListToListConverter(org.apache.qpid.server.protocol.v0_10.transport.mimecontentconverter.AmqpListToListConverter) AmqpSequence(org.apache.qpid.server.protocol.v1_0.type.messaging.AmqpSequence) HashMap(java.util.HashMap) JmsMapMessageToMap(org.apache.qpid.server.typedmessage.mimecontentconverter.JmsMapMessageToMap) LinkedHashMap(java.util.LinkedHashMap) Map(java.util.Map) AMQMessage(org.apache.qpid.server.protocol.v0_8.AMQMessage)

Aggregations

HashMap (java.util.HashMap)4 LinkedHashMap (java.util.LinkedHashMap)4 Map (java.util.Map)4 QpidByteBuffer (org.apache.qpid.server.bytebuffer.QpidByteBuffer)4 NamedAddressSpace (org.apache.qpid.server.model.NamedAddressSpace)4 AmqpListToListConverter (org.apache.qpid.server.protocol.v0_10.transport.mimecontentconverter.AmqpListToListConverter)4 Message_1_0 (org.apache.qpid.server.protocol.v1_0.Message_1_0)4 JmsMapMessageToMap (org.apache.qpid.server.typedmessage.mimecontentconverter.JmsMapMessageToMap)4 MessageTransferMessage (org.apache.qpid.server.protocol.v0_10.MessageTransferMessage)2 AMQMessage (org.apache.qpid.server.protocol.v0_8.AMQMessage)2 AmqpSequence (org.apache.qpid.server.protocol.v1_0.type.messaging.AmqpSequence)2 AmqpValue (org.apache.qpid.server.protocol.v1_0.type.messaging.AmqpValue)2