Skip to content

Commit

Permalink
Merge pull request #563 from xstefank/remove-dependent-i559
Browse files Browse the repository at this point in the history
Destroy Dependent health checks
  • Loading branch information
xstefank authored Aug 29, 2024
2 parents 5b88e01 + 338a5ef commit 3598b56
Show file tree
Hide file tree
Showing 5 changed files with 163 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,37 @@ private synchronized void initChecks() {
checksInitialized = true;
}

private void initUnis(List<Uni<HealthCheckResponse>> list, Instance<HealthCheck> checks,
Instance<AsyncHealthCheck> asyncChecks) {
if (checks != null) {
for (Instance.Handle<HealthCheck> handle : checks.handles()) {
HealthCheck check = handle.get();
if (check != null && isHealthCheckEnabled(check)) {
list.add(asyncHealthCheckFactory.callSync(check).chain(response -> {
if (handle.getBean().getScope().equals(Dependent.class)) {
handle.destroy();
}
return Uni.createFrom().item(response);
}));
}
}
}

if (asyncChecks != null) {
for (Instance.Handle<AsyncHealthCheck> handle : asyncChecks.handles()) {
AsyncHealthCheck asyncCheck = handle.get();
if (asyncCheck != null && isHealthCheckEnabled(asyncCheck)) {
list.add(asyncHealthCheckFactory.callAsync(asyncCheck).chain(response -> {
if (handle.getBean().getScope().equals(Dependent.class)) {
handle.destroy();
}
return Uni.createFrom().item(response);
}));
}
}
}
}

private void initUnis(List<Uni<HealthCheckResponse>> list, Iterable<HealthCheck> checks,
Iterable<AsyncHealthCheck> asyncChecks) {
if (checks != null) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package io.smallrye.health.deployment;

import jakarta.annotation.PreDestroy;
import jakarta.enterprise.context.Dependent;

import org.eclipse.microprofile.health.HealthCheckResponse;
import org.eclipse.microprofile.health.Liveness;

import io.smallrye.health.api.AsyncHealthCheck;
import io.smallrye.mutiny.Uni;

@Dependent
@Liveness
public class AsyncDependentHealthCheck implements AsyncHealthCheck {

@Override
public Uni<HealthCheckResponse> call() {
return Uni.createFrom().item(HealthCheckResponse.up(AsyncDependentHealthCheck.class.getName()));
}

@PreDestroy
public void preDestroy() {
DependentCallRecorder.asyncHealthCheckPreDestroyCalled = true;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package io.smallrye.health.deployment;

public class DependentCallRecorder {

public static volatile boolean healthCheckPreDestroyCalled = false;
public static volatile boolean asyncHealthCheckPreDestroyCalled = false;

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package io.smallrye.health.deployment;

import jakarta.annotation.PreDestroy;
import jakarta.enterprise.context.Dependent;

import org.eclipse.microprofile.health.HealthCheck;
import org.eclipse.microprofile.health.HealthCheckResponse;
import org.eclipse.microprofile.health.Liveness;

@Dependent
@Liveness
public class DependentHealthCheck implements HealthCheck {

@Override
public org.eclipse.microprofile.health.HealthCheckResponse call() {
return HealthCheckResponse.up(DependentHealthCheck.class.getName());
}

@PreDestroy
public void preDestroy() {
DependentCallRecorder.healthCheckPreDestroyCalled = true;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
/*
* Copyright (c) 2024 Contributors to the Eclipse Foundation
*
* See the NOTICES file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* Licensed 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.
*
* SPDX-License-Identifier: Apache-2.0
*
*/

package io.smallrye.health.test;

import jakarta.json.JsonArray;
import jakarta.json.JsonObject;

import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.shrinkwrap.api.Archive;
import org.testng.Assert;
import org.testng.annotations.Test;

import io.smallrye.health.deployment.AsyncDependentHealthCheck;
import io.smallrye.health.deployment.DependentCallRecorder;
import io.smallrye.health.deployment.DependentHealthCheck;

public class DependentHealthChecksTest extends TCKBase {

@Deployment
public static Archive getDeployment() {
return DeploymentUtils.createWarFileWithClasses(DependentHealthChecksTest.class.getSimpleName(),
DependentHealthCheck.class, AsyncDependentHealthCheck.class, DependentCallRecorder.class, TCKBase.class);
}

@Test
public void testAsyncLiveness() {
Response response = getUrlLiveContents();

// status code
Assert.assertEquals(response.getStatus(), 200);

JsonObject json = readJson(response);

// response size
JsonArray checks = json.getJsonArray("checks");
Assert.assertEquals(checks.size(), 2, "Expected two check responses");

for (JsonObject check : checks.getValuesAs(JsonObject.class)) {
String id = check.getString("name");

if (id.equals(DependentHealthCheck.class.getName())) {
verifySuccessStatus(check);
Assert.assertTrue(DependentCallRecorder.healthCheckPreDestroyCalled,
"HealthCheck - PreDestroy method was not called");
} else if (id.equals(AsyncDependentHealthCheck.class.getName())) {
verifySuccessStatus(check);
Assert.assertTrue(DependentCallRecorder.asyncHealthCheckPreDestroyCalled,
"AsyncHealthCheck - PreDestroy method was not called");
} else {
Assert.fail("Unexpected response payload structure");
}
}

assertOverallSuccess(json);
}
}

0 comments on commit 3598b56

Please sign in to comment.