Delimit output value in failure analysis

See gh-31571
This commit is contained in:
TheoCaldas
2022-07-04 22:16:05 -03:00
committed by Stephane Nicoll
parent 3e3ea914bb
commit 869ed4f71a
6 changed files with 6 additions and 6 deletions

View File

@@ -63,7 +63,7 @@ class BindFailureAnalyzer extends AbstractFailureAnalyzer<BindException> {
private void buildDescription(StringBuilder description, ConfigurationProperty property) { private void buildDescription(StringBuilder description, ConfigurationProperty property) {
if (property != null) { if (property != null) {
description.append(String.format("%n Property: %s", property.getName())); description.append(String.format("%n Property: %s", property.getName()));
description.append(String.format("%n Value: %s", property.getValue())); description.append(String.format("%n Value: \"%s\"", property.getValue()));
description.append(String.format("%n Origin: %s", property.getOrigin())); description.append(String.format("%n Origin: %s", property.getOrigin()));
} }
} }

View File

@@ -75,7 +75,7 @@ class BindValidationFailureAnalyzer extends AbstractFailureAnalyzer<Throwable> {
private void appendFieldError(StringBuilder description, FieldError error) { private void appendFieldError(StringBuilder description, FieldError error) {
Origin origin = Origin.from(error); Origin origin = Origin.from(error);
description.append(String.format("%n Property: %s", error.getObjectName() + "." + error.getField())); description.append(String.format("%n Property: %s", error.getObjectName() + "." + error.getField()));
description.append(String.format("%n Value: %s", error.getRejectedValue())); description.append(String.format("%n Value: \"%s\"", error.getRejectedValue()));
if (origin != null) { if (origin != null) {
description.append(String.format("%n Origin: %s", origin)); description.append(String.format("%n Origin: %s", origin));
} }

View File

@@ -51,7 +51,7 @@ class UnboundConfigurationPropertyFailureAnalyzer
private void buildDescription(StringBuilder description, ConfigurationProperty property) { private void buildDescription(StringBuilder description, ConfigurationProperty property) {
if (property != null) { if (property != null) {
description.append(String.format("%n Property: %s", property.getName())); description.append(String.format("%n Property: %s", property.getName()));
description.append(String.format("%n Value: %s", property.getValue())); description.append(String.format("%n Value: \"%s\"", property.getValue()));
description.append(String.format("%n Origin: %s", property.getOrigin())); description.append(String.format("%n Origin: %s", property.getOrigin()));
} }
} }

View File

@@ -101,7 +101,7 @@ class BindFailureAnalyzerTests {
} }
private static String failure(String property, String value, String origin, String reason) { private static String failure(String property, String value, String origin, String reason) {
return String.format("Property: %s%n Value: %s%n Origin: %s%n Reason: %s", property, value, origin, return String.format("Property: %s%n Value: \"%s\"%n Origin: %s%n Reason: %s", property, value, origin,
reason); reason);
} }

View File

@@ -92,7 +92,7 @@ class BindValidationFailureAnalyzerTests {
} }
private static String failure(String property, String value, String reason) { private static String failure(String property, String value, String reason) {
return String.format("Property: %s%n Value: %s%n Reason: %s", property, value, reason); return String.format("Property: %s%n Value: \"%s\"%n Reason: %s", property, value, reason);
} }
private FailureAnalysis performAnalysis(Class<?> configuration, String... environment) { private FailureAnalysis performAnalysis(Class<?> configuration, String... environment) {

View File

@@ -63,7 +63,7 @@ class UnboundConfigurationPropertyFailureAnalyzerTests {
} }
private static String failure(String property, String value, String origin, String reason) { private static String failure(String property, String value, String origin, String reason) {
return String.format("Property: %s%n Value: %s%n Origin: %s%n Reason: %s", property, value, origin, return String.format("Property: %s%n Value: \"%s\"%n Origin: %s%n Reason: %s", property, value, origin,
reason); reason);
} }