Skip to content

Commit

Permalink
CAMEL-683: Unit test to verify redelivery delay spring configured
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/activemq/camel/trunk@674869 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
davsclaus committed Jul 8, 2008
1 parent 90d9f33 commit ddfc260
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package org.apache.camel.component.jms.issues;

import org.apache.camel.CamelContext;
import org.apache.camel.component.mock.MockEndpoint;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit38.AbstractJUnit38SpringContextTests;

/**
* Unit test to verify DLC and JSM based on user reporting
*/
@ContextConfiguration
public class JmsRedeliveryWithInitialRedeliveryDelayTest extends AbstractJUnit38SpringContextTests {

@Autowired
protected CamelContext context;

public void testDLCSpringConfiguredRedeliveryPolicy() throws Exception {
MockEndpoint dead = context.getEndpoint("mock:dead", MockEndpoint.class);
MockEndpoint result = context.getEndpoint("mock:result", MockEndpoint.class);

dead.expectedBodiesReceived("Hello World");
dead.message(0).header("org.apache.camel.Redelivered").isEqualTo(true);
dead.message(0).header("org.apache.camel.RedeliveryCounter").isEqualTo(4);
result.expectedMessageCount(0);

context.createProducerTemplate().sendBody("activemq:in", "Hello World");

result.assertIsSatisfied();
dead.assertIsSatisfied();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
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.
-->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://activemq.apache.org/camel/schema/spring http://activemq.apache.org/camel/schema/spring/camel-spring.xsd">

<camelContext id="camel" xmlns="http://activemq.apache.org/camel/schema/spring">
<route errorHandlerRef="myDeadLetterErrorHandler">
<from uri="activemq:in"/>
<process ref="myFailureProcessor"/>
<to uri="mock:result"/>
</route>
</camelContext>

<bean id="activemq" class="org.apache.camel.component.jms.JmsComponent">
<property name="connectionFactory">
<bean class="org.apache.activemq.ActiveMQConnectionFactory">
<property name="brokerURL" value="vm://localhost?broker.persistent=false"/>
</bean>
</property>
</bean>

<bean id="myDeadLetterErrorHandler" class="org.apache.camel.builder.DeadLetterChannelBuilder">
<property name="defaultDeadLetterEndpointUri" value="mock:dead"/>
<property name="redeliveryPolicy" ref="myRedeliveryPolicyConfig"/>
</bean>

<bean id="myFailureProcessor" class="org.apache.camel.spring.config.MyFailureProcessor"/>

<bean id="myRedeliveryPolicyConfig" class="org.apache.camel.processor.RedeliveryPolicy">
<property name="maximumRedeliveries" value="4"/>
<property name="initialRedeliveryDelay" value="500"/>
<property name="useExponentialBackOff" value="true"/>
<property name="backOffMultiplier" value="2"/>
</bean>

</beans>

0 comments on commit ddfc260

Please sign in to comment.