You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2021/12/06 16:21:54 UTC

[camel-quarkus] branch quarkus-main updated: Disable vertx-kafka integration tests and native build due to #3358

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

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


The following commit(s) were added to refs/heads/quarkus-main by this push:
     new 52b698e  Disable vertx-kafka integration tests and native build due to #3358
52b698e is described below

commit 52b698e828fc517958cfb8124d266b07eba9c1bd
Author: James Netherton <ja...@gmail.com>
AuthorDate: Mon Dec 6 16:21:36 2021 +0000

    Disable vertx-kafka integration tests and native build due to #3358
---
 integration-tests/vertx-kafka/pom.xml                                   | 2 ++
 .../org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java | 2 ++
 .../apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java   | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/integration-tests/vertx-kafka/pom.xml b/integration-tests/vertx-kafka/pom.xml
index 978b597..b7c9bee 100644
--- a/integration-tests/vertx-kafka/pom.xml
+++ b/integration-tests/vertx-kafka/pom.xml
@@ -59,6 +59,7 @@
     </dependencies>
 
     <profiles>
+        <!-- TODO: https://github.com/apache/camel-quarkus/issues/3358
         <profile>
             <id>native</id>
             <activation>
@@ -86,6 +87,7 @@
                 </plugins>
             </build>
         </profile>
+        -->
         <profile>
             <id>virtualDependencies</id>
             <activation>
diff --git a/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java b/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java
index b969afc..c98665c 100644
--- a/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java
+++ b/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java
@@ -16,9 +16,11 @@
  */
 package org.apache.camel.quarkus.component.vertx.kafka.it;
 
+import io.quarkus.test.junit.DisabledOnNativeImage;
 import io.quarkus.test.junit.NativeImageTest;
 
 @NativeImageTest
+@DisabledOnNativeImage("https://github.com/apache/camel-quarkus/issues/3358")
 class VertxKafkaIT extends VertxKafkaTest {
 
 }
diff --git a/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java b/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java
index 28c459f..ebf11f1 100644
--- a/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java
+++ b/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java
@@ -20,12 +20,14 @@ import io.quarkus.test.common.QuarkusTestResource;
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.http.ContentType;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.hamcrest.CoreMatchers.is;
 
 @QuarkusTest
 @QuarkusTestResource(VertxKafkaTestResource.class)
+@Disabled("https://github.com/apache/camel-quarkus/issues/3358")
 class VertxKafkaTest {
 
     @Test