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/03/04 09:40:43 UTC

[camel] 01/03: CAMEL-14651: 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

commit 186c92075cbdccfc4364a4bf4556193182fca6e6
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Mar 4 09:38:48 2020 +0100

    CAMEL-14651: Added unit test
---
 .../apache/camel/main/MainLogPlaceholderTest.java  | 54 ++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/core/camel-main/src/test/java/org/apache/camel/main/MainLogPlaceholderTest.java b/core/camel-main/src/test/java/org/apache/camel/main/MainLogPlaceholderTest.java
new file mode 100644
index 0000000..399e778
--- /dev/null
+++ b/core/camel-main/src/test/java/org/apache/camel/main/MainLogPlaceholderTest.java
@@ -0,0 +1,54 @@
+/*
+ * 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.main;
+
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.junit.Assert;
+import org.junit.Test;
+
+public class MainLogPlaceholderTest extends Assert {
+
+    @Test
+    public void testMain() throws Exception {
+        Main main = new Main();
+        main.addInitialProperty("camel.context.name", "test-ctx");
+        main.addInitialProperty("message", "test");
+        main.addInitialProperty("tap", "mock:tap");
+        main.addRoutesBuilder(new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                from("timer:tick?period=10")
+                    .log("{{message}}")
+                    .transform().constant("Hello {{message}}")
+                    .wireTap("{{tap}}");
+            }
+        });
+        main.start();
+
+        MockEndpoint tap = main.getCamelContext().getEndpoint("mock:tap", MockEndpoint.class);
+        tap.expectedMinimumMessageCount(3);
+        tap.allMessages().body().isEqualTo("Hello test");
+
+        assertEquals("test-ctx", main.getCamelContext().getName());
+
+        tap.assertIsSatisfied();
+
+        main.stop();
+    }
+
+}