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 2019/04/11 09:01:47 UTC

[camel] branch master updated: Added unit test based on user forum issue that is fixed by CAMEL-12565

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 72ae01a  Added unit test based on user forum issue that is fixed by CAMEL-12565
72ae01a is described below

commit 72ae01a0366ee70cf8d70a02352724d56c034322
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Apr 11 11:00:38 2019 +0200

    Added unit test based on user forum issue that is fixed by CAMEL-12565
---
 ...InflightRepositoryWithFailedValidationTest.java | 58 ++++++++++++++++++++++
 1 file changed, 58 insertions(+)

diff --git a/core/camel-core/src/test/java/org/apache/camel/impl/validator/InflightRepositoryWithFailedValidationTest.java b/core/camel-core/src/test/java/org/apache/camel/impl/validator/InflightRepositoryWithFailedValidationTest.java
new file mode 100644
index 0000000..bbbf536
--- /dev/null
+++ b/core/camel-core/src/test/java/org/apache/camel/impl/validator/InflightRepositoryWithFailedValidationTest.java
@@ -0,0 +1,58 @@
+/*
+ * 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.impl.validator;
+
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.builder.RouteBuilder;
+import org.junit.Test;
+
+public class InflightRepositoryWithFailedValidationTest extends ContextTestSupport {
+
+    @Test
+    public void testInflight() throws Exception {
+        assertEquals(0, context.getInflightRepository().size());
+
+        Exception e = null;
+        try {
+            template.sendBody("direct:start", "FAIL");
+        } catch (Exception ex) {
+            e = ex;
+        }
+        assertNotNull(e);
+
+        assertEquals(0, context.getInflightRepository().size("first"));
+        assertEquals(0, context.getInflightRepository().size("second"));
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                validator()
+                    .type("simple").withExpression(bodyAs(String.class).contains("valid"));
+
+                from("direct:start").routeId("first")
+                    .to("direct:validation");
+
+                from("direct:validation").routeId("second")
+                    .inputTypeWithValidate("simple")
+                    .to("mock:result");
+            }
+        };
+    }
+}