You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2019/11/26 10:43:13 UTC

[camel-k-runtime] 17/18: YAML: add support for Validate EIP

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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit a51e8bef2a728551591272316547ba76df8cbe7a
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Sun Nov 24 21:34:51 2019 +0100

    YAML: add support for Validate EIP
---
 .../k/loader/yaml/parser/ValidateStepParser.java   | 40 +++++++++++++++
 .../camel/k/loader/yaml/parser/ValidateTest.groovy | 57 ++++++++++++++++++++++
 2 files changed, 97 insertions(+)

diff --git a/camel-k-loader-yaml/src/main/java/org/apache/camel/k/loader/yaml/parser/ValidateStepParser.java b/camel-k-loader-yaml/src/main/java/org/apache/camel/k/loader/yaml/parser/ValidateStepParser.java
new file mode 100644
index 0000000..a6e325c
--- /dev/null
+++ b/camel-k-loader-yaml/src/main/java/org/apache/camel/k/loader/yaml/parser/ValidateStepParser.java
@@ -0,0 +1,40 @@
+/*
+ * 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.k.loader.yaml.parser;
+
+import org.apache.camel.k.annotation.yaml.YAMLStepParser;
+import org.apache.camel.k.loader.yaml.model.Step;
+import org.apache.camel.model.ProcessorDefinition;
+import org.apache.camel.model.ValidateDefinition;
+import org.apache.camel.reifier.ProcessorReifier;
+import org.apache.camel.reifier.ValidateReifier;
+
+@YAMLStepParser("validate")
+public class ValidateStepParser implements ProcessorStepParser {
+    static {
+        ProcessorReifier.registerReifier(Definition.class, ValidateReifier::new);
+    }
+
+    @Override
+    public ProcessorDefinition<?> toProcessor(Context context) {
+        return context.node(Definition.class);
+    }
+
+    public static final class Definition extends ValidateDefinition implements HasExpression, Step.Definition {
+    }
+}
+
diff --git a/camel-k-loader-yaml/src/test/groovy/org/apache/camel/k/loader/yaml/parser/ValidateTest.groovy b/camel-k-loader-yaml/src/test/groovy/org/apache/camel/k/loader/yaml/parser/ValidateTest.groovy
new file mode 100644
index 0000000..58f405e
--- /dev/null
+++ b/camel-k-loader-yaml/src/test/groovy/org/apache/camel/k/loader/yaml/parser/ValidateTest.groovy
@@ -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.k.loader.yaml.parser
+
+import org.apache.camel.k.loader.yaml.TestSupport
+import org.apache.camel.model.ValidateDefinition
+
+class ValidateTest extends TestSupport {
+
+    def "definition with expression"() {
+        given:
+            def stepContext = stepContext('''
+                 simple: "${in.header.bar} == 100"
+            ''')
+        when:
+            def processor = new ValidateStepParser().toProcessor(stepContext)
+        then:
+            with (processor, ValidateDefinition) {
+                with (expression) {
+                    language == 'simple'
+                    expression == '${in.header.bar} == 100'
+                }
+            }
+    }
+
+    def "definition with expression block"() {
+        given:
+            def stepContext = stepContext('''
+                 expression:
+                   simple: "${in.header.bar} == 100"
+            ''')
+        when:
+            def processor = new ValidateStepParser().toProcessor(stepContext)
+        then:
+            with (processor, ValidateDefinition) {
+                with (expression) {
+                    language == 'simple'
+                    expression == '${in.header.bar} == 100'
+                }
+            }
+    }
+
+}