use of de.codecentric.boot.admin.server.domain.values.Endpoints in project spring-boot-admin by codecentric.
the class EndpointsMixinTest method verifyDeserialize.
@Test
public void verifyDeserialize() throws JSONException, JsonProcessingException {
String json = new JSONArray().put(new JSONObject().put("id", "info").put("url", "http://localhost:8080/info")).put(new JSONObject().put("id", "health").put("url", "http://localhost:8080/health")).toString();
Endpoints endpoints = objectMapper.readValue(json, Endpoints.class);
assertThat(endpoints).isNotNull();
assertThat(endpoints).containsExactlyInAnyOrder(Endpoint.of("info", "http://localhost:8080/info"), Endpoint.of("health", "http://localhost:8080/health"));
}
use of de.codecentric.boot.admin.server.domain.values.Endpoints in project spring-boot-admin by codecentric.
the class AbstractInstanceRepositoryTest method should_computeIfPresent.
@Test
public void should_computeIfPresent() {
AtomicLong counter = new AtomicLong(3L);
Endpoints infoEndpoint = Endpoints.single("info", "info");
// given
StepVerifier.create(this.repository.save(this.instance1)).expectNextCount(1).verifyComplete();
// when
StepVerifier.create(this.repository.computeIfPresent(this.instance1.getId(), (key, value) -> {
if (counter.getAndDecrement() > 0L) {
// causes OptimistickLockException
return Mono.just(this.instance1);
} else {
return Mono.just(value.withEndpoints(infoEndpoint));
}
})).expectNext(this.instance1.withEndpoints(infoEndpoint)).verifyComplete();
// then
StepVerifier.create(this.repository.find(this.instance1.getId())).expectNext(this.instance1.withEndpoints(infoEndpoint)).verifyComplete();
}
use of de.codecentric.boot.admin.server.domain.values.Endpoints in project spring-boot-admin by codecentric.
the class Instance method withEndpoints.
public Instance withEndpoints(Endpoints endpoints) {
Assert.notNull(endpoints, "'endpoints' must not be null");
Endpoints endpointsWithHealth = (this.registration != null) ? endpoints.withEndpoint(Endpoint.HEALTH, this.registration.getHealthUrl()) : endpoints;
if (Objects.equals(this.endpoints, endpointsWithHealth)) {
return this;
}
return this.apply(new InstanceEndpointsDetectedEvent(this.id, this.nextVersion(), endpoints), true);
}
use of de.codecentric.boot.admin.server.domain.values.Endpoints in project spring-boot-admin by codecentric.
the class Instance method apply.
private Instance apply(InstanceEvent event, boolean isNewEvent) {
Assert.notNull(event, "'event' must not be null");
Assert.isTrue(this.id.equals(event.getInstance()), "'event' must refer the same instance");
Assert.isTrue(event.getVersion() >= this.nextVersion(), () -> "Event " + event.getVersion() + " must be greater or equal to " + this.nextVersion());
List<InstanceEvent> unsavedEvents = appendToEvents(event, isNewEvent);
if (event instanceof InstanceRegisteredEvent) {
Registration registration = ((InstanceRegisteredEvent) event).getRegistration();
return new Instance(this.id, event.getVersion(), registration, true, StatusInfo.ofUnknown(), event.getTimestamp(), Info.empty(), Endpoints.empty(), updateBuildVersion(registration.getMetadata()), updateTags(registration.getMetadata()), unsavedEvents);
} else if (event instanceof InstanceRegistrationUpdatedEvent) {
Registration registration = ((InstanceRegistrationUpdatedEvent) event).getRegistration();
return new Instance(this.id, event.getVersion(), registration, this.registered, this.statusInfo, this.statusTimestamp, this.info, this.endpoints, updateBuildVersion(registration.getMetadata(), this.info.getValues()), updateTags(registration.getMetadata(), this.info.getValues()), unsavedEvents);
} else if (event instanceof InstanceStatusChangedEvent) {
StatusInfo statusInfo = ((InstanceStatusChangedEvent) event).getStatusInfo();
return new Instance(this.id, event.getVersion(), this.registration, this.registered, statusInfo, event.getTimestamp(), this.info, this.endpoints, this.buildVersion, this.tags, unsavedEvents);
} else if (event instanceof InstanceEndpointsDetectedEvent) {
Endpoints endpoints = ((InstanceEndpointsDetectedEvent) event).getEndpoints();
return new Instance(this.id, event.getVersion(), this.registration, this.registered, this.statusInfo, this.statusTimestamp, this.info, endpoints, this.buildVersion, this.tags, unsavedEvents);
} else if (event instanceof InstanceInfoChangedEvent) {
Info info = ((InstanceInfoChangedEvent) event).getInfo();
Map<String, ?> metaData = (this.registration != null) ? this.registration.getMetadata() : emptyMap();
return new Instance(this.id, event.getVersion(), this.registration, this.registered, this.statusInfo, this.statusTimestamp, info, this.endpoints, updateBuildVersion(metaData, info.getValues()), updateTags(metaData, info.getValues()), unsavedEvents);
} else if (event instanceof InstanceDeregisteredEvent) {
return new Instance(this.id, event.getVersion(), this.registration, false, StatusInfo.ofUnknown(), event.getTimestamp(), Info.empty(), Endpoints.empty(), null, Tags.empty(), unsavedEvents);
}
return this;
}
use of de.codecentric.boot.admin.server.domain.values.Endpoints in project spring-boot-admin by codecentric.
the class AbstractInstanceRepositoryTest method should_retry_compute.
@Test
public void should_retry_compute() {
AtomicLong counter = new AtomicLong(3L);
Endpoints infoEndpoint = Endpoints.single("info", "info");
// given
StepVerifier.create(this.repository.save(this.instance1)).expectNextCount(1).verifyComplete();
// when
StepVerifier.create(this.repository.compute(this.instance1.getId(), (key, value) -> {
if (counter.getAndDecrement() > 0L) {
// causes OptimistickLockException
return Mono.just(this.instance1);
} else {
return Mono.just(value.withEndpoints(infoEndpoint));
}
})).expectNext(this.instance1.withEndpoints(infoEndpoint)).verifyComplete();
// then
StepVerifier.create(this.repository.find(this.instance1.getId())).expectNext(this.instance1.withEndpoints(infoEndpoint)).verifyComplete();
}
Aggregations