use of org.apache.qpid.server.protocol.v0_10.transport.mimecontentconverter.MapToAmqpMapConverter in project qpid-broker-j by apache.
the class MessageConverter_0_10_to_1_0Test method testConvertAmqpMapMessageBodyWithNonJmsContent.
public void testConvertAmqpMapMessageBodyWithNonJmsContent() throws Exception {
final Map<String, Object> expected = Collections.singletonMap("key", Collections.singletonList("nonJmsList"));
final byte[] messageBytes = new MapToAmqpMapConverter().toMimeContent(expected);
doTestMapMessage(messageBytes, "amqp/map", expected, null);
}
use of org.apache.qpid.server.protocol.v0_10.transport.mimecontentconverter.MapToAmqpMapConverter in project qpid-broker-j by apache.
the class MessageConverter_1_0_to_v0_10Test method testDataWithMapMessageAnnotationAndContentTypeAmqpMap.
public void testDataWithMapMessageAnnotationAndContentTypeAmqpMap() throws Exception {
Map<String, Object> originalMap = Collections.singletonMap("testKey", "testValue");
byte[] data = new MapToAmqpMapConverter().toMimeContent(originalMap);
String expectedMimeType = "amqp/map";
final Data value = new Data(new Binary(data));
Properties properties = new Properties();
properties.setContentType(Symbol.valueOf(expectedMimeType));
Message_1_0 sourceMessage = createTestMessage(properties, MAP_MESSAGE_MESSAGE_ANNOTATION, value.createEncodingRetainingSection());
final MessageTransferMessage convertedMessage = _converter.convert(sourceMessage, mock(NamedAddressSpace.class));
assertEquals("Unexpected mime type", expectedMimeType, convertedMessage.getMessageHeader().getMimeType());
final QpidByteBuffer content = convertedMessage.getContent(0, (int) convertedMessage.getSize());
assertArrayEquals("Unexpected content", data, getBytes(content));
}
use of org.apache.qpid.server.protocol.v0_10.transport.mimecontentconverter.MapToAmqpMapConverter in project qpid-broker-j by apache.
the class MessageConverter_0_8_to_1_0Test method testConvertAmqpMapMessageBodyWithNonJmsContent.
public void testConvertAmqpMapMessageBodyWithNonJmsContent() throws Exception {
final Map<String, Object> expected = Collections.singletonMap("key", Collections.singletonList("nonJmsList"));
final byte[] messageBytes = new MapToAmqpMapConverter().toMimeContent(expected);
doTestMapMessage(messageBytes, "amqp/map", expected, null);
}
use of org.apache.qpid.server.protocol.v0_10.transport.mimecontentconverter.MapToAmqpMapConverter in project qpid-broker-j by apache.
the class MessageConverter_1_0_to_v0_8Test method testDataWithMapMessageAnnotationAndContentTypeAmqpMap.
public void testDataWithMapMessageAnnotationAndContentTypeAmqpMap() throws Exception {
Map<String, Object> originalMap = Collections.singletonMap("testKey", "testValue");
byte[] data = new MapToAmqpMapConverter().toMimeContent(originalMap);
String expectedMimeType = "amqp/map";
final Data value = new Data(new Binary(data));
Properties properties = new Properties();
properties.setContentType(Symbol.valueOf(expectedMimeType));
Message_1_0 sourceMessage = createTestMessage(properties, MAP_MESSAGE_MESSAGE_ANNOTATION, value.createEncodingRetainingSection());
final AMQMessage convertedMessage = _converter.convert(sourceMessage, mock(NamedAddressSpace.class));
assertEquals("Unexpected mime type", expectedMimeType, convertedMessage.getMessageHeader().getMimeType());
final QpidByteBuffer content = convertedMessage.getContent(0, (int) convertedMessage.getSize());
assertArrayEquals("Unexpected content", data, getBytes(content));
}
use of org.apache.qpid.server.protocol.v0_10.transport.mimecontentconverter.MapToAmqpMapConverter in project qpid-broker-j by apache.
the class MessageConverter_1_0_to_v0_8Test method testDataWithContentTypeAmqpMap.
public void testDataWithContentTypeAmqpMap() throws Exception {
Map<String, Object> originalMap = Collections.singletonMap("testKey", "testValue");
byte[] bytes = new MapToAmqpMapConverter().toMimeContent(originalMap);
final Data value = new Data(new Binary(bytes));
Properties properties = new Properties();
properties.setContentType(Symbol.valueOf("amqp/map"));
Message_1_0 sourceMessage = createTestMessage(properties, value.createEncodingRetainingSection());
final AMQMessage convertedMessage = _converter.convert(sourceMessage, mock(NamedAddressSpace.class));
assertEquals("Unexpected mime type", "amqp/map", convertedMessage.getMessageHeader().getMimeType());
final QpidByteBuffer content = convertedMessage.getContent(0, (int) convertedMessage.getSize());
assertArrayEquals("Unexpected content", bytes, getBytes(content));
}
Aggregations