From 877fbf5c3e559e8730498dee399969449046407a Mon Sep 17 00:00:00 2001 From: James Netherton Date: Tue, 23 Jul 2024 10:02:58 +0100 Subject: [PATCH] Disable MicroProfile Fault Tolerance tests due to #6285 --- integration-tests/microprofile-fault-tolerance/pom.xml | 2 ++ .../MicroProfileFaultToleranceConfigurationIT.java | 2 ++ .../MicroProfileFaultToleranceConfigurationTest.java | 2 ++ .../it/faulttolerance/MicroprofileFaultToleranceIT.java | 2 ++ .../it/faulttolerance/MicroprofileFaultToleranceTest.java | 2 ++ 5 files changed, 10 insertions(+) diff --git a/integration-tests/microprofile-fault-tolerance/pom.xml b/integration-tests/microprofile-fault-tolerance/pom.xml index b5a43ca17c84..90a53d2e6080 100644 --- a/integration-tests/microprofile-fault-tolerance/pom.xml +++ b/integration-tests/microprofile-fault-tolerance/pom.xml @@ -70,6 +70,7 @@ + virtualDependencies diff --git a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationIT.java b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationIT.java index 3abcc18d1d49..ed483fb3b845 100644 --- a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationIT.java +++ b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationIT.java @@ -17,7 +17,9 @@ package org.apache.camel.quarkus.component.microprofile.it.faulttolerance; import io.quarkus.test.junit.QuarkusIntegrationTest; +import org.junit.jupiter.api.Disabled; +@Disabled("https://github.com/apache/camel-quarkus/issues/6285") @QuarkusIntegrationTest class MicroProfileFaultToleranceConfigurationIT extends MicroProfileFaultToleranceConfigurationTest { } diff --git a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationTest.java b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationTest.java index ea1a3c339812..5c91c3bde3b1 100644 --- a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationTest.java +++ b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationTest.java @@ -19,10 +19,12 @@ import io.quarkus.test.junit.QuarkusTest; import io.quarkus.test.junit.TestProfile; 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/6285") @QuarkusTest @TestProfile(MicroProfileFaultToleranceConfigurationTestProfile.class) class MicroProfileFaultToleranceConfigurationTest { diff --git a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java index 1362ada770ae..53c6a396b3ec 100644 --- a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java +++ b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java @@ -17,7 +17,9 @@ package org.apache.camel.quarkus.component.microprofile.it.faulttolerance; import io.quarkus.test.junit.QuarkusIntegrationTest; +import org.junit.jupiter.api.Disabled; +@Disabled("https://github.com/apache/camel-quarkus/issues/6285") @QuarkusIntegrationTest class MicroprofileFaultToleranceIT extends MicroprofileFaultToleranceTest { diff --git a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java index 4d5378c12aaa..b264f0d3767f 100644 --- a/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java +++ b/integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java @@ -18,6 +18,7 @@ import io.quarkus.test.junit.QuarkusTest; import io.restassured.RestAssured; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource; @@ -26,6 +27,7 @@ import static org.apache.camel.quarkus.component.microprofile.it.faulttolerance.MicroProfileFaultToleranceRoutes.EXCEPTION_MESSAGE; import static org.hamcrest.Matchers.is; +@Disabled("https://github.com/apache/camel-quarkus/issues/6285") @QuarkusTest class MicroprofileFaultToleranceTest {