This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch camel-karaf-4.8.x in repository https://gitbox.apache.org/repos/asf/camel-karaf.git
The following commit(s) were added to refs/heads/camel-karaf-4.8.x by this push: new e37da4bf8 Ref #571: Add an integration test for Groovy (#572) e37da4bf8 is described below commit e37da4bf806fd7273b574b20aa3e53880cdc9ce0 Author: Nicolas Filotto <essob...@users.noreply.github.com> AuthorDate: Thu Jan 16 11:59:04 2025 +0100 Ref #571: Add an integration test for Groovy (#572) ## Motivation There is no integration test for Groovy, we need one to ensure that it works as expected ## Modifications: * Add an integration test --- tests/features/camel-groovy/pom.xml | 31 ++++++++++++ .../karaf/camel/test/CamelGroovyRouteSupplier.java | 55 ++++++++++++++++++++++ .../apache/karaf/camel/itest/CamelGroovyITest.java | 42 +++++++++++++++++ tests/features/pom.xml | 1 + 4 files changed, 129 insertions(+) diff --git a/tests/features/camel-groovy/pom.xml b/tests/features/camel-groovy/pom.xml new file mode 100644 index 000000000..9e053bade --- /dev/null +++ b/tests/features/camel-groovy/pom.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + 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. + +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.camel.karaf</groupId> + <artifactId>camel-karaf-features-test</artifactId> + <version>4.8.2-SNAPSHOT</version> + </parent> + + <artifactId>camel-groovy-test</artifactId> + <name>Apache Camel :: Karaf :: Tests :: Features :: Groovy</name> + +</project> \ No newline at end of file diff --git a/tests/features/camel-groovy/src/main/java/org/apache/karaf/camel/test/CamelGroovyRouteSupplier.java b/tests/features/camel-groovy/src/main/java/org/apache/karaf/camel/test/CamelGroovyRouteSupplier.java new file mode 100644 index 000000000..b2363c401 --- /dev/null +++ b/tests/features/camel-groovy/src/main/java/org/apache/karaf/camel/test/CamelGroovyRouteSupplier.java @@ -0,0 +1,55 @@ +/* + * 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.karaf.camel.test; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.model.RouteDefinition; +import org.apache.karaf.camel.itests.AbstractCamelSingleFeatureResultMockBasedRouteSupplier; +import org.apache.karaf.camel.itests.CamelRouteSupplier; +import org.osgi.service.component.annotations.Component; + +import static org.apache.camel.builder.Builder.constant; + + +@Component( + name = "karaf-camel-groovy-test", + immediate = true, + service = CamelRouteSupplier.class +) +public class CamelGroovyRouteSupplier extends AbstractCamelSingleFeatureResultMockBasedRouteSupplier { + + @Override + protected boolean consumerEnabled() { + return false; + } + + @Override + protected void configureProducer(RouteBuilder builder, RouteDefinition producerRoute) { + producerRoute + .log("received message ${body}") + .setBody().groovy("groovy.lang.Tuple.tuple(body)") + .log("message modified ${body}") + .choice() + .when().groovy("body instanceof groovy.lang.Tuple && body.size() == 1") + .setBody(constant("OK")) + .otherwise() + .setBody(constant("KO")) + .end() + .log("sending message ${body}") + .toF("mock:%s", getResultMockName()); + } +} + diff --git a/tests/features/camel-groovy/src/test/java/org/apache/karaf/camel/itest/CamelGroovyITest.java b/tests/features/camel-groovy/src/test/java/org/apache/karaf/camel/itest/CamelGroovyITest.java new file mode 100644 index 000000000..904abd84b --- /dev/null +++ b/tests/features/camel-groovy/src/test/java/org/apache/karaf/camel/itest/CamelGroovyITest.java @@ -0,0 +1,42 @@ +/* + * Licensed 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.karaf.camel.itest; + +import org.apache.camel.component.mock.MockEndpoint; +import org.apache.karaf.camel.itests.AbstractCamelSingleFeatureResultMockBasedRouteITest; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.ops4j.pax.exam.junit.PaxExam; +import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy; +import org.ops4j.pax.exam.spi.reactors.PerClass; + +@RunWith(PaxExam.class) +@ExamReactorStrategy(PerClass.class) +public class CamelGroovyITest extends AbstractCamelSingleFeatureResultMockBasedRouteITest { + + @Override + public void configureMock(MockEndpoint mock) { + mock.expectedBodiesReceived("OK"); + } + + @Test + public void testResultMock() throws Exception { + assertMockEndpointsSatisfied(); + } + + @Override + public String getBodyToSend() { + return "Hello Groovy"; + } +} \ No newline at end of file diff --git a/tests/features/pom.xml b/tests/features/pom.xml index 448462ffa..47b957f74 100644 --- a/tests/features/pom.xml +++ b/tests/features/pom.xml @@ -85,6 +85,7 @@ <module>camel-flatpack</module> <module>camel-ftp</module> <module>camel-google-pubsub</module> + <module>camel-groovy</module> <module>camel-gson</module> <module>camel-hazelcast</module> <module>camel-http</module>