From 792a080914b0a31bb515bdf0da36cdd8b4a7c52b Mon Sep 17 00:00:00 2001 From: John Ahlroos Date: Fri, 15 Nov 2024 16:12:41 +0100 Subject: [PATCH] Improve Javadoc --- .../com/devsoap/json/JsonArrayAssert.java | 20 +++- .../java/com/devsoap/json/JsonAssert.java | 110 +++++++++++++++++- .../com/devsoap/json/JsonValueAssert.java | 89 ++++++++++++++ 3 files changed, 209 insertions(+), 10 deletions(-) diff --git a/src/main/java/com/devsoap/json/JsonArrayAssert.java b/src/main/java/com/devsoap/json/JsonArrayAssert.java index 683f09a..464154d 100644 --- a/src/main/java/com/devsoap/json/JsonArrayAssert.java +++ b/src/main/java/com/devsoap/json/JsonArrayAssert.java @@ -24,20 +24,32 @@ import org.assertj.core.api.AbstractListAssert; import java.util.List; +import static java.util.Objects.requireNonNull; +/** + * JSON Array Assertions + * + * @author John Ahlroos + */ public class JsonArrayAssert extends AbstractListAssert, List, VALUE_TYPE, JsonValueAssert> { private final String fieldName; - protected JsonArrayAssert(String fieldName, JsonArray array) { - super(array.getValuesAs(jsonValue -> (VALUE_TYPE) jsonValue), JsonArrayAssert.class); + /** + * Create a new JSON array assert + * @param fieldName the field the array refers to or null if the root element + * @param value The array value + */ + public JsonArrayAssert(String fieldName, VALUE_TYPE value) { + super(List.of(requireNonNull(value, "type cannot be null")), JsonArrayAssert.class); this.fieldName = fieldName; } - public JsonArrayAssert(String fieldName, VALUE_TYPE value) { - super(List.of(value), JsonArrayAssert.class); + @SuppressWarnings("unchecked") + protected JsonArrayAssert(String fieldName, JsonArray array) { + super(requireNonNull(array, "Array cannot be null").getValuesAs(jsonValue -> (VALUE_TYPE) jsonValue), JsonArrayAssert.class); this.fieldName = fieldName; } diff --git a/src/main/java/com/devsoap/json/JsonAssert.java b/src/main/java/com/devsoap/json/JsonAssert.java index f6a3772..99ee8d1 100644 --- a/src/main/java/com/devsoap/json/JsonAssert.java +++ b/src/main/java/com/devsoap/json/JsonAssert.java @@ -32,19 +32,50 @@ import java.util.ArrayList; import java.util.List; import java.util.Optional; +import static java.util.Objects.requireNonNull; + +/** + * JSON Assertions + * + * @author John Ahlroos + */ public class JsonAssert extends AbstractAssert { + /** + * Instantiates a new Json assert. + * + * @param json the json as a string + */ protected JsonAssert(String json) { - super(json, JsonAssert.class); + super(requireNonNull(json, "Json cannot be null"), JsonAssert.class); } + /** + * Assert JSON as a String + * + * @param json the json to assert on + * @return the json assert + */ public static JsonAssert assertThat(String json) { - return new JsonAssert(json); - } - public static JsonAssert assertThat(Object object) { - return assertThat(object.toString()); + return new JsonAssert(requireNonNull(json, "Json cannot be null")); } + /** + * Assert JSON on any object. Uses toString() to convert to a string + * + * @param object the object + * @return the json assert + */ + public static JsonAssert assertThat(Object object) { + return assertThat(requireNonNull(object, "Object cannot be null").toString()); + } + + /** + * Assert root object is an array of objects + * + * @return the json array assert + * @throws AssertionError if field cannot be converted to Array + */ public JsonArrayAssert asArray() { try (var stream = new ByteArrayInputStream(actual.getBytes(StandardCharsets.UTF_8))) { var actualParser = Json.createParser(stream); @@ -55,7 +86,16 @@ public class JsonAssert extends AbstractAssert { } } + /** + * Assert root object is an array of a single type + * + * @param the item type + * @param itemClass the item class + * @return the list assert + * @throws AssertionError if field cannot be converted to Array + */ public ListAssert asArray(Class itemClass) { + requireNonNull(itemClass, "Item class cannot be null"); try (var stream = new ByteArrayInputStream(actual.getBytes(StandardCharsets.UTF_8))) { var actualParser = Json.createParser(stream); actualParser.next(); // START_ARRAY @@ -74,7 +114,15 @@ public class JsonAssert extends AbstractAssert { } } + /** + * Get the first field (or property) of a JSON object + * + * @param fieldName the field or property name + * @return the json value assert + * @throws AssertionError if field not found + */ public JsonValueAssert firstField(String fieldName) { + requireNonNull(fieldName, "Field or Property name cannot be null"); try (var stream = new ByteArrayInputStream(actual.getBytes(StandardCharsets.UTF_8))) { var actualParser = Json.createParser(stream); actualParser.next(); // START_OBJECT @@ -85,7 +133,15 @@ public class JsonAssert extends AbstractAssert { } } + /** + * Get the last field (or property) of a JSON object + * + * @param fieldName the field or property name + * @return the json value assert + * @throws AssertionError if field not found + */ public JsonValueAssert lastField(String fieldName) { + requireNonNull(fieldName, "Field or Property name cannot be null"); try (var stream = new ByteArrayInputStream(actual.getBytes(StandardCharsets.UTF_8))) { var scannerParser = Json.createParser(stream); scannerParser.next(); // START_OBJECT @@ -96,7 +152,19 @@ public class JsonAssert extends AbstractAssert { } } + /** + * Get the nth field (or property) of a JSON object + * + * @param fieldName the field or property name + * @param index the zero based index + * @return the json value assert + * @throws AssertionError if field not found + */ public JsonValueAssert nthField(String fieldName, int index) { + requireNonNull(fieldName, "Field or Property name cannot be null"); + if (index < 0) { + throw new IllegalArgumentException("index must be zero or positive"); + } try (var stream = new ByteArrayInputStream(actual.getBytes(StandardCharsets.UTF_8))) { var parser = Json.createParser(stream); parser.next(); // START_OBJECT @@ -107,6 +175,13 @@ public class JsonAssert extends AbstractAssert { } } + /** + * Get field or property by name + * + * @param fieldName the field or property name + * @return the json value assert + * @throws AssertionError if field not found + */ public JsonValueAssert field(String fieldName) { try (var stream = new ByteArrayInputStream(actual.getBytes(StandardCharsets.UTF_8))) { var actualParser = Json.createParser(stream); @@ -118,6 +193,13 @@ public class JsonAssert extends AbstractAssert { } } + /** + * Get field as array + * + * @param fieldName the field name + * @return the json array assert + * @throws AssertionError if field is not found or is not an Array + */ public JsonArrayAssert array(String fieldName) { try (var stream = new ByteArrayInputStream(actual.getBytes(StandardCharsets.UTF_8))) { var actualParser = Json.createParser(stream); @@ -128,6 +210,15 @@ public class JsonAssert extends AbstractAssert { } } + /** + * Get field as typed array + * + * @param the type parameter + * @param fieldName the field name + * @param itemClass the item class + * @return the list assert + * @throws AssertionError if field not found, the field is not an array or the array types cannot be converted + */ public ListAssert array(String fieldName, Class itemClass) { try (var stream = new ByteArrayInputStream(actual.getBytes(StandardCharsets.UTF_8))) { var actualParser = Json.createParser(stream); @@ -138,6 +229,13 @@ public class JsonAssert extends AbstractAssert { } } + /** + * Find a field using a path + * + * @param fields the path segments + * @return the json value assert + * @throws AssertionError if path not found + */ public JsonValueAssert path(String... fields) { var actualParser = Json.createParser(new ByteArrayInputStream(actual.getBytes(StandardCharsets.UTF_8))); actualParser.next(); // START_OBJECT @@ -242,7 +340,6 @@ public class JsonAssert extends AbstractAssert { return Optional.of(current).flatMap(v -> typedJsonValue(fieldName, v)); } - static Optional> typedJsonValue(String fieldName, JsonValue jsonValue) { return Optional.ofNullable(jsonValue).map(v -> switch (jsonValue.getValueType()) { case ARRAY -> null; @@ -282,6 +379,7 @@ public class JsonAssert extends AbstractAssert { static JsonArrayAssert typedJsonArray(String fieldName, JsonValue jsonArray) { return new JsonArrayAssert<>(fieldName, (JsonArray) jsonArray); } + static ListAssert typedJsonArray(JsonValue jsonArray) { return new ListAssert<>(((JsonArray)jsonArray).getValuesAs(value -> (ITEM) switch (value.getValueType()) { case ARRAY -> null; diff --git a/src/main/java/com/devsoap/json/JsonValueAssert.java b/src/main/java/com/devsoap/json/JsonValueAssert.java index 78241ec..f905d57 100644 --- a/src/main/java/com/devsoap/json/JsonValueAssert.java +++ b/src/main/java/com/devsoap/json/JsonValueAssert.java @@ -29,7 +29,13 @@ import java.math.BigInteger; import java.util.regex.Pattern; import static com.devsoap.json.JsonAssert.typedJsonArray; +import static java.util.Objects.requireNonNull; +/** + * JSON Array Assertions + * + * @author John Ahlroos + */ public class JsonValueAssert extends AbstractAssert, VALUE_TYPE> { private final String fieldName; @@ -41,7 +47,14 @@ public class JsonValueAssert extends AbstractAssert field(String fieldName) { + requireNonNull(fieldName, "Field or Property name cannot be null"); if (value.getValueType() != JsonValue.ValueType.OBJECT) { failWithActualExpectedAndMessage(value.getValueType(), JsonValue.ValueType.OBJECT, "Only objects can have fields"); @@ -50,7 +63,17 @@ public class JsonValueAssert extends AbstractAssert this.withFailMessage("Field %s not found", fieldName)); } + /** + * Get typed field + * + * @param fieldName the field name + * @param type the type + * @return the json value assert + */ + @SuppressWarnings("unchecked") public JsonValueAssert field(String fieldName, Class type) { + requireNonNull(fieldName, "Field or Property name cannot be null"); + requireNonNull(type, "Type cannot be null"); if (value.getValueType() != JsonValue.ValueType.OBJECT) { failWithActualExpectedAndMessage(value.getValueType(), JsonValue.ValueType.OBJECT, "Only objects can have fields"); @@ -59,7 +82,14 @@ public class JsonValueAssert extends AbstractAssert this.withFailMessage("Field %s not found", fieldName)); } + /** + * Get field as array + * + * @param fieldName the field name + * @return the json array assert + */ public JsonArrayAssert array(String fieldName) { + requireNonNull(fieldName, "Field or Property name cannot be null"); if (value.getValueType() != JsonValue.ValueType.OBJECT) { failWithActualExpectedAndMessage(value.getValueType(), JsonValue.ValueType.OBJECT, "Only objects can have fields"); @@ -74,7 +104,17 @@ public class JsonValueAssert extends AbstractAssert the type parameter + * @param fieldName the field name + * @param itemClass the item class + * @return the list assert + */ public ListAssert array(String fieldName, Class itemClass) { + requireNonNull(fieldName, "Field or Property name cannot be null"); + requireNonNull(itemClass, "item type name cannot be null"); if (value.getValueType() != JsonValue.ValueType.OBJECT) { failWithActualExpectedAndMessage(value.getValueType(), JsonValue.ValueType.OBJECT, "Only objects can have fields"); @@ -98,7 +138,14 @@ public class JsonValueAssert extends AbstractAssert path(String... fields) { + requireNonNull(fields, "Path cannot be null"); JsonValueAssert currentField = this; for (String field : fields) { currentField = currentField.field(field); @@ -106,6 +153,11 @@ public class JsonValueAssert extends AbstractAssert extends AbstractAssert extends AbstractAssert extends AbstractAssert extends AbstractAssert asLong() { if (actual instanceof Long) { return new LongAssert((Long) actual); @@ -141,6 +213,11 @@ public class JsonValueAssert extends AbstractAssert asArray() { if (value.getValueType() == JsonValue.ValueType.ARRAY) { return new JsonArrayAssert<>(fieldName, (JsonArray) value); @@ -148,10 +225,22 @@ public class JsonValueAssert extends AbstractAssert(fieldName, value); } + /** + * Assert value matches regular expression + * + * @param regex the regex + * @return the json value assert + */ public JsonValueAssert matches(String regex) { return matches(valueType -> Pattern.matches(regex, valueType.toString())); } + /** + * Assert value does not match regular expression + * + * @param regex the regex + * @return the json value assert + */ public JsonValueAssert notMatches(String regex) { return matches(valueType -> !Pattern.matches(regex, valueType.toString())); }