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 2020/09/27 09:12:38 UTC

[camel] 05/05: Add test based on user forum issue

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

commit ac92021b9a68c7d9c76d3eefb33a3ae350376b07
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sun Sep 27 11:12:01 2020 +0200

    Add test based on user forum issue
---
 .../component/seda/SedaWireTapOnCompleteTest.java  | 56 ++++++++++++++++++++++
 1 file changed, 56 insertions(+)

diff --git a/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaWireTapOnCompleteTest.java b/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaWireTapOnCompleteTest.java
new file mode 100644
index 0000000..97a9803
--- /dev/null
+++ b/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaWireTapOnCompleteTest.java
@@ -0,0 +1,56 @@
+/*
+ * 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.seda;
+
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.builder.RouteBuilder;
+import org.junit.jupiter.api.Test;
+
+public class SedaWireTapOnCompleteTest extends ContextTestSupport {
+
+    @Test
+    public void testSeda() throws Exception {
+        getMockEndpoint("mock:done").expectedHeaderValuesReceivedInAnyOrder("foo", "123", "456");
+        getMockEndpoint("mock:first").expectedHeaderReceived("foo", "123");
+        getMockEndpoint("mock:second").expectedHeaderReceived("foo", "456");
+
+        template.sendBody("direct:start", "Hello World");
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                onCompletion().log("Done ${header.foo}").to("mock:done");
+
+                from("direct:start")
+                    .setHeader("foo", constant("123"))
+                    .log("First ${header.foo}")
+                    .wireTap("seda:cheese")
+                    .to("mock:first");
+
+                from("seda:cheese")
+                    .setHeader("foo", constant("456"))
+                    .log("Second ${header.foo}")
+                    .to("mock:second");
+            }
+        };
+    }
+}