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 1618e04b1358614bd66eabf2db3afe1cfe85136b Author: Claus Ibsen <[email protected]> AuthorDate: Fri Oct 16 14:11:14 2020 +0200 CAMEL-15697: camel-joor - Camel expression langauge using jOOR runtime java compiled. --- .../apache/camel/language/joor/JoorBeanTest.java | 57 ++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/components/camel-joor/src/test/java/org/apache/camel/language/joor/JoorBeanTest.java b/components/camel-joor/src/test/java/org/apache/camel/language/joor/JoorBeanTest.java new file mode 100644 index 0000000..a669c31 --- /dev/null +++ b/components/camel-joor/src/test/java/org/apache/camel/language/joor/JoorBeanTest.java @@ -0,0 +1,57 @@ +/* + * 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.language.joor; + +import org.apache.camel.Header; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.test.junit5.CamelTestSupport; +import org.junit.jupiter.api.Test; + +public class JoorBeanTest extends CamelTestSupport { + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("direct:start") + .transform().method(JoorBeanTest.class, "priority") + .to("mock:result"); + } + }; + } + + @Test + public void testBean() throws Exception { + getMockEndpoint("mock:result").expectedBodiesReceived("User tony is a high roller", "Regular user", "User scott is a high roller"); + + template.sendBodyAndHeader("direct:start", 123, "user", "tony"); + template.sendBodyAndHeader("direct:start", 18, "user", "mickey"); + template.sendBodyAndHeader("direct:start", 44, "user", "scott"); + + assertMockEndpointsSatisfied(); + } + + public static String priority(@Joor("((int) body) / 2 > 10") boolean high, @Header("user") String user) { + if (high) { + return "User " + user + " is a high roller"; + } else { + return "Regular user"; + } + } + +}
