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 2022/10/06 08:37:04 UTC

[camel-quarkus] 03/04: Disable tests for native mode serialization due to #4148

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

commit ce37a72fe06d0bf60f5ba2fccb105c301251ab83
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Sep 29 14:14:43 2022 +0100

    Disable tests for native mode serialization due to #4148
---
 .../test/java/org/apache/camel/quarkus/component/http/it/HttpTest.java  | 2 ++
 .../apache/camel/quarkus/messaging/jms/AbstractJmsMessagingTest.java    | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/integration-tests/http/src/test/java/org/apache/camel/quarkus/component/http/it/HttpTest.java b/integration-tests/http/src/test/java/org/apache/camel/quarkus/component/http/it/HttpTest.java
index e9d330bc5f..1d2bd1e744 100644
--- a/integration-tests/http/src/test/java/org/apache/camel/quarkus/component/http/it/HttpTest.java
+++ b/integration-tests/http/src/test/java/org/apache/camel/quarkus/component/http/it/HttpTest.java
@@ -17,6 +17,7 @@
 package org.apache.camel.quarkus.component.http.it;
 
 import io.quarkus.test.common.QuarkusTestResource;
+import io.quarkus.test.junit.DisabledOnIntegrationTest;
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.http.ContentType;
@@ -157,6 +158,7 @@ class HttpTest {
                 .body(is("Netty Hello World Compressed"));
     }
 
+    @DisabledOnIntegrationTest("https://github.com/apache/camel-quarkus/issues/4148")
     @ParameterizedTest
     @MethodSource("getHttpComponentNames")
     public void transferException(String component) {
diff --git a/integration-tests/messaging/jms/src/test/java/org/apache/camel/quarkus/messaging/jms/AbstractJmsMessagingTest.java b/integration-tests/messaging/jms/src/test/java/org/apache/camel/quarkus/messaging/jms/AbstractJmsMessagingTest.java
index 6b0c427058..17ff918f31 100644
--- a/integration-tests/messaging/jms/src/test/java/org/apache/camel/quarkus/messaging/jms/AbstractJmsMessagingTest.java
+++ b/integration-tests/messaging/jms/src/test/java/org/apache/camel/quarkus/messaging/jms/AbstractJmsMessagingTest.java
@@ -18,6 +18,7 @@ package org.apache.camel.quarkus.messaging.jms;
 
 import java.util.UUID;
 
+import io.quarkus.test.junit.DisabledOnIntegrationTest;
 import io.restassured.RestAssured;
 import io.restassured.http.ContentType;
 import org.apache.camel.quarkus.component.messaging.it.AbstractMessagingTest;
@@ -39,6 +40,7 @@ public class AbstractJmsMessagingTest extends AbstractMessagingTest {
                 .body(is(message));
     }
 
+    @DisabledOnIntegrationTest("https://github.com/apache/camel-quarkus/issues/4148")
     @Test
     public void testJmsTransferException() {
         RestAssured.given()