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 0f464b73 camel-weather integration test (#328)
0f464b73 is described below

commit 0f464b736d43cc16f093332f02dd9a3e02157c32
Author: ÖZGÜR KISIR <[email protected]>
AuthorDate: Wed Jun 12 11:25:03 2024 +0300

    camel-weather integration test (#328)
---
 tests/features/camel-weather/pom.xml               | 33 ++++++++++++++++
 .../main/resources/OSGI-INF/blueprint/route.xml    | 46 ++++++++++++++++++++++
 .../karaf/camel/itest/CamelWeatherITest.java       | 41 +++++++++++++++++++
 tests/features/pom.xml                             |  1 +
 4 files changed, 121 insertions(+)

diff --git a/tests/features/camel-weather/pom.xml 
b/tests/features/camel-weather/pom.xml
new file mode 100644
index 00000000..c5c5ff50
--- /dev/null
+++ b/tests/features/camel-weather/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-weather-test</artifactId>
+    <name>Apache Camel :: Karaf :: Tests :: Features :: Weather</name>
+
+</project>
\ No newline at end of file
diff --git 
a/tests/features/camel-weather/src/main/resources/OSGI-INF/blueprint/route.xml 
b/tests/features/camel-weather/src/main/resources/OSGI-INF/blueprint/route.xml
new file mode 100644
index 00000000..20a241ab
--- /dev/null
+++ 
b/tests/features/camel-weather/src/main/resources/OSGI-INF/blueprint/route.xml
@@ -0,0 +1,46 @@
+<?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.
+-->
+
+<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0";
+           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+           
xmlns:ext="http://aries.apache.org/blueprint/xmlns/blueprint-ext/v1.0.0";
+           xsi:schemaLocation="
+             http://www.osgi.org/xmlns/blueprint/v1.0.0 
https://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd
+             http://camel.apache.org/schema/blueprint 
http://camel.apache.org/schema/blueprint/camel-blueprint.xsd";>
+
+    <camelContext xmlns="http://camel.apache.org/schema/blueprint";>
+        <route>
+            <from uri="direct:camel-weather-test"/>
+            <to 
uri="weather:foo?location=Madrid,Spain&amp;appid=a41d1a8030257b941fafc3c4ccf5a99a"/>
+            <log message="Get message(producer): ${body}"/>
+            <setBody>
+                <constant>OK-Producer</constant>
+            </setBody>
+            <to uri="mock:camel-weather-test"/>
+        </route>
+
+        <route>
+            <from 
uri="weather:foo?location=London,UK&amp;appid=a41d1a8030257b941fafc3c4ccf5a99a"/>
+            <log message="Get message(consumer): ${body}"/>
+            <setBody>
+                <constant>OK-Consumer</constant>
+            </setBody>
+            <to uri="mock:camel-weather-test"/>
+        </route>
+    </camelContext>
+</blueprint>
\ No newline at end of file
diff --git 
a/tests/features/camel-weather/src/test/java/org/apache/karaf/camel/itest/CamelWeatherITest.java
 
b/tests/features/camel-weather/src/test/java/org/apache/karaf/camel/itest/CamelWeatherITest.java
new file mode 100644
index 00000000..d08167cc
--- /dev/null
+++ 
b/tests/features/camel-weather/src/test/java/org/apache/karaf/camel/itest/CamelWeatherITest.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(isBlueprintTest = true)
+@RunWith(PaxExam.class)
+@ExamReactorStrategy(PerClass.class)
+public class CamelWeatherITest extends 
AbstractCamelSingleFeatureResultMockBasedRouteITest {
+
+    @Override
+    public void configureMock(MockEndpoint mock) {
+        mock.expectedBodiesReceivedInAnyOrder("OK-Producer", "OK-Consumer");
+    }
+
+    @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 26c3990f..b973a4a3 100644
--- a/tests/features/pom.xml
+++ b/tests/features/pom.xml
@@ -49,6 +49,7 @@
         <module>camel-mail</module>
         <module>camel-quartz</module>
         <module>camel-spring-rabbitmq</module>
+        <module>camel-weather</module>
     </modules>
 
     <dependencyManagement>

Reply via email to