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 7f1f4ed5 Ref #372: Add camel-fastjson integration test (#373)
7f1f4ed5 is described below
commit 7f1f4ed512ea141994785a5c9c9b24623486b1b0
Author: François de Parscau <[email protected]>
AuthorDate: Wed Jun 19 15:53:55 2024 +0200
Ref #372: Add camel-fastjson integration test (#373)
---
features/src/main/feature/camel-features.xml | 2 +
tests/features/camel-fastjson/pom.xml | 33 +++++++++++++
.../camel/test/CamelFastjsonRouteSupplier.java | 57 ++++++++++++++++++++++
.../karaf/camel/itest/CamelFastjsonITest.java | 40 +++++++++++++++
tests/features/pom.xml | 1 +
5 files changed, 133 insertions(+)
diff --git a/features/src/main/feature/camel-features.xml
b/features/src/main/feature/camel-features.xml
index f076f13c..fda28bfc 100644
--- a/features/src/main/feature/camel-features.xml
+++ b/features/src/main/feature/camel-features.xml
@@ -908,6 +908,8 @@
<feature name='camel-fastjson' version='${project.version}'
start-level='50'>
<feature version='${camel-osgi-version-range}'>camel-core</feature>
<bundle
dependency='true'>wrap:mvn:com.alibaba/fastjson/${fastjson-version}</bundle>
+ <bundle
dependency='true'>wrap:mvn:com.alibaba.fastjson2/fastjson2/${auto-detect-version}</bundle>
+ <bundle
dependency='true'>wrap:mvn:com.alibaba.fastjson2/fastjson2-extension/${auto-detect-version}</bundle>
<bundle>mvn:org.apache.camel.karaf/camel-fastjson/${project.version}</bundle>
</feature>
<feature name='camel-file-watch' version='${project.version}'
start-level='50'>
diff --git a/tests/features/camel-fastjson/pom.xml
b/tests/features/camel-fastjson/pom.xml
new file mode 100644
index 00000000..97b2e9eb
--- /dev/null
+++ b/tests/features/camel-fastjson/pom.xml
@@ -0,0 +1,33 @@
+<?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.6.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>camel-fastjson-test</artifactId>
+ <name>Apache Camel :: Karaf :: Tests :: Features :: Fastjson</name>
+
+</project>
\ No newline at end of file
diff --git
a/tests/features/camel-fastjson/src/main/java/org/apache/karaf/camel/test/CamelFastjsonRouteSupplier.java
b/tests/features/camel-fastjson/src/main/java/org/apache/karaf/camel/test/CamelFastjsonRouteSupplier.java
new file mode 100644
index 00000000..f7d47b26
--- /dev/null
+++
b/tests/features/camel-fastjson/src/main/java/org/apache/karaf/camel/test/CamelFastjsonRouteSupplier.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.karaf.camel.test;
+
+import java.util.Map;
+import java.util.function.Function;
+
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.model.RouteDefinition;
+import org.apache.camel.model.dataformat.JsonLibrary;
+import
org.apache.karaf.camel.itests.AbstractCamelSingleFeatureResultMockBasedRouteSupplier;
+import org.apache.karaf.camel.itests.CamelRouteSupplier;
+import org.osgi.service.component.annotations.Component;
+
+
+@Component(
+ name = "karaf-camel-fastjson-test",
+ immediate = true,
+ service = CamelRouteSupplier.class
+)
+public class CamelFastjsonRouteSupplier extends
AbstractCamelSingleFeatureResultMockBasedRouteSupplier {
+
+ @Override
+ protected Function<RouteBuilder, RouteDefinition> consumerRoute() {
+ return builder ->
+ builder.from("direct:consumejson")
+ .log("received message ${body}")
+ .unmarshal().json(JsonLibrary.Fastjson, Map.class)
+ .log("unmarshalled ${body}")
+ .process(ex -> {
+ Map<?, ?> data = ex.getIn().getBody(Map.class);
+ ex.getIn().setBody(data.get("key"));
+ });
+ }
+
+ @Override
+ protected void configureProducer(RouteBuilder builder, RouteDefinition
producerRoute) {
+ producerRoute.process(ex -> ex.getIn().setBody(Map.of("key", "OK")))
+ .marshal().json(JsonLibrary.Fastjson)
+ .log("serialized json ${body}")
+ .to("direct:consumejson");
+ }
+}
+
diff --git
a/tests/features/camel-fastjson/src/test/java/org/apache/karaf/camel/itest/CamelFastjsonITest.java
b/tests/features/camel-fastjson/src/test/java/org/apache/karaf/camel/itest/CamelFastjsonITest.java
new file mode 100644
index 00000000..95d0edcc
--- /dev/null
+++
b/tests/features/camel-fastjson/src/test/java/org/apache/karaf/camel/itest/CamelFastjsonITest.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 CamelFastjsonITest extends
AbstractCamelSingleFeatureResultMockBasedRouteITest {
+
+ @Override
+ public void configureMock(MockEndpoint mock) {
+ mock.expectedBodiesReceived("OK");
+ }
+
+ @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 edbe5d53..746daae2 100644
--- a/tests/features/pom.xml
+++ b/tests/features/pom.xml
@@ -46,6 +46,7 @@
<module>camel-core</module>
<module>camel-ehcache</module>
<module>camel-elasticsearch</module>
+ <module>camel-fastjson</module>
<module>camel-ftp</module>
<module>camel-gson</module>
<module>camel-hazelcast</module>