This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 17a559652d5eca26974e6d89f8af567c5e85a16f Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Fri Apr 12 11:20:50 2024 +0100 Disable microprofile-fault-tolerance testing due to #5995 --- .../foundation/core-fault-tolerance/pom.xml | 2 ++ .../core/faulttolerance/it/CoreFaultToleranceIT.java | 2 ++ .../faulttolerance/it/CoreFaultToleranceTest.java | 2 ++ integration-tests/foundation-grouped/pom.xml | 4 ++++ integration-tests/microprofile/pom.xml | 19 +++++++++++++++++++ .../faulttolerance/MicroprofileFaultToleranceIT.java | 2 ++ .../MicroprofileFaultToleranceTest.java | 2 ++ 7 files changed, 33 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-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceIT.java b/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceIT.java index 76f553a17b..a05c81faf2 100644 --- a/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceIT.java +++ b/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceIT.java @@ -17,7 +17,9 @@ package org.apache.camel.quarkus.core.faulttolerance.it; import io.quarkus.test.junit.QuarkusIntegrationTest; +import org.junit.jupiter.api.Disabled; +@Disabled("https://github.com/apache/camel-quarkus/issues/5995") @QuarkusIntegrationTest public class CoreFaultToleranceIT extends CoreFaultToleranceTest { } diff --git a/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceTest.java b/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceTest.java index 6aaa60aaf1..6ccdcf4364 100644 --- a/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceTest.java +++ b/integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceTest.java @@ -17,11 +17,13 @@ package org.apache.camel.quarkus.core.faulttolerance.it; import io.quarkus.test.junit.QuarkusTest; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static io.restassured.RestAssured.get; import static org.hamcrest.Matchers.is; +@Disabled("https://github.com/apache/camel-quarkus/issues/5995") @QuarkusTest public class CoreFaultToleranceTest { 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..59a0b401bf 100644 --- a/integration-tests/microprofile/pom.xml +++ b/integration-tests/microprofile/pom.xml @@ -43,10 +43,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-microprofile-health</artifactId> @@ -78,6 +80,23 @@ </dependency> </dependencies> + <!-- TODO: https://github.com/apache/camel-quarkus/issues/5995 --> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <excludes> + <exclude>org/apache/camel/quarkus/component/microprofile/it/faulttolerance/**</exclude> + </excludes> + <testExcludes> + <exclude>org/apache/camel/quarkus/component/microprofile/it/faulttolerance/**</exclude> + </testExcludes> + </configuration> + </plugin> + </plugins> + </build> <profiles> <profile> 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 {