use of org.apache.qpid.server.protocol.converter.MessageConversionException in project qpid-broker-j by apache.
the class PropertyConverter_1_0_to_0_10Test method testReplyToConversionWhenResultExceeds255.
public void testReplyToConversionWhenResultExceeds255() {
final String replyTo = generateLongString() + "/" + generateLongString();
Properties properties = new Properties();
properties.setReplyTo(replyTo);
Message_1_0 message = createTestMessage(properties);
try {
_messageConverter.convert(message, _namedAddressSpace);
fail("expected exception not thrown");
} catch (MessageConversionException e) {
// pass
}
}
use of org.apache.qpid.server.protocol.converter.MessageConversionException in project qpid-broker-j by apache.
the class PropertyConverter_1_0_to_0_10Test method testToConversionWhenRoutingKeyLengthExceeds255.
public void testToConversionWhenRoutingKeyLengthExceeds255() {
final String testExchange = "testExchange";
final String testRoutingKey = generateLongString();
String to = testExchange + "/" + testRoutingKey;
Properties properties = new Properties();
properties.setTo(to);
Message_1_0 message = createTestMessage(properties);
try {
_messageConverter.convert(message, _namedAddressSpace);
fail("Exception is not thrown");
} catch (MessageConversionException e) {
// pass
}
}
use of org.apache.qpid.server.protocol.converter.MessageConversionException in project qpid-broker-j by apache.
the class PropertyConverter_1_0_to_0_10Test method testContentEncodingConversionWhenLengthExceeds255.
public void testContentEncodingConversionWhenLengthExceeds255() {
String contentEncoding = generateLongString();
final Properties properties = new Properties();
properties.setContentEncoding(Symbol.valueOf(contentEncoding));
Message_1_0 message = createTestMessage(properties);
try {
_messageConverter.convert(message, _namedAddressSpace);
fail("expected exception not thrown");
} catch (MessageConversionException e) {
// pass
}
}
use of org.apache.qpid.server.protocol.converter.MessageConversionException in project qpid-broker-j by apache.
the class PropertyConverter_1_0_to_0_10Test method testCorrelationIdLongStringConversion.
public void testCorrelationIdLongStringConversion() {
final String correlationId = generateLongLongString();
Properties properties = new Properties();
properties.setCorrelationId(correlationId);
Message_1_0 message = createTestMessage(properties);
try {
_messageConverter.convert(message, _namedAddressSpace);
fail("Expected exception not thrown");
} catch (MessageConversionException e) {
// pass
}
}
use of org.apache.qpid.server.protocol.converter.MessageConversionException in project qpid-broker-j by apache.
the class MessageConverter_0_10_to_0_8 method convertContentHeaderProperties.
public static BasicContentHeaderProperties convertContentHeaderProperties(MessageTransferMessage messageTransferMessage, NamedAddressSpace addressSpace) {
BasicContentHeaderProperties props = new BasicContentHeaderProperties();
Header header = messageTransferMessage.getHeader();
DeliveryProperties deliveryProps = header.getDeliveryProperties();
MessageProperties messageProps = header.getMessageProperties();
if (deliveryProps != null) {
if (deliveryProps.hasDeliveryMode()) {
props.setDeliveryMode((deliveryProps.getDeliveryMode() == MessageDeliveryMode.PERSISTENT ? BasicContentHeaderProperties.PERSISTENT : BasicContentHeaderProperties.NON_PERSISTENT));
}
if (deliveryProps.hasTtl()) {
props.setExpiration(messageTransferMessage.getArrivalTime() + deliveryProps.getTtl());
} else if (deliveryProps.hasExpiration()) {
props.setExpiration(deliveryProps.getExpiration());
}
if (deliveryProps.hasPriority()) {
props.setPriority((byte) deliveryProps.getPriority().getValue());
}
if (deliveryProps.hasTimestamp()) {
props.setTimestamp(deliveryProps.getTimestamp());
} else {
props.setTimestamp(messageTransferMessage.getArrivalTime());
}
}
if (messageProps != null) {
if (messageProps.hasAppId()) {
try {
props.setAppId(new AMQShortString(messageProps.getAppId()));
} catch (IllegalArgumentException e) {
// pass
}
}
if (messageProps.hasContentType()) {
props.setContentType(messageProps.getContentType());
}
if (messageProps.hasCorrelationId()) {
try {
props.setCorrelationId(new AMQShortString(messageProps.getCorrelationId()));
} catch (IllegalArgumentException e) {
throw new MessageConversionException("Could not convert message from 0-10 to 0-8 because conversion of 'correlationId' failed.", e);
}
}
if (messageProps.hasContentEncoding()) {
props.setEncoding(messageProps.getContentEncoding());
}
if (messageProps.hasMessageId()) {
// Add prefix 'ID:' to workaround broken 0-8..0-9-1 Qpid JMS client
props.setMessageId("ID:" + messageProps.getMessageId().toString());
}
if (messageProps.hasReplyTo()) {
ReplyTo replyTo = messageProps.getReplyTo();
String exchangeName = replyTo.getExchange();
String routingKey = replyTo.getRoutingKey();
if (exchangeName == null) {
exchangeName = "";
}
if (!"".equals(exchangeName) || (routingKey != null && !"".equals(routingKey))) {
MessageDestination destination = addressSpace.getAttainedMessageDestination(exchangeName);
Exchange<?> exchange = destination instanceof Exchange ? (Exchange<?>) destination : null;
String exchangeClass = exchange == null ? ExchangeDefaults.DIRECT_EXCHANGE_CLASS : exchange.getType();
String routingKeyOption = routingKey == null ? "" : "?routingkey='" + routingKey + "'";
final String replyToBindingUrl = String.format("%s://%s//%s", exchangeClass, exchangeName, routingKeyOption);
try {
props.setReplyTo(replyToBindingUrl);
} catch (IllegalArgumentException e) {
throw new MessageConversionException("Could not convert message from 0-10 to 0-8 because conversion of 'reply-to' failed.", e);
}
}
}
if (messageProps.hasUserId()) {
try {
props.setUserId(new AMQShortString(messageProps.getUserId()));
} catch (IllegalArgumentException e) {
// ignore
}
}
if (messageProps.hasApplicationHeaders()) {
Map<String, Object> appHeaders = new HashMap<String, Object>(messageProps.getApplicationHeaders());
if (messageProps.getApplicationHeaders().containsKey("x-jms-type")) {
String jmsType = String.valueOf(appHeaders.remove("x-jms-type"));
try {
props.setType(jmsType);
} catch (IllegalArgumentException e) {
throw new MessageConversionException("Could not convert message from 0-10 to 0-8 because x-jms-type conversion failed.", e);
}
}
FieldTable ft = new FieldTable();
for (Map.Entry<String, Object> entry : appHeaders.entrySet()) {
String headerName = entry.getKey();
try {
ft.put(AMQShortString.validValueOf(headerName), entry.getValue());
} catch (AMQPInvalidClassException e) {
throw new MessageConversionException(String.format("Could not convert message from 0-10 to 0-8 because conversion of application header '%s' failed.", headerName), e);
}
}
props.setHeaders(ft);
}
}
return props;
}
Aggregations