Skip to content

Commit

Permalink
Add jackson-avro integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
stataru8 committed Oct 3, 2024
1 parent abced1b commit fce2f1d
Show file tree
Hide file tree
Showing 5 changed files with 202 additions and 2 deletions.
5 changes: 3 additions & 2 deletions features/src/main/feature/camel-features.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
54 changes: 54 additions & 0 deletions tests/features/camel-jackson-avro/pom.xml
Original file line number Diff line number Diff line change
@@ -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>
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
/*
* 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;
}
}
}
Original file line number Diff line number Diff line change
@@ -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();
}

}
1 change: 1 addition & 0 deletions tests/features/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit fce2f1d

Please sign in to comment.