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 2022/10/18 12:13:40 UTC

[camel] branch main updated: CAMEL-18585: Added unit test

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

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


The following commit(s) were added to refs/heads/main by this push:
     new f06229ac118 CAMEL-18585: Added unit test
f06229ac118 is described below

commit f06229ac118ea4bbda20eb095963db9a02da7c57
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue Oct 18 14:13:17 2022 +0200

    CAMEL-18585: Added unit test
---
 .../validator/ValidatorWithDirectTest.java         | 66 ++++++++++++++++++++++
 1 file changed, 66 insertions(+)

diff --git a/core/camel-core/src/test/java/org/apache/camel/component/validator/ValidatorWithDirectTest.java b/core/camel-core/src/test/java/org/apache/camel/component/validator/ValidatorWithDirectTest.java
new file mode 100644
index 00000000000..a3a92f15f16
--- /dev/null
+++ b/core/camel-core/src/test/java/org/apache/camel/component/validator/ValidatorWithDirectTest.java
@@ -0,0 +1,66 @@
+/*
+ * 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.component.validator;
+
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.fail;
+
+public class ValidatorWithDirectTest extends ContextTestSupport {
+
+    final String wrongBody = "<user2><name>Federico</name><surname>Mariani</surname></user2>";
+
+    @Test
+    public void testValidatorWithDirect() throws Exception {
+        MockEndpoint valid = resolveMandatoryEndpoint("mock:valid", MockEndpoint.class);
+        MockEndpoint fail = resolveMandatoryEndpoint("mock:fail", MockEndpoint.class);
+        fail.expectedMessageCount(1);
+        valid.expectedMessageCount(0);
+
+        try {
+            template.sendBody("direct:start", wrongBody);
+            fail("Should throw exception");
+        } catch (Exception e) {
+            // expected
+        }
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+
+                onException(Exception.class)
+                        .to("mock:fail");
+
+                validator()
+                        .type("xml:schemaValidator")
+                        .withUri("validator:org/apache/camel/impl/validate.xsd?failOnNullBody=false");
+
+                from("direct:start")
+                        .inputTypeWithValidate("xml:schemaValidator")
+                        .to("mock:valid");
+            }
+        };
+    }
+}