Added unit test based on user forum issue
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/50e26fa9 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/50e26fa9 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/50e26fa9 Branch: refs/heads/master Commit: 50e26fa926505fd9d9eb1b51347efae2aa48645c Parents: 7f402d1 Author: Claus Ibsen <davscl...@apache.org> Authored: Wed Oct 9 12:48:06 2013 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Thu Oct 10 10:21:50 2013 +0200 ---------------------------------------------------------------------- ...yNullErrorHandlerUseOriginalMessageTest.java | 74 ++++++++++++++++++++ 1 file changed, 74 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/50e26fa9/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsSetBodyNullErrorHandlerUseOriginalMessageTest.java ---------------------------------------------------------------------- diff --git a/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsSetBodyNullErrorHandlerUseOriginalMessageTest.java b/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsSetBodyNullErrorHandlerUseOriginalMessageTest.java new file mode 100644 index 0000000..55a7536 --- /dev/null +++ b/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsSetBodyNullErrorHandlerUseOriginalMessageTest.java @@ -0,0 +1,74 @@ +/** + * 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.camel.component.jms; + +import javax.jms.ConnectionFactory; + +import org.apache.camel.CamelContext; +import org.apache.camel.Exchange; +import org.apache.camel.Processor; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.test.junit4.CamelTestSupport; +import org.junit.Test; + +import static org.apache.camel.component.jms.JmsComponent.jmsComponentAutoAcknowledge; + +public class JmsSetBodyNullErrorHandlerUseOriginalMessageTest extends CamelTestSupport { + + protected CamelContext createCamelContext() throws Exception { + CamelContext camelContext = super.createCamelContext(); + ConnectionFactory connectionFactory = CamelJmsTestHelper.createPersistentConnectionFactory(); + camelContext.addComponent("activemq", jmsComponentAutoAcknowledge(connectionFactory)); + return camelContext; + } + + @Test + public void testSetNull() throws Exception { + getMockEndpoint("mock:foo").expectedBodiesReceived("Hello World"); + getMockEndpoint("mock:bar").expectedMessageCount(1); + getMockEndpoint("mock:bar").message(0).body().isNull(); + + template.sendBody("activemq:queue:foo", "Hello World"); + + assertMockEndpointsSatisfied(); + + String body = consumer.receiveBody("activemq:queue:dead", 5000, String.class); + assertEquals("Hello World", body); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + errorHandler(deadLetterChannel("activemq:queue:dead").useOriginalMessage()); + + from("activemq:queue:foo") + .to("mock:foo") + .process(new Processor() { + @Override + public void process(Exchange exchange) throws Exception { + // an end user may set the message body explicit to null + exchange.getIn().setBody(null); + } + }) + .to("mock:bar") + .throwException(new IllegalArgumentException("Forced")); + } + }; + } +}