Author: davsclaus
Date: Sat Aug 16 01:01:39 2008
New Revision: 686461
URL: http://svn.apache.org/viewvc?rev=686461&view=rev
Log:
CAMEL-794: Added unit test to verify that problem that apparently already is
fixed in Camel 1.5
Added:
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ThreadErrorHandlerTest.java
Added:
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ThreadErrorHandlerTest.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ThreadErrorHandlerTest.java?rev=686461&view=auto
==============================================================================
---
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ThreadErrorHandlerTest.java
(added)
+++
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ThreadErrorHandlerTest.java
Sat Aug 16 01:01:39 2008
@@ -0,0 +1,57 @@
+/**
+ * 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.issues;
+
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.Exchange;
+import org.apache.camel.Processor;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+
+/**
+ * Unit test to verify that error handling using thread() pool also works as
expected.
+ */
+public class ThreadErrorHandlerTest extends ContextTestSupport {
+
+ public void testThreadErrorHandler() throws Exception {
+ MockEndpoint mock = getMockEndpoint("mock:result");
+ mock.expectedMessageCount(1);
+
mock.message(0).header("org.apache.camel.Redelivered").isEqualTo(Boolean.TRUE);
+
mock.message(0).header("org.apache.camel.RedeliveryCounter").isEqualTo(2);
+
+ template.sendBody("direct:in", "Hello World");
+
+ assertMockEndpointsSatisifed();
+ }
+
+ @Override
+ protected RouteBuilder createRouteBuilder() throws Exception {
+ return new RouteBuilder() {
+ public void configure() throws Exception {
+
errorHandler(deadLetterChannel("mock:result").maximumRedeliveries(2));
+
+ from("direct:in")
+ .thread(2)
+ .process(new Processor() {
+ public void process(Exchange exchange) throws
Exception {
+ throw new Exception("Forced exception by unit
test");
+ }
+ });
+ }
+ };
+ }
+}