This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit a8326fddfeaa80dfad086e7125128d7325f57a65 Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Fri Apr 12 11:42:19 2024 +0100 Disable microprofile-fault-tolerance testing due to #5995 --- integration-test-groups/foundation/core-fault-tolerance/pom.xml | 2 ++ integration-tests/foundation-grouped/pom.xml | 4 ++++ integration-tests/microprofile/pom.xml | 2 ++ .../microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java | 2 ++ .../it/faulttolerance/MicroprofileFaultToleranceTest.java | 2 ++ .../component/microprofile/it/health/MicroProfileHealthTest.java | 2 ++ .../component/microprofile/it/health/MicroprofileHealthIT.java | 2 ++ 7 files changed, 16 insertions(+) diff --git a/integration-test-groups/foundation/core-fault-tolerance/pom.xml b/integration-test-groups/foundation/core-fault-tolerance/pom.xml index d4175591a2..6d9763ea47 100644 --- a/integration-test-groups/foundation/core-fault-tolerance/pom.xml +++ b/integration-test-groups/foundation/core-fault-tolerance/pom.xml @@ -59,6 +59,7 @@ </dependencies> <profiles> + <!-- TODO: https://github.com/apache/camel-quarkus/issues/5995 <profile> <id>native</id> <activation> @@ -86,6 +87,7 @@ </plugins> </build> </profile> + --> <profile> <id>virtualDependencies</id> <activation> diff --git a/integration-tests/foundation-grouped/pom.xml b/integration-tests/foundation-grouped/pom.xml index 7c9c1ceac0..1120c376a7 100644 --- a/integration-tests/foundation-grouped/pom.xml +++ b/integration-tests/foundation-grouped/pom.xml @@ -112,10 +112,12 @@ <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-log</artifactId> </dependency> + <!-- TODO: https://github.com/apache/camel-quarkus/issues/5995 <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-microprofile-fault-tolerance</artifactId> </dependency> + --> <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-mock</artifactId> @@ -212,6 +214,8 @@ <group-tests.source.dir>${maven.multiModuleProjectDirectory}/integration-test-groups/foundation</group-tests.source.dir> <group-tests.dest.module.dir>${project.basedir}</group-tests.dest.module.dir> <group-tests.concat.rel.paths>src/main/resources/application.properties</group-tests.concat.rel.paths> + <!-- TODO: https://github.com/apache/camel-quarkus/issues/5995 --> + <group-tests.files.excludes>core-fault-tolerance</group-tests.files.excludes> </properties> </configuration> </execution> diff --git a/integration-tests/microprofile/pom.xml b/integration-tests/microprofile/pom.xml index 955d543feb..147b2a2d30 100644 --- a/integration-tests/microprofile/pom.xml +++ b/integration-tests/microprofile/pom.xml @@ -80,6 +80,7 @@ <profiles> + <!-- https://github.com/apache/camel-quarkus/issues/5995 <profile> <id>native</id> <activation> @@ -107,6 +108,7 @@ </plugins> </build> </profile> + --> <profile> <id>virtualDependencies</id> <activation> diff --git a/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java b/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java index 1362ada770..aae58346ea 100644 --- a/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java +++ b/integration-tests/microprofile/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/5995") @QuarkusIntegrationTest class MicroprofileFaultToleranceIT extends MicroprofileFaultToleranceTest { diff --git a/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java b/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java index 4d5378c12a..842a2801ba 100644 --- a/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java +++ b/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java @@ -18,6 +18,7 @@ package org.apache.camel.quarkus.component.microprofile.it.faulttolerance; 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 org.junit.jupiter.params.provider.ValueSource; 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/5995") @QuarkusTest class MicroprofileFaultToleranceTest { diff --git a/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthTest.java b/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthTest.java index 4c24962fd0..772f471006 100644 --- a/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthTest.java +++ b/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthTest.java @@ -20,6 +20,7 @@ import io.quarkus.test.junit.QuarkusTest; import io.restassured.RestAssured; import io.restassured.http.ContentType; import org.apache.camel.ServiceStatus; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static org.hamcrest.Matchers.contains; @@ -27,6 +28,7 @@ import static org.hamcrest.Matchers.containsString; import static org.hamcrest.Matchers.is; import static org.hamcrest.Matchers.notNullValue; +@Disabled("https://github.com/apache/camel-quarkus/issues/5995") @QuarkusTest class MicroProfileHealthTest { diff --git a/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroprofileHealthIT.java b/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroprofileHealthIT.java index 7df16a79cc..4777a6de27 100644 --- a/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroprofileHealthIT.java +++ b/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroprofileHealthIT.java @@ -17,7 +17,9 @@ package org.apache.camel.quarkus.component.microprofile.it.health; import io.quarkus.test.junit.QuarkusIntegrationTest; +import org.junit.jupiter.api.Disabled; +@Disabled("https://github.com/apache/camel-quarkus/issues/5995") @QuarkusIntegrationTest class MicroprofileHealthIT extends MicroProfileHealthTest {