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 e127e287a71 CAMEL-18329: Added unit test
e127e287a71 is described below
commit e127e287a7182b8ddbfc304a379ca0fae4554819
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Aug 4 09:19:46 2022 +0200
CAMEL-18329: Added unit test
---
.../main/MainTemplatedRoutePlaceholderTest.java | 67 ++++++++++++++++++++++
1 file changed, 67 insertions(+)
diff --git
a/core/camel-main/src/test/java/org/apache/camel/main/MainTemplatedRoutePlaceholderTest.java
b/core/camel-main/src/test/java/org/apache/camel/main/MainTemplatedRoutePlaceholderTest.java
new file mode 100644
index 00000000000..c7d119eb33b
--- /dev/null
+++
b/core/camel-main/src/test/java/org/apache/camel/main/MainTemplatedRoutePlaceholderTest.java
@@ -0,0 +1,67 @@
+/*
+ * 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.CamelContext;
+import org.apache.camel.ProducerTemplate;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.model.ModelCamelContext;
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+class MainTemplatedRoutePlaceholderTest {
+
+ @Test
+ void testMain() throws Exception {
+ Main main = new Main();
+ main.configure().addRoutesBuilder(new RouteBuilder() {
+ @Override
+ public void configure() throws Exception {
+ routeTemplate("appendtobody")
+ .templateParameter("append")
+ .templateParameter("in")
+ .templateParameter("out")
+ .from("{{in}}")
+ .transform(simple("${body}{{append}}"))
+ .to("{{out}}");
+
+ templatedRoute("appendtobody")
+ .parameter("append", "appendvalue")
+ .parameter("out", "mock:out")
+ .parameter("in", "direct:start");
+ }
+ });
+
+ main.start();
+
+ CamelContext context = main.getCamelContext();
+ assertEquals(1,
context.adapt(ModelCamelContext.class).getRouteDefinitions().size());
+
+ MockEndpoint mock = context.getEndpoint("mock:out",
MockEndpoint.class);
+ mock.expectedBodiesReceived("Hello-appendvalue");
+
+ ProducerTemplate template = context.createProducerTemplate();
+ template.sendBody("direct:start", "Hello-");
+
+ mock.assertIsSatisfied();
+
+ main.stop();
+ }
+
+}