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

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


    from 95b20582e7 Disabled Crypto tests in FIPS
     add 3313c0648d Split MicroProfile integration tests into separate modules

No new revisions were added by this update.

Summary of changes:
 .../foundation/core-fault-tolerance/pom.xml        | 128 -------------
 .../it/CoreFaultToleranceResource.java             |  70 --------
 .../it/CoreFaultToleranceRoutes.java               |  38 ----
 .../src/main/resources/application.properties      |  27 ---
 .../faulttolerance/it/CoreFaultToleranceIT.java    |  23 ---
 integration-test-groups/foundation/pom.xml         |   1 -
 .../pom.xml                                        |  26 +--
 .../it/faulttolerance/GreetingBean.java            |   0
 .../MicroProfileFaultToleranceHelper.java          |   0
 .../MicroProfileFaultToleranceRoutes.java          |  11 ++
 .../MicroprofileFaultToleranceProducers.java       |  16 +-
 .../MicroprofileFaultToleranceResource.java        |  38 ++++
 ...MicroProfileFaultToleranceConfigurationIT.java} |   3 +-
 ...icroProfileFaultToleranceConfigurationTest.java |  14 +-
 ...fileFaultToleranceConfigurationTestProfile.java |  22 +--
 .../MicroprofileFaultToleranceIT.java              |   0
 .../MicroprofileFaultToleranceTest.java            |   0
 .../microprofile-health}/pom.xml                   |  16 +-
 .../it/health/CustomHealthCheckRepository.java     |   0
 .../microprofile/it/health/FailingHealthCheck.java |   0
 .../microprofile/it/health/LivenessCheck.java      |   0
 .../it/health/MicroProfileHealthResource.java      |   0
 .../it/health/MicroProfileHealthRouteBuilder.java  |   0
 .../microprofile/it/health/ReadinessCheck.java     |   0
 .../microprofile/it/health/SimpleHealthCheck.java  |   0
 .../src/main/resources/application.properties      |   0
 .../it/health/MicroProfileHealthTest.java          |   0
 .../it/health/MicroprofileHealthIT.java            |   0
 integration-tests/microprofile/pom.xml             | 200 ---------------------
 integration-tests/pom.xml                          |   3 +-
 tooling/scripts/test-categories.yaml               |   3 +-
 31 files changed, 101 insertions(+), 538 deletions(-)
 delete mode 100644 
integration-test-groups/foundation/core-fault-tolerance/pom.xml
 delete mode 100644 
integration-test-groups/foundation/core-fault-tolerance/src/main/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceResource.java
 delete mode 100644 
integration-test-groups/foundation/core-fault-tolerance/src/main/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceRoutes.java
 delete mode 100644 
integration-test-groups/foundation/core-fault-tolerance/src/main/resources/application.properties
 delete mode 100644 
integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceIT.java
 copy integration-tests/{jsonpath => microprofile-fault-tolerance}/pom.xml (90%)
 rename integration-tests/{microprofile => 
microprofile-fault-tolerance}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/GreetingBean.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-fault-tolerance}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceHelper.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-fault-tolerance}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceRoutes.java
 (91%)
 rename 
integration-test-groups/foundation/core-fault-tolerance/src/main/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceProducers.java
 => 
integration-tests/microprofile-fault-tolerance/src/main/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceProducers.java
 (84%)
 rename integration-tests/{microprofile => 
microprofile-fault-tolerance}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceResource.java
 (57%)
 copy 
integration-tests/{microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java
 => 
microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationIT.java}
 (90%)
 rename 
integration-test-groups/foundation/core-fault-tolerance/src/test/java/org/apache/camel/quarkus/core/faulttolerance/it/CoreFaultToleranceTest.java
 => 
integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationTest.java
 (77%)
 copy 
integration-test-groups/foundation/log/src/test/java/org/apache/camel/quarkus/component/log/it/MdcLoggingTestProfile.java
 => 
integration-tests/microprofile-fault-tolerance/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroProfileFaultToleranceConfigurationTestProfile.java
 (57%)
 rename integration-tests/{microprofile => 
microprofile-fault-tolerance}/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceIT.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-fault-tolerance}/src/test/java/org/apache/camel/quarkus/component/microprofile/it/faulttolerance/MicroprofileFaultToleranceTest.java
 (100%)
 copy {integration-test-groups/foundation/mock => 
integration-tests/microprofile-health}/pom.xml (91%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/CustomHealthCheckRepository.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/FailingHealthCheck.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/LivenessCheck.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthResource.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthRouteBuilder.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/ReadinessCheck.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/SimpleHealthCheck.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/main/resources/application.properties (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthTest.java
 (100%)
 rename integration-tests/{microprofile => 
microprofile-health}/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroprofileHealthIT.java
 (100%)
 delete mode 100644 integration-tests/microprofile/pom.xml

Reply via email to