You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/03/25 09:12:23 UTC

[camel] branch master updated: CAMEL-14739: Added unit test to reproduce bug. Thanks to Nathan for reporting.

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new c75ab25  CAMEL-14739: Added unit test to reproduce bug. Thanks to Nathan for reporting.
c75ab25 is described below

commit c75ab25edb27e99565faf9891e2766f438392b5d
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Mar 25 10:11:50 2020 +0100

    CAMEL-14739: Added unit test to reproduce bug. Thanks to Nathan for reporting.
---
 ...tionErrorHandlerNoRouteOnExchangeIssueTest.java | 79 ++++++++++++++++++++++
 1 file changed, 79 insertions(+)

diff --git a/core/camel-core/src/test/java/org/apache/camel/issues/OnExceptionErrorHandlerNoRouteOnExchangeIssueTest.java b/core/camel-core/src/test/java/org/apache/camel/issues/OnExceptionErrorHandlerNoRouteOnExchangeIssueTest.java
new file mode 100644
index 0000000..d91492e
--- /dev/null
+++ b/core/camel-core/src/test/java/org/apache/camel/issues/OnExceptionErrorHandlerNoRouteOnExchangeIssueTest.java
@@ -0,0 +1,79 @@
+/*
+ * 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.LoggingLevel;
+import org.apache.camel.builder.RouteBuilder;
+import org.junit.Ignore;
+import org.junit.Test;
+
+public class OnExceptionErrorHandlerNoRouteOnExchangeIssueTest  extends ContextTestSupport {
+
+    @Test
+    public void testOk() throws Exception {
+        String out = template.requestBody("direct:hello", null, String.class);
+        assertEquals("Hello World", out);
+    }
+
+    @Test
+    public void testNormalError() throws Exception {
+        String out = template.requestBody("direct:normalError", null, String.class);
+        assertEquals("general exception was properly handled", out);
+    }
+
+    @Test
+    @Ignore("TODO: Fix me https://issues.apache.org/jira/browse/CAMEL-14739")
+    public void testBug() throws Exception {
+        String out = template.requestBody("direct:bug", null, String.class);
+        assertEquals("general exception was properly handled", out);
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                onException(Exception.class)
+                        .handled(true)
+                        .log(LoggingLevel.ERROR, "error", "${messageHistory} \n ${exchange} \n ${exception.stacktrace}")
+                        .transform().simple("general exception was properly handled")
+                        .stop();
+
+                from("direct:hello").routeId("routeHello")
+                        .transform().constant("Hello World")
+                        .setHeader(Exchange.HTTP_RESPONSE_CODE, constant(200));
+
+                from("direct:normalError").routeId("normalError")
+                        .throwException(new NullPointerException("some null value"))
+                        .to("direct:hello");
+
+                from("direct:bug").routeId("routeBug")
+                        .to("direct:detour")
+                        .throwException(new NullPointerException("something went wrong"))
+                        .to("direct:hello");
+
+                from("direct:detour").routeId("routeDetour1")
+                        .to("direct:detour2");
+
+                from("direct:detour2").routeId("routeDetour2")
+                        .transform().constant("random processing (should not be exposed)");
+            }
+        };
+    }
+}