Polish "Add HealthIndicator for Hazelcast"
See gh-17499
This commit is contained in:
@@ -16,12 +16,7 @@
|
||||
|
||||
package org.springframework.boot.actuate.hazelcast;
|
||||
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import com.hazelcast.core.Endpoint;
|
||||
import com.hazelcast.core.HazelcastInstance;
|
||||
import com.hazelcast.transaction.TransactionalTask;
|
||||
|
||||
import org.springframework.boot.actuate.health.AbstractHealthIndicator;
|
||||
import org.springframework.boot.actuate.health.Health;
|
||||
@@ -29,15 +24,14 @@ import org.springframework.boot.actuate.health.HealthIndicator;
|
||||
import org.springframework.util.Assert;
|
||||
|
||||
/**
|
||||
* {@link HealthIndicator} for a Hazelcast.
|
||||
* {@link HealthIndicator} for Hazelcast.
|
||||
*
|
||||
* @author Dmytro Nosan
|
||||
* @author Stephane Nicoll
|
||||
* @since 2.2.0
|
||||
*/
|
||||
public class HazelcastHealthIndicator extends AbstractHealthIndicator {
|
||||
|
||||
private static final TransactionalTask<?> TASK = (context) -> null;
|
||||
|
||||
private final HazelcastInstance hazelcast;
|
||||
|
||||
public HazelcastHealthIndicator(HazelcastInstance hazelcast) {
|
||||
@@ -48,16 +42,11 @@ public class HazelcastHealthIndicator extends AbstractHealthIndicator {
|
||||
|
||||
@Override
|
||||
protected void doHealthCheck(Health.Builder builder) {
|
||||
this.hazelcast.executeTransaction(TASK);
|
||||
builder.up().withDetails(getDetails());
|
||||
}
|
||||
|
||||
private Map<String, Object> getDetails() {
|
||||
Map<String, Object> details = new LinkedHashMap<>();
|
||||
Endpoint endpoint = this.hazelcast.getLocalEndpoint();
|
||||
details.put("name", this.hazelcast.getName());
|
||||
details.put("uuid", endpoint.getUuid());
|
||||
return details;
|
||||
this.hazelcast.executeTransaction((context) -> {
|
||||
builder.up().withDetail("name", this.hazelcast.getName()).withDetail("uuid",
|
||||
this.hazelcast.getLocalEndpoint().getUuid());
|
||||
return null;
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -19,6 +19,7 @@ package org.springframework.boot.actuate.hazelcast;
|
||||
import com.hazelcast.core.Endpoint;
|
||||
import com.hazelcast.core.HazelcastException;
|
||||
import com.hazelcast.core.HazelcastInstance;
|
||||
import com.hazelcast.transaction.TransactionalTask;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.springframework.boot.actuate.health.Health;
|
||||
@@ -33,22 +34,23 @@ import static org.mockito.Mockito.mock;
|
||||
* Tests for {@link HazelcastHealthIndicator}.
|
||||
*
|
||||
* @author Dmytro Nosan
|
||||
* @author Stephane Nicoll
|
||||
*/
|
||||
class HazelcastHealthIndicatorTests {
|
||||
|
||||
private final HazelcastInstance hazelcast = mock(HazelcastInstance.class);
|
||||
|
||||
private final HazelcastHealthIndicator healthIndicator = new HazelcastHealthIndicator(this.hazelcast);
|
||||
|
||||
@Test
|
||||
void hazelcastUp() {
|
||||
Endpoint endpoint = mock(Endpoint.class);
|
||||
when(this.hazelcast.getName()).thenReturn("hz0-instance");
|
||||
when(this.hazelcast.getLocalEndpoint()).thenReturn(endpoint);
|
||||
when(endpoint.getUuid()).thenReturn("7581bb2f-879f-413f-b574-0071d7519eb0");
|
||||
|
||||
Health health = this.healthIndicator.health();
|
||||
|
||||
when(this.hazelcast.executeTransaction(any())).thenAnswer((invocation) -> {
|
||||
TransactionalTask<?> task = invocation.getArgument(0);
|
||||
return task.execute(null);
|
||||
});
|
||||
Health health = new HazelcastHealthIndicator(this.hazelcast).health();
|
||||
assertThat(health.getStatus()).isEqualTo(Status.UP);
|
||||
assertThat(health.getDetails()).containsOnlyKeys("name", "uuid").containsEntry("name", "hz0-instance")
|
||||
.containsEntry("uuid", "7581bb2f-879f-413f-b574-0071d7519eb0");
|
||||
@@ -57,9 +59,7 @@ class HazelcastHealthIndicatorTests {
|
||||
@Test
|
||||
void hazelcastDown() {
|
||||
when(this.hazelcast.executeTransaction(any())).thenThrow(new HazelcastException());
|
||||
|
||||
Health health = this.healthIndicator.health();
|
||||
|
||||
Health health = new HazelcastHealthIndicator(this.hazelcast).health();
|
||||
assertThat(health.getStatus()).isEqualTo(Status.DOWN);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user