This is an automated email from the ASF dual-hosted git repository. nfilotto pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-karaf.git
The following commit(s) were added to refs/heads/main by this push: new 76487bd95 Ref #516: Add jackson-avro integration test (#517) 76487bd95 is described below commit 76487bd9529de3e035d944f47027f1079e2d154d Author: Stefan Tataru <stefan.tatar...@gmail.com> AuthorDate: Thu Oct 3 18:26:11 2024 +0200 Ref #516: Add jackson-avro integration test (#517) --- features/src/main/feature/camel-features.xml | 5 +- tests/features/camel-jackson-avro/pom.xml | 54 ++++++++++ .../camel/test/CamelJacksonAvroRouteSupplier.java | 114 +++++++++++++++++++++ .../karaf/camel/itest/CamelJacksonAvroITest.java | 40 ++++++++ tests/features/pom.xml | 1 + 5 files changed, 212 insertions(+), 2 deletions(-) diff --git a/features/src/main/feature/camel-features.xml b/features/src/main/feature/camel-features.xml index 1a668a2cc..c8f7d3243 100644 --- a/features/src/main/feature/camel-features.xml +++ b/features/src/main/feature/camel-features.xml @@ -1587,8 +1587,9 @@ <feature name='camel-jackson-avro' version='${project.version}' start-level='50'> <feature version='${camel-osgi-version-range}'>camel-jackson</feature> <feature version='[33,34)'>guava</feature> - <bundle dependency='true'>mvn:org.apache.commons/commons-compress/${auto-detect-version}</bundle> - <bundle dependency='true'>mvn:org.apache.avro/avro/${auto-detect-version}</bundle> + <bundle dependency='true'>mvn:commons-io/commons-io/${commons-io-version}</bundle> + <bundle dependency='true'>mvn:org.apache.commons/commons-compress/${commons-compress-version}</bundle> + <bundle dependency='true'>mvn:org.apache.avro/avro/${avro-version}</bundle> <bundle dependency='true'>mvn:org.codehaus.jackson/jackson-core-asl/${auto-detect-version}</bundle> <bundle dependency='true'>mvn:org.codehaus.jackson/jackson-mapper-asl/${auto-detect-version}</bundle> <bundle dependency="true">mvn:com.thoughtworks.paranamer/paranamer/${auto-detect-version}</bundle> diff --git a/tests/features/camel-jackson-avro/pom.xml b/tests/features/camel-jackson-avro/pom.xml new file mode 100644 index 000000000..85499a4c2 --- /dev/null +++ b/tests/features/camel-jackson-avro/pom.xml @@ -0,0 +1,54 @@ +<?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.0-SNAPSHOT</version> + </parent> + + <artifactId>camel-jackson-avro-test</artifactId> + <name>Apache Camel :: Karaf :: Tests :: Features :: Jackson Avro</name> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </dependency> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-jackson</artifactId> + <version>${camel-version}</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>${jackson2-version}</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.dataformat</groupId> + <artifactId>jackson-dataformat-avro</artifactId> + <version>${jackson2-version}</version> + </dependency> + </dependencies> +</project> \ No newline at end of file diff --git a/tests/features/camel-jackson-avro/src/main/java/org/apache/karaf/camel/test/CamelJacksonAvroRouteSupplier.java b/tests/features/camel-jackson-avro/src/main/java/org/apache/karaf/camel/test/CamelJacksonAvroRouteSupplier.java new file mode 100644 index 000000000..0140555bb --- /dev/null +++ b/tests/features/camel-jackson-avro/src/main/java/org/apache/karaf/camel/test/CamelJacksonAvroRouteSupplier.java @@ -0,0 +1,114 @@ +/* + * 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 static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue; + +import org.apache.camel.CamelContext; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.jackson.SchemaResolver; +import org.apache.camel.model.RouteDefinition; +import org.apache.camel.model.dataformat.AvroDataFormat; +import org.apache.camel.model.dataformat.AvroLibrary; +import org.apache.karaf.camel.itests.AbstractCamelSingleFeatureResultMockBasedRouteSupplier; +import org.apache.karaf.camel.itests.CamelRouteSupplier; +import org.osgi.service.component.annotations.Component; + +import com.fasterxml.jackson.databind.JsonMappingException; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.dataformat.avro.AvroMapper; +import com.fasterxml.jackson.dataformat.avro.AvroSchema; + +@Component( + name = "karaf-camel-jackson-avro-test", + immediate = true, + service = CamelRouteSupplier.class +) +public class CamelJacksonAvroRouteSupplier extends AbstractCamelSingleFeatureResultMockBasedRouteSupplier { + + public static final String AVRO_BEAN = "avroBean"; + public static final String AVRO_SAMPLE_NAME = "Jack Aveiro"; + public static final int AVRO_SAMPLE_AGE = 99; + + @Override + protected boolean consumerEnabled() { + return false; + } + + @Override + public void configure(CamelContext context) { + AvroDataFormat avro = new AvroDataFormat(); + avro.setLibrary(AvroLibrary.Jackson); + avro.setUnmarshalType(JsonNode.class); + avro.setAutoDiscoverSchemaResolver(Boolean.TRUE.toString()); + context.getRegistry().bind(AVRO_BEAN, avro); + + try { + AvroSchema schema = new AvroMapper().schemaFor(MyData.class); + SchemaResolver resolver = ex -> schema; + context.getRegistry().bind("schema-resolver", SchemaResolver.class, resolver); + } catch (JsonMappingException e) { + throw new RuntimeException(e); + } + } + + @Override + protected void configureProducer(RouteBuilder builder, RouteDefinition producerRoute) { + producerRoute.setBody(ex -> new MyData(AVRO_SAMPLE_NAME, AVRO_SAMPLE_AGE)) + .log("Will marshal: ${body}") + .marshal(AVRO_BEAN) + .log("Marshal: ${body}") + .process(ex -> { + byte[] avroData = ex.getIn().getBody(byte[].class); + assertNotNull(avroData); + assertTrue(avroData.length > 0); + }) + .toF("mock:%s", getResultMockName()) + .log("Will unmarshal: ${body}") + .unmarshal(AVRO_BEAN) + .log("Unmarshal: ${body}") + .process(ex -> { + JsonNode data = ex.getIn().getBody(JsonNode.class); + assertEquals(AVRO_SAMPLE_NAME, data.get("name").asText()); + assertEquals(AVRO_SAMPLE_AGE, data.get("age").asInt()); + }) + .toF("mock:%s", getResultMockName()); + } + + public static class MyData { + + private String name; + + private int age; + + public MyData(String name, int age) { + this.name = name; + this.age = age; + } + + // getters are needed for marshal + + public String getName() { + return name; + } + + public int getAge() { + return age; + } + } +} \ No newline at end of file diff --git a/tests/features/camel-jackson-avro/src/test/java/org/apache/karaf/camel/itest/CamelJacksonAvroITest.java b/tests/features/camel-jackson-avro/src/test/java/org/apache/karaf/camel/itest/CamelJacksonAvroITest.java new file mode 100644 index 000000000..074ddff74 --- /dev/null +++ b/tests/features/camel-jackson-avro/src/test/java/org/apache/karaf/camel/itest/CamelJacksonAvroITest.java @@ -0,0 +1,40 @@ +/* + * 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.apache.karaf.camel.itests.CamelKarafTestHint; +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; + +@CamelKarafTestHint +@RunWith(PaxExam.class) +@ExamReactorStrategy(PerClass.class) +public class CamelJacksonAvroITest extends AbstractCamelSingleFeatureResultMockBasedRouteITest { + + @Override + public void configureMock(MockEndpoint mock) { + mock.expectedMessageCount(2); + } + + @Test + public void testResultMock() throws Exception { + assertMockEndpointsSatisfied(); + } + +} \ No newline at end of file diff --git a/tests/features/pom.xml b/tests/features/pom.xml index 9a33f3bb3..608d66c25 100644 --- a/tests/features/pom.xml +++ b/tests/features/pom.xml @@ -83,6 +83,7 @@ <module>camel-http</module> <module>camel-influxdb2</module> <module>camel-jackson</module> + <module>camel-jackson-avro</module> <module>camel-jacksonxml</module> <module>camel-jcache</module> <module>camel-jetty</module>