You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by as...@apache.org on 2021/08/19 17:51:34 UTC

[camel-k] 02/03: cron_test integrations to YAML

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

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

commit aba09fff14616dd7e5eb7706002633819dc2bfa3
Author: Vladislav Sokolovskii <vs...@redhat.com>
AuthorDate: Sat Jul 17 15:48:14 2021 +0300

    cron_test integrations to YAML
---
 e2e/common/files/cron-fallback.yaml | 31 +++++++++++++++++++++++++++++++
 e2e/common/files/cron-quartz.yaml   | 33 +++++++++++++++++++++++++++++++++
 e2e/common/files/cron-timer.yaml    | 34 ++++++++++++++++++++++++++++++++++
 e2e/common/files/cron.yaml          | 31 +++++++++++++++++++++++++++++++
 4 files changed, 129 insertions(+)

diff --git a/e2e/common/files/cron-fallback.yaml b/e2e/common/files/cron-fallback.yaml
new file mode 100644
index 0000000..c80e309
--- /dev/null
+++ b/e2e/common/files/cron-fallback.yaml
@@ -0,0 +1,31 @@
+# ---------------------------------------------------------------------------
+# 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.
+# ---------------------------------------------------------------------------
+
+- from: 
+    uri: "cron:tab"
+    parameters:
+      schedule: "0/1 * * * * ?"
+    steps:
+      - set-header:
+          name: "m"
+          constant: "string!"
+      - set-body:
+          simple: "Magic${header.m}"
+      - to: 
+          uri: "log:info"
+          parameters:
+            show-all: "false"
diff --git a/e2e/common/files/cron-quartz.yaml b/e2e/common/files/cron-quartz.yaml
new file mode 100644
index 0000000..a036b5c
--- /dev/null
+++ b/e2e/common/files/cron-quartz.yaml
@@ -0,0 +1,33 @@
+# ---------------------------------------------------------------------------
+# 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.
+# ---------------------------------------------------------------------------
+
+- route:
+    id: "yaml"
+    from: 
+      uri: "quartz:trigger"
+      parameters:
+        cron: "0/1 * * * * ?"
+    steps:
+      - set-header:
+          name: "m"
+          constant: "string!"
+      - set-body:
+          simple: "Magic${header.m}"
+      - to: 
+          uri: "log:info"
+          parameters:
+            show-all: "false"
diff --git a/e2e/common/files/cron-timer.yaml b/e2e/common/files/cron-timer.yaml
new file mode 100644
index 0000000..1b36023
--- /dev/null
+++ b/e2e/common/files/cron-timer.yaml
@@ -0,0 +1,34 @@
+# ---------------------------------------------------------------------------
+# 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.
+# ---------------------------------------------------------------------------
+
+- route:
+    id: "yaml"
+    from: 
+      uri: "timer:tick"
+      parameters:
+        period: "60000"
+    steps:
+      - set-header:
+          name: "m"
+          constant: "string!"
+      - set-body:
+          simple: "Magic${header.m}"
+      - to: 
+          uri: "log:info"
+          parameters:
+            show-all: "false"
+            
\ No newline at end of file
diff --git a/e2e/common/files/cron.yaml b/e2e/common/files/cron.yaml
new file mode 100644
index 0000000..4290e10
--- /dev/null
+++ b/e2e/common/files/cron.yaml
@@ -0,0 +1,31 @@
+# ---------------------------------------------------------------------------
+# 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.
+# ---------------------------------------------------------------------------
+
+- from: 
+    uri: "cron:tab"
+    parameters:
+      schedule: "* * * * ?"
+    steps:
+      - set-header:
+          name: "m"
+          constant: "string!"
+      - set-body:
+          simple: "Magic${header.m}"
+      - to: 
+          uri: "log:info"
+          parameters:
+            show-all: "false"