You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ji...@apache.org on 2023/10/05 14:00:23 UTC

[camel-quarkus] 28/45: Disabled tests using kubernetess client, see #5318

This is an automated email from the ASF dual-hosted git repository.

jiriondrusek pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 624043a5f3126ecfc4410214fbe183686526994b
Author: JiriOndrusek <on...@gmail.com>
AuthorDate: Wed Sep 20 13:51:45 2023 +0200

    Disabled tests using kubernetess client, see #5318
---
 integration-tests/camel-k-runtime/pom.xml                              | 3 +++
 integration-tests/kubernetes/pom.xml                                   | 3 +++
 .../apache/camel/quarkus/component/kubernetes/it/KubernetesTest.java   | 2 ++
 integration-tests/master-openshift/pom.xml                             | 3 +++
 .../apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java  | 2 ++
 5 files changed, 13 insertions(+)

diff --git a/integration-tests/camel-k-runtime/pom.xml b/integration-tests/camel-k-runtime/pom.xml
index 277d93c7b1..fb192907d6 100644
--- a/integration-tests/camel-k-runtime/pom.xml
+++ b/integration-tests/camel-k-runtime/pom.xml
@@ -121,6 +121,8 @@
                 <quarkus.native.native-image-xmx>5g</quarkus.native.native-image-xmx>
             </properties>
         </profile>
+        <!--
+        //https://github.com/apache/camel-quarkus/issues/5318
         <profile>
             <id>native</id>
             <activation>
@@ -154,6 +156,7 @@
                 </plugins>
             </build>
         </profile>
+        -->
         <profile>
             <id>virtualDependencies</id>
             <activation>
diff --git a/integration-tests/kubernetes/pom.xml b/integration-tests/kubernetes/pom.xml
index 1f41bc8f49..fc0b898453 100644
--- a/integration-tests/kubernetes/pom.xml
+++ b/integration-tests/kubernetes/pom.xml
@@ -81,6 +81,8 @@
                 <quarkus.native.native-image-xmx>5g</quarkus.native.native-image-xmx>
             </properties>
         </profile>
+        <!--
+        //https://github.com/apache/camel-quarkus/issues/5318
         <profile>
             <id>native</id>
             <activation>
@@ -108,6 +110,7 @@
                 </plugins>
             </build>
         </profile>
+        -->
         <profile>
             <id>virtualDependencies</id>
             <activation>
diff --git a/integration-tests/kubernetes/src/test/java/org/apache/camel/quarkus/component/kubernetes/it/KubernetesTest.java b/integration-tests/kubernetes/src/test/java/org/apache/camel/quarkus/component/kubernetes/it/KubernetesTest.java
index 4529ac5abb..7c3df6b2c4 100644
--- a/integration-tests/kubernetes/src/test/java/org/apache/camel/quarkus/component/kubernetes/it/KubernetesTest.java
+++ b/integration-tests/kubernetes/src/test/java/org/apache/camel/quarkus/component/kubernetes/it/KubernetesTest.java
@@ -25,10 +25,12 @@ import io.quarkus.test.junit.QuarkusTest;
 import io.quarkus.test.kubernetes.client.KubernetesServerTestResource;
 import io.quarkus.test.kubernetes.client.KubernetesTestServer;
 import io.restassured.RestAssured;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.hamcrest.Matchers.is;
 
+@Disabled //https://github.com/apache/camel-quarkus/issues/5318
 @QuarkusTest
 @QuarkusTestResource(KubernetesServerTestResource.class)
 public class KubernetesTest {
diff --git a/integration-tests/master-openshift/pom.xml b/integration-tests/master-openshift/pom.xml
index ce8f5b2e4c..fc59424676 100644
--- a/integration-tests/master-openshift/pom.xml
+++ b/integration-tests/master-openshift/pom.xml
@@ -154,6 +154,8 @@
                 </plugins>
             </build>
         </profile>
+        <!--
+        // https://github.com/apache/camel-quarkus/issues/5318
          <profile>
              <id>native</id>
              <activation>
@@ -191,6 +193,7 @@
                  </plugins>
              </build>
          </profile>
+         -->
          <profile>
              <id>virtualDependencies</id>
              <activation>
diff --git a/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java b/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java
index 73431d68a3..57157d0c77 100644
--- a/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java
+++ b/integration-tests/master-openshift/src/test/java/org/apache/camel/quarkus/component/master/it/MasterOpenShiftTest.java
@@ -36,6 +36,7 @@ import org.awaitility.Awaitility;
 import org.eclipse.microprofile.config.Config;
 import org.eclipse.microprofile.config.ConfigProvider;
 import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 import org.junit.jupiter.api.condition.DisabledOnOs;
 import org.junit.jupiter.api.condition.OS;
@@ -45,6 +46,7 @@ import org.zeroturnaround.exec.StartedProcess;
 import static org.hamcrest.MatcherAssert.assertThat;
 import static org.hamcrest.Matchers.emptyString;
 
+@Disabled // https://github.com/apache/camel-quarkus/issues/5318
 @QuarkusTestResource(MasterOpenShiftTestResource.class)
 @QuarkusTest
 class MasterOpenShiftTest {