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/10/14 08:20:01 UTC

[camel] branch master updated: CAMEL-15686: Added unit test

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


The following commit(s) were added to refs/heads/master by this push:
     new 9bd1bd6  CAMEL-15686: Added unit test
9bd1bd6 is described below

commit 9bd1bd6ebc691f4fee80314fac9fa99c51315f6e
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Oct 14 10:19:39 2020 +0200

    CAMEL-15686: Added unit test
---
 .../endpoint/SedaToDSimpleExpressionTest.java      | 51 ++++++++++++++++++++++
 1 file changed, 51 insertions(+)

diff --git a/core/camel-endpointdsl/src/test/java/org/apache/camel/builder/endpoint/SedaToDSimpleExpressionTest.java b/core/camel-endpointdsl/src/test/java/org/apache/camel/builder/endpoint/SedaToDSimpleExpressionTest.java
new file mode 100644
index 0000000..9b61ed8
--- /dev/null
+++ b/core/camel-endpointdsl/src/test/java/org/apache/camel/builder/endpoint/SedaToDSimpleExpressionTest.java
@@ -0,0 +1,51 @@
+/*
+ * 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.builder.endpoint;
+
+import org.apache.camel.EndpointInject;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.test.junit5.CamelTestSupport;
+import org.junit.jupiter.api.Test;
+
+public class SedaToDSimpleExpressionTest extends CamelTestSupport {
+
+    @EndpointInject(value = "mock:result")
+    private MockEndpoint result;
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new EndpointRouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                from(direct("start")).toD(seda("${exchangeProperty.whereTo}").blockWhenFull(true));
+
+                from("seda:cheese").to("mock:result");
+            }
+        };
+    }
+
+    @Test
+    public void test() throws Exception {
+        MockEndpoint resultEndpoint = getMockEndpoint("mock:result");
+        resultEndpoint.expectedMessageCount(1);
+
+        template.sendBodyAndProperty("direct:start", "Hello World", "whereTo", "cheese");
+
+        assertMockEndpointsSatisfied();
+    }
+}