Author: davsclaus
Date: Tue Jan 11 17:07:20 2011
New Revision: 1057732
URL: http://svn.apache.org/viewvc?rev=1057732&view=rev
Log:
Added unit test based on user forum issue
Added:
camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ErrorHandlerAdviceIssueTest.java
Added:
camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ErrorHandlerAdviceIssueTest.java
URL:
http://svn.apache.org/viewvc/camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ErrorHandlerAdviceIssueTest.java?rev=1057732&view=auto
==============================================================================
---
camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ErrorHandlerAdviceIssueTest.java
(added)
+++
camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ErrorHandlerAdviceIssueTest.java
Tue Jan 11 17:07:20 2011
@@ -0,0 +1,92 @@
+/**
+ * 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.builder.RouteBuilder;
+import org.apache.camel.model.RouteDefinition;
+
+/**
+ * Based on user form issue
+ *
+ * @version $Revision$
+ */
+public class ErrorHandlerAdviceIssueTest extends ContextTestSupport {
+
+ public void testErrorHandlerAdvice() throws Exception {
+ RouteDefinition foo = context.getRouteDefinition("foo");
+ foo.adviceWith(context, new RouteBuilder() {
+ @Override
+ public void configure() throws Exception {
+ interceptSendToEndpoint("seda:*")
+ .skipSendToOriginalEndpoint()
+ .throwException(new IllegalAccessException("Forced"));
+ }
+ });
+
+ RouteDefinition error = context.getRouteDefinition("error");
+ error.adviceWith(context, new RouteBuilder() {
+ @Override
+ public void configure() throws Exception {
+ interceptSendToEndpoint("file:*")
+ .skipSendToOriginalEndpoint()
+ .to("mock:file");
+ }
+ });
+
+ getMockEndpoint("mock:error").expectedMessageCount(1);
+ getMockEndpoint("mock:file").expectedMessageCount(1);
+ // should be intercepted
+ getMockEndpoint("mock:foo").expectedMessageCount(0);
+
+ // TODO: stop timer route causes the test to fail
+ // context.stopRoute("timer");
+
+ template.sendBody("direct:start", "Hello World");
+
+ assertMockEndpointsSatisfied();
+ }
+
+ @Override
+ protected RouteBuilder createRouteBuilder() throws Exception {
+ return new RouteBuilder() {
+ public void configure() throws Exception {
+ errorHandler(deadLetterChannel("direct:error")
+ .maximumRedeliveries(2)
+ .redeliveryDelay(0));
+
+ from("direct:error")
+ .routeId("error")
+
.errorHandler(deadLetterChannel("log:dead?level=ERROR"))
+ .to("mock:error")
+ .to("file:error");
+
+
from("timer://someTimer?delay=15000&fixedRate=true&period=5000")
+ .routeId("timer")
+ .to("log:level=INFO");
+
+ from("direct:start")
+ .routeId("foo")
+ .to("seda:foo");
+
+ from("seda:foo")
+ .to("mock:foo");
+
+ }
+ };
+ }
+}