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 075de5e7 Ref #370: Add camel-gson integration tests (#371)
075de5e7 is described below

commit 075de5e7248831794f19162ac1eb219808f54326
Author: François de Parscau <[email protected]>
AuthorDate: Wed Jun 19 15:31:23 2024 +0200

    Ref #370: Add camel-gson integration tests (#371)
---
 tests/features/camel-gson/pom.xml                  | 33 +++++++++
 .../karaf/camel/test/CamelGsonRouteSupplier.java   | 82 ++++++++++++++++++++++
 .../apache/karaf/camel/itest/CamelGsonITest.java   | 41 +++++++++++
 tests/features/pom.xml                             |  1 +
 4 files changed, 157 insertions(+)

diff --git a/tests/features/camel-gson/pom.xml 
b/tests/features/camel-gson/pom.xml
new file mode 100644
index 00000000..a9b2d056
--- /dev/null
+++ b/tests/features/camel-gson/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-gson-test</artifactId>
+    <name>Apache Camel :: Karaf :: Tests :: Features :: Gson</name>
+
+</project>
\ No newline at end of file
diff --git 
a/tests/features/camel-gson/src/main/java/org/apache/karaf/camel/test/CamelGsonRouteSupplier.java
 
b/tests/features/camel-gson/src/main/java/org/apache/karaf/camel/test/CamelGsonRouteSupplier.java
new file mode 100644
index 00000000..6bc82f47
--- /dev/null
+++ 
b/tests/features/camel-gson/src/main/java/org/apache/karaf/camel/test/CamelGsonRouteSupplier.java
@@ -0,0 +1,82 @@
+/*
+ * 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.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-gson-test",
+        immediate = true,
+        service = CamelRouteSupplier.class
+)
+public class CamelGsonRouteSupplier extends 
AbstractCamelSingleFeatureResultMockBasedRouteSupplier {
+
+    public static class MyData {
+        private String name;
+        private int age;
+
+        public MyData(String name, int age) {
+            this.name = name;
+            this.age = age;
+        }
+
+        // Getters and setters
+        public String getName() {
+            return name;
+        }
+
+        public void setName(String name) {
+            this.name = name;
+        }
+
+        public int getAge() {
+            return age;
+        }
+
+        public void setAge(int age) {
+            this.age = age;
+        }
+    }
+
+    @Override
+    protected Function<RouteBuilder, RouteDefinition> consumerRoute() {
+        return builder ->
+                builder.from("direct:consumejson")
+                        .log("received message ${body}")
+                        .unmarshal().json(JsonLibrary.Gson, MyData.class)
+                        .process(ex -> {
+                            MyData data = ex.getIn().getBody(MyData.class);
+                            ex.getIn().setBody(data.getName());
+                        });
+    }
+
+    @Override
+    protected void configureProducer(RouteBuilder builder, RouteDefinition 
producerRoute) {
+        producerRoute.process(ex -> ex.getIn().setBody(new MyData("OK", 3)))
+                .marshal().json(JsonLibrary.Gson)
+                .log("serialized json ${body}")
+                .to("direct:consumejson");
+    }
+}
+
diff --git 
a/tests/features/camel-gson/src/test/java/org/apache/karaf/camel/itest/CamelGsonITest.java
 
b/tests/features/camel-gson/src/test/java/org/apache/karaf/camel/itest/CamelGsonITest.java
new file mode 100644
index 00000000..c6518dae
--- /dev/null
+++ 
b/tests/features/camel-gson/src/test/java/org/apache/karaf/camel/itest/CamelGsonITest.java
@@ -0,0 +1,41 @@
+/*
+ * 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 CamelGsonITest 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 e2fc62eb..edbe5d53 100644
--- a/tests/features/pom.xml
+++ b/tests/features/pom.xml
@@ -47,6 +47,7 @@
         <module>camel-ehcache</module>
         <module>camel-elasticsearch</module>
         <module>camel-ftp</module>
+        <module>camel-gson</module>
         <module>camel-hazelcast</module>
         <module>camel-http</module>
         <module>camel-jcache</module>

Reply via email to