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/05/10 09:55:35 UTC

[camel] branch main updated: Add tests for routes configuration onCompletion

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 4a953ee8436 Add tests for routes configuration onCompletion
4a953ee8436 is described below

commit 4a953ee843622822bd5e90457d8f0789d08206df
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue May 10 11:54:57 2022 +0200

    Add tests for routes configuration onCompletion
---
 .../model/RoutesConfigurationOnCompletionTest.java | 125 +++++++++++++++++++++
 1 file changed, 125 insertions(+)

diff --git a/core/camel-core/src/test/java/org/apache/camel/model/RoutesConfigurationOnCompletionTest.java b/core/camel-core/src/test/java/org/apache/camel/model/RoutesConfigurationOnCompletionTest.java
new file mode 100644
index 00000000000..2fc7c69237c
--- /dev/null
+++ b/core/camel-core/src/test/java/org/apache/camel/model/RoutesConfigurationOnCompletionTest.java
@@ -0,0 +1,125 @@
+/*
+ * 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.model;
+
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.builder.RouteConfigurationBuilder;
+import org.junit.jupiter.api.Test;
+
+public class RoutesConfigurationOnCompletionTest extends ContextTestSupport {
+
+    @Override
+    public boolean isUseRouteBuilder() {
+        return false;
+    }
+
+    @Test
+    public void testGlobal() throws Exception {
+        context.addRoutes(new RouteConfigurationBuilder() {
+            @Override
+            public void configuration() throws Exception {
+                routeConfiguration().onCompletion().to("mock:global");
+            }
+        });
+        context.addRoutes(new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                from("direct:start")
+                        .to("mock:result");
+
+                from("direct:start2")
+                        .to("mock:result2");
+            }
+        });
+        context.start();
+
+        getMockEndpoint("mock:global").expectedBodiesReceived("Hello World", "Bye World");
+        getMockEndpoint("mock:result").expectedBodiesReceived("Hello World");
+        getMockEndpoint("mock:result2").expectedBodiesReceived("Bye World");
+
+        template.sendBody("direct:start", "Hello World");
+        template.sendBody("direct:start2", "Bye World");
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Test
+    public void testLocalConfiguration() throws Exception {
+        context.addRoutes(new RouteConfigurationBuilder() {
+            @Override
+            public void configuration() throws Exception {
+                routeConfiguration("mylocal").onCompletion().to("mock:local");
+
+            }
+        });
+        context.addRoutes(new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                from("direct:start")
+                        .to("mock:result");
+
+                from("direct:start2").routeConfigurationId("mylocal")
+                        .to("mock:result2");
+            }
+        });
+        context.start();
+
+        getMockEndpoint("mock:global").expectedMessageCount(0);
+        getMockEndpoint("mock:local").expectedBodiesReceived("Bye World");
+        getMockEndpoint("mock:result").expectedBodiesReceived("Hello World");
+        getMockEndpoint("mock:result2").expectedBodiesReceived("Bye World");
+
+        template.sendBody("direct:start", "Hello World");
+        template.sendBody("direct:start2", "Bye World");
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Test
+    public void testGlobalAndLocal() throws Exception {
+        context.addRoutes(new RouteConfigurationBuilder() {
+            @Override
+            public void configuration() throws Exception {
+                routeConfiguration().onCompletion().to("mock:global");
+                routeConfiguration("mylocal").onCompletion().to("mock:local");
+            }
+        });
+        context.addRoutes(new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                from("direct:start")
+                        .to("mock:result");
+
+                from("direct:start2").routeConfigurationId("mylocal")
+                        .to("mock:result2");
+            }
+        });
+        context.start();
+
+        getMockEndpoint("mock:global").expectedBodiesReceived("Hello World");
+        getMockEndpoint("mock:local").expectedBodiesReceived("Bye World");
+        getMockEndpoint("mock:result").expectedBodiesReceived("Hello World");
+        getMockEndpoint("mock:result2").expectedBodiesReceived("Bye World");
+
+        template.sendBody("direct:start", "Hello World");
+        template.sendBody("direct:start2", "Bye World");
+
+        assertMockEndpointsSatisfied();
+    }
+
+}