|
|
|
@ -49,8 +49,9 @@ class CouchbaseReactiveHealthIndicatorTests {
|
|
|
|
|
Cluster cluster = mock(Cluster.class);
|
|
|
|
|
CouchbaseReactiveHealthIndicator healthIndicator = new CouchbaseReactiveHealthIndicator(cluster);
|
|
|
|
|
Map<ServiceType, List<EndpointDiagnostics>> endpoints = Collections.singletonMap(ServiceType.KV,
|
|
|
|
|
Collections.singletonList(new EndpointDiagnostics(ServiceType.KV, EndpointState.CONNECTED, "127.0.0.1",
|
|
|
|
|
"127.0.0.1", Optional.empty(), Optional.of(1234L), Optional.of("endpoint-1"))));
|
|
|
|
|
Collections.singletonList(
|
|
|
|
|
new EndpointDiagnostics(ServiceType.KV, EndpointState.CONNECTED, "127.0.0.1", "127.0.0.1",
|
|
|
|
|
Optional.empty(), Optional.of(1234L), Optional.of("endpoint-1"), Optional.empty())));
|
|
|
|
|
DiagnosticsResult diagnostics = new DiagnosticsResult(endpoints, "test-sdk", "test-id");
|
|
|
|
|
given(cluster.diagnostics()).willReturn(diagnostics);
|
|
|
|
|
Health health = healthIndicator.health().block(Duration.ofSeconds(30));
|
|
|
|
@ -69,9 +70,9 @@ class CouchbaseReactiveHealthIndicatorTests {
|
|
|
|
|
Map<ServiceType, List<EndpointDiagnostics>> endpoints = Collections.singletonMap(ServiceType.KV,
|
|
|
|
|
Arrays.asList(
|
|
|
|
|
new EndpointDiagnostics(ServiceType.KV, EndpointState.CONNECTED, "127.0.0.1", "127.0.0.1",
|
|
|
|
|
Optional.empty(), Optional.of(1234L), Optional.of("endpoint-1")),
|
|
|
|
|
Optional.empty(), Optional.of(1234L), Optional.of("endpoint-1"), Optional.empty()),
|
|
|
|
|
new EndpointDiagnostics(ServiceType.KV, EndpointState.CONNECTING, "127.0.0.1", "127.0.0.1",
|
|
|
|
|
Optional.empty(), Optional.of(1234L), Optional.of("endpoint-2"))));
|
|
|
|
|
Optional.empty(), Optional.of(1234L), Optional.of("endpoint-2"), Optional.empty())));
|
|
|
|
|
DiagnosticsResult diagnostics = new DiagnosticsResult(endpoints, "test-sdk", "test-id");
|
|
|
|
|
given(cluster.diagnostics()).willReturn(diagnostics);
|
|
|
|
|
Health health = healthIndicator.health().block(Duration.ofSeconds(30));
|
|
|
|
|