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 2021/03/29 09:47:14 UTC

[camel-quarkus] 01/02: Add test coverage for a custom HealthCheckRepository

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

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

commit fb3bc03708e3afd6523810e98474ebb0ddbcaaa5
Author: James Netherton <ja...@gmail.com>
AuthorDate: Tue Mar 23 16:09:14 2021 +0000

    Add test coverage for a custom HealthCheckRepository
    
    Fixes #2365
---
 .../it/health/CustomHealthCheckRepository.java     | 82 ++++++++++++++++++++++
 .../it/health/MicroProfileHealthTest.java          |  1 +
 2 files changed, 83 insertions(+)

diff --git a/integration-tests/microprofile/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/CustomHealthCheckRepository.java b/integration-tests/microprofile/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/CustomHealthCheckRepository.java
new file mode 100644
index 0000000..c54665d
--- /dev/null
+++ b/integration-tests/microprofile/src/main/java/org/apache/camel/quarkus/component/microprofile/it/health/CustomHealthCheckRepository.java
@@ -0,0 +1,82 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.camel.quarkus.component.microprofile.it.health;
+
+import java.util.Collections;
+import java.util.Map;
+import java.util.stream.Stream;
+
+import org.apache.camel.health.HealthCheck;
+import org.apache.camel.health.HealthCheckConfiguration;
+import org.apache.camel.health.HealthCheckRepository;
+import org.apache.camel.health.HealthCheckResultBuilder;
+import org.apache.camel.impl.health.AbstractHealthCheck;
+
+/**
+ * Fictitious HealthCheckRepository returning a hard coded check to verify auto discovery is working
+ */
+public class CustomHealthCheckRepository implements HealthCheckRepository {
+
+    private final HealthCheck check = new AlwaysUpHealthCheck();
+
+    @Override
+    public boolean isEnabled() {
+        return true;
+    }
+
+    @Override
+    public void setEnabled(boolean enabled) {
+        // Noop
+    }
+
+    @Override
+    public void setConfigurations(Map<String, HealthCheckConfiguration> configurations) {
+        // Noop
+    }
+
+    @Override
+    public Map<String, HealthCheckConfiguration> getConfigurations() {
+        return Collections.emptyMap();
+    }
+
+    @Override
+    public void addConfiguration(String id, HealthCheckConfiguration configuration) {
+        // Noop
+    }
+
+    @Override
+    public Stream<HealthCheck> stream() {
+        return Stream.of(check);
+    }
+
+    @Override
+    public String getId() {
+        return "custom-health-repo";
+    }
+
+    static final class AlwaysUpHealthCheck extends AbstractHealthCheck {
+
+        protected AlwaysUpHealthCheck() {
+            super("custom", "always-up");
+        }
+
+        @Override
+        protected void doCall(HealthCheckResultBuilder builder, Map<String, Object> options) {
+            builder.up().build();
+        }
+    }
+}
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 49e36ba..4d934b8 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
@@ -39,6 +39,7 @@ class MicroProfileHealthTest {
                         containsInAnyOrder("camel-readiness-checks", "camel-liveness-checks", "camel-context-check"),
                         "checks.data.contextStatus", containsInAnyOrder(null, null, "Started"),
                         "checks.data.'route:healthyRoute'", containsInAnyOrder(null, null, "UP"),
+                        "checks.data.always-up", containsInAnyOrder(null, "UP", "UP"),
                         "checks.data.name", containsInAnyOrder(null, null, "quarkus-camel-example"));
     }