How to use ignoringActualNullFields method of org.assertj.core.api.RecursiveComparisonAssert class

Best Assertj code snippet using org.assertj.core.api.RecursiveComparisonAssert.ignoringActualNullFields

Source:RecursiveComparisonConfiguration.java Github

copy

Full Screen

...115 }116 /**117 * Sets whether actual empty optional fields are ignored in the recursive comparison.118 * <p>119 * See {@link RecursiveComparisonAssert#ignoringActualNullFields()} for code examples.120 *121 * @param ignoringAllActualEmptyOptionalFields whether to ignore actual empty optional fields in the recursive comparison122 */123 public void setIgnoreAllActualEmptyOptionalFields(boolean ignoringAllActualEmptyOptionalFields) {124 this.ignoreAllActualEmptyOptionalFields = ignoringAllActualEmptyOptionalFields;125 }126 @VisibleForTesting127 boolean getIgnoreAllActualEmptyOptionalFields() {128 return ignoreAllActualEmptyOptionalFields;129 }130 /**131 * Sets whether actual null fields are ignored in the recursive comparison.132 * <p>133 * See {@link RecursiveComparisonAssert#ignoringActualNullFields()} for code examples.134 *135 * @param ignoreAllActualNullFields whether to ignore actual null fields in the recursive comparison136 */137 public void setIgnoreAllActualNullFields(boolean ignoreAllActualNullFields) {138 this.ignoreAllActualNullFields = ignoreAllActualNullFields;139 }140 /**141 * Sets whether expected null fields are ignored in the recursive comparison.142 * <p>143 * See {@link RecursiveComparisonAssert#ignoringExpectedNullFields()} for code examples.144 *145 * @param ignoreAllExpectedNullFields whether to ignore expected null fields in the recursive comparison146 */147 public void setIgnoreAllExpectedNullFields(boolean ignoreAllExpectedNullFields) {148 this.ignoreAllExpectedNullFields = ignoreAllExpectedNullFields;149 }150 /**151 * Adds the given fields to the list of the object under test fields to ignore in the recursive comparison.152 * <p>153 * The field are ignored by name, not by value.154 * <p>155 * See {@link RecursiveComparisonAssert#ignoringFields(String...) RecursiveComparisonAssert#ignoringFields(String...)} for examples.156 *157 * @param fieldsToIgnore the fields of the object under test to ignore in the comparison.158 */159 public void ignoreFields(String... fieldsToIgnore) {160 List<String> fieldLocations = list(fieldsToIgnore);161 ignoredFields.addAll(fieldLocations);162 }163 /**164 * Allows to ignore in the recursive comparison the object under test fields matching the given regexes. The given regexes are added to the already registered ones.165 * <p>166 * See {@link RecursiveComparisonAssert#ignoringFieldsMatchingRegexes(String...) RecursiveComparisonAssert#ignoringFieldsMatchingRegexes(String...)} for examples.167 *168 * @param regexes regexes used to ignore fields in the comparison.169 */170 public void ignoreFieldsMatchingRegexes(String... regexes) {171 ignoredFieldsRegexes.addAll(Stream.of(regexes)172 .map(Pattern::compile)173 .collect(toList()));174 }175 /**176 * Adds the given types to the list of the object under test fields types to ignore in the recursive comparison.177 * The fields are ignored if their types exactly match one of the ignored types, if a field is a subtype of an ignored type it won't be ignored.178 * <p>179 * Note that if some object under test fields are null, they are not ignored by this method as their type can't be evaluated.180 * <p>181 * See {@link RecursiveComparisonAssert#ignoringFields(String...) RecursiveComparisonAssert#ignoringFieldsOfTypes(Class...)} for examples.182 *183 * @param types the types of the object under test to ignore in the comparison.184 */185 public void ignoreFieldsOfTypes(Class<?>... types) {186 stream(types).map(RecursiveComparisonConfiguration::asWrapperIfPrimitiveType).forEach(ignoredTypes::add);187 }188 private static Class<?> asWrapperIfPrimitiveType(Class<?> type) {189 if (!type.isPrimitive()) return type;190 if (type.equals(boolean.class)) return Boolean.class;191 if (type.equals(byte.class)) return Byte.class;192 if (type.equals(int.class)) return Integer.class;193 if (type.equals(short.class)) return Short.class;194 if (type.equals(char.class)) return Character.class;195 if (type.equals(float.class)) return Float.class;196 if (type.equals(double.class)) return Double.class;197 // should not arrive here since we have tested primitive types first198 return type;199 }200 /**201 * Returns the list of the object under test fields to ignore in the recursive comparison.202 *203 * @return the list of the object under test fields to ignore in the recursive comparison.204 */205 public Set<String> getIgnoredFields() {206 return ignoredFields;207 }208 /**209 * Returns the set of the object under test fields types to ignore in the recursive comparison.210 *211 * @return the set of the object under test fields types to ignore in the recursive comparison.212 */213 public Set<Class<?>> getIgnoredTypes() {214 return ignoredTypes;215 }216 /**217 * Force a recursive comparison on all fields (except java types).218 * <p>219 * See {@link RecursiveComparisonAssert#ignoringAllOverriddenEquals()} for examples.220 */221 public void ignoreAllOverriddenEquals() {222 ignoreAllOverriddenEquals = true;223 }224 /**225 * Force a recursive comparison on all fields (except java types).226 * <p>227 * See {@link RecursiveComparisonAssert#usingOverriddenEquals()} for examples.228 */229 public void useOverriddenEquals() {230 ignoreAllOverriddenEquals = false;231 }232 /**233 * Adds the given fields to the list of fields to force a recursive comparison on.234 * <p>235 * See {@link RecursiveComparisonAssert#ignoringOverriddenEqualsForFields(String...) RecursiveComparisonAssert#ignoringOverriddenEqualsForFields(String...)} for examples.236 *237 * @param fields the fields to force a recursive comparison on.238 */239 public void ignoreOverriddenEqualsForFields(String... fields) {240 List<String> fieldLocations = list(fields);241 ignoredOverriddenEqualsForFields.addAll(fieldLocations);242 }243 /**244 * Adds the given regexes to the list of regexes used find the fields to force a recursive comparison on.245 * <p>246 * See {@link RecursiveComparisonAssert#ignoringOverriddenEqualsForFieldsMatchingRegexes(String...) RecursiveComparisonAssert#ignoringOverriddenEqualsForFieldsMatchingRegexes(String...)} for examples.247 *248 * @param regexes regexes used to specify the fields we want to force a recursive comparison on.249 */250 public void ignoreOverriddenEqualsForFieldsMatchingRegexes(String... regexes) {251 ignoredOverriddenEqualsForFieldsMatchingRegexes.addAll(Stream.of(regexes)252 .map(Pattern::compile)253 .collect(toList()));254 }255 /**256 * Adds the given types to the list of types to force a recursive comparison on.257 * <p>258 * See {@link RecursiveComparisonAssert#ignoringOverriddenEqualsForTypes(Class...) RecursiveComparisonAssert#ignoringOverriddenEqualsForTypes(Class...)} for examples.259 *260 * @param types the types to the list of types to force a recursive comparison on.261 */262 public void ignoreOverriddenEqualsForTypes(Class<?>... types) {263 ignoredOverriddenEqualsForTypes.addAll(list(types));264 }265 @VisibleForTesting266 boolean getIgnoreCollectionOrder() {267 return ignoreCollectionOrder;268 }269 /**270 * Sets whether to ignore collection order in the comparison.271 * <p>272 * See {@link RecursiveComparisonAssert#ignoringCollectionOrder()} for code examples.273 *274 * @param ignoreCollectionOrder whether to ignore collection order in the comparison.275 */276 public void ignoreCollectionOrder(boolean ignoreCollectionOrder) {277 this.ignoreCollectionOrder = ignoreCollectionOrder;278 }279 /**280 * Adds the given fields to the list of the object under test fields to ignore collection order in the recursive comparison.281 * <p>282 * See {@link RecursiveComparisonAssert#ignoringCollectionOrderInFields(String...) RecursiveComparisonAssert#ignoringCollectionOrderInFields(String...)} for examples.283 *284 * @param fieldsToIgnoreCollectionOrder the fields of the object under test to ignore collection order in the comparison.285 */286 public void ignoreCollectionOrderInFields(String... fieldsToIgnoreCollectionOrder) {287 List<String> fieldLocations = list(fieldsToIgnoreCollectionOrder);288 ignoredCollectionOrderInFields.addAll(fieldLocations);289 }290 /**291 * Returns the list of the object under test fields to ignore collection order in the recursive comparison.292 *293 * @return the list of the object under test fields to ignore collection order in the recursive comparison.294 */295 public Set<String> getIgnoredCollectionOrderInFields() {296 return ignoredCollectionOrderInFields;297 }298 /**299 * Adds the given regexes to the list of regexes used to find the object under test fields to ignore collection order in the recursive comparison.300 * <p>301 * See {@link RecursiveComparisonAssert#ignoringCollectionOrderInFieldsMatchingRegexes(String...) RecursiveComparisonAssert#ignoringCollectionOrderInFieldsMatchingRegexes(String...)} for examples.302 *303 * @param regexes regexes used to find the object under test fields to ignore collection order in in the comparison.304 */305 public void ignoreCollectionOrderInFieldsMatchingRegexes(String... regexes) {306 ignoredCollectionOrderInFieldsMatchingRegexes.addAll(Stream.of(regexes)307 .map(Pattern::compile)308 .collect(toList()));309 }310 /**311 * Returns the list of regexes used to find the object under test fields to ignore collection order in the recursive comparison.312 *313 * @return the list of regexes used to find the object under test fields to ignore collection order in the recursive comparison.314 */315 public List<Pattern> getIgnoredCollectionOrderInFieldsMatchingRegexes() {316 return ignoredCollectionOrderInFieldsMatchingRegexes;317 }318 /**319 * Registers the given {@link Comparator} to compare the fields with the given type.320 * <p>321 * Comparators registered with this method have less precedence than comparators registered with {@link #registerComparatorForFields(Comparator, String...)}.322 * <p>323 * Note that registering a {@link Comparator} for a given type will override the previously registered BiPredicate/Comparator (if any).324 * <p>325 * See {@link RecursiveComparisonAssert#withComparatorForType(Comparator, Class)} for examples.326 *327 * @param <T> the class type to register a comparator for328 * @param comparator the {@link java.util.Comparator Comparator} to use to compare the given type329 * @param type the type to be compared with the given comparator.330 * @throws NullPointerException if the given comparator is null.331 */332 public <T> void registerComparatorForType(Comparator<? super T> comparator, Class<T> type) {333 requireNonNull(comparator, "Expecting a non null Comparator");334 typeComparators.put(type, comparator);335 }336 /**337 * Registers the given {@link BiPredicate} to compare the fields with the given type.338 * <p>339 * BiPredicates specified with this method have less precedence than the ones registered with {@link #registerEqualsForFields(BiPredicate, String...)}340 * or comparators registered with {@link #registerComparatorForFields(Comparator, String...)}.341 * <p>342 * Note that registering a {@link BiPredicate} for a given type will override the previously registered BiPredicate/Comparator (if any).343 * <p>344 * See {@link RecursiveComparisonAssert#withEqualsForType(BiPredicate, Class)} for examples.345 *346 * @param <T> the class type to register a comparator for347 * @param equals the equals implementation to compare the given type348 * @param type the type to be compared with the given equals implementation .349 * @throws NullPointerException if the given BiPredicate is null.350 * @since 3.17.0351 */352 @SuppressWarnings("unchecked")353 public <T> void registerEqualsForType(BiPredicate<? super T, ? super T> equals, Class<T> type) {354 registerComparatorForType(toComparator(equals), type);355 }356 /**357 * Registers the given {@link Comparator} to compare the fields at the given locations.358 * <p>359 * The fields must be specified from the root object, for example if {@code Foo} has a {@code Bar} field and both have an {@code id} field,360 * one can register a comparator for Foo and Bar's {@code id} by calling:361 * <pre><code class='java'> registerComparatorForFields(idComparator, "foo.id", "foo.bar.id")</code></pre>362 * <p>363 * Comparators registered with this method have precedence over comparators registered with {@link #registerComparatorForType(Comparator, Class)}.364 * <p>365 * Note that registering a {@link Comparator} for a given field will override the previously registered BiPredicate/Comparator (if any).366 * <p>367 * See {@link RecursiveComparisonAssert#withComparatorForFields(Comparator, String...) RecursiveComparisonAssert#withComparatorForFields(Comparator, String...)} for examples.368 *369 * @param comparator the {@link java.util.Comparator Comparator} to use to compare the given field370 * @param fieldLocations the locations from the root object of the fields the comparator should be used for371 * @throws NullPointerException if the given comparator is null.372 */373 public void registerComparatorForFields(Comparator<?> comparator, String... fieldLocations) {374 requireNonNull(comparator, "Expecting a non null Comparator");375 Stream.of(fieldLocations).forEach(fieldLocation -> fieldComparators.registerComparator(fieldLocation, comparator));376 }377 /**378 * Registers the given {@link BiPredicate} to compare the fields at the given locations.379 * <p>380 * The fields must be specified from the root object, for example if {@code Foo} has a {@code Bar} field and both have an {@code id} field,381 * one can register a BiPredicate for Foo and Bar's {@code id} by calling:382 * <pre><code class='java'> registerEqualsForFields(idBiPredicate, "foo.id", "foo.bar.id")</code></pre>383 * <p>384 * BiPredicates registered with this method have precedence over the ones registered with {@link #registerEqualsForType(BiPredicate, Class)}385 * or the comparators registered with {@link #registerComparatorForType(Comparator, Class)}.386 * <p>387 * Note that registering a {@link BiPredicate} for a given field will override the previously registered BiPredicate/Comparator (if any).388 * <p>389 * See {@link RecursiveComparisonAssert#withEqualsForFields(BiPredicate, String...) RecursiveComparisonAssert#withEqualsForFields(BiPredicate, String...)} for examples.390 *391 * @param equals the equals implementation to compare the given fields.392 * @param fieldLocations the locations from the root object of the fields the comparator should be used for393 * @throws NullPointerException if the given BiPredicate is null.394 * @since 3.17.0395 */396 public void registerEqualsForFields(BiPredicate<?, ?> equals, String... fieldLocations) {397 registerComparatorForFields(toComparator(equals), fieldLocations);398 }399 /**400 * Sets whether the recursive comparison will check that actual's type is compatible with expected's type (the same applies for each field).401 * Compatible means that the expected's type is the same or a subclass of actual's type.402 * <p>403 * See {@link RecursiveComparisonAssert#withStrictTypeChecking()} for code examples.404 *405 * @param strictTypeChecking whether the recursive comparison will check that actual's type is compatible with expected's type.406 */407 public void strictTypeChecking(boolean strictTypeChecking) {408 this.strictTypeChecking = strictTypeChecking;409 }410 public boolean isInStrictTypeCheckingMode() {411 return strictTypeChecking;412 }413 public List<Pattern> getIgnoredFieldsRegexes() {414 return ignoredFieldsRegexes;415 }416 public List<Class<?>> getIgnoredOverriddenEqualsForTypes() {417 return ignoredOverriddenEqualsForTypes;418 }419 public List<String> getIgnoredOverriddenEqualsForFields() {420 return ignoredOverriddenEqualsForFields;421 }422 public List<Pattern> getIgnoredOverriddenEqualsForFieldsMatchingRegexes() {423 return ignoredOverriddenEqualsForFieldsMatchingRegexes;424 }425 public Stream<Entry<String, Comparator<?>>> comparatorByFields() {426 return fieldComparators.comparatorByFields();427 }428 @Override429 public String toString() {430 return multiLineDescription(CONFIGURATION_PROVIDER.representation());431 }432 @Override433 public int hashCode() {434 return java.util.Objects.hash(fieldComparators, ignoreAllActualEmptyOptionalFields, ignoreAllActualNullFields,435 ignoreAllExpectedNullFields, ignoreAllOverriddenEquals, ignoreCollectionOrder,436 ignoredCollectionOrderInFields, ignoredCollectionOrderInFieldsMatchingRegexes, ignoredFields,437 ignoredFieldsRegexes, ignoredOverriddenEqualsForFields, ignoredOverriddenEqualsForTypes,438 ignoredOverriddenEqualsForFieldsMatchingRegexes, ignoredTypes, strictTypeChecking,439 typeComparators);440 }441 @Override442 public boolean equals(Object obj) {443 if (this == obj) return true;444 if (obj == null) return false;445 if (getClass() != obj.getClass()) return false;446 RecursiveComparisonConfiguration other = (RecursiveComparisonConfiguration) obj;447 return java.util.Objects.equals(fieldComparators, other.fieldComparators)448 && ignoreAllActualEmptyOptionalFields == other.ignoreAllActualEmptyOptionalFields449 && ignoreAllActualNullFields == other.ignoreAllActualNullFields450 && ignoreAllExpectedNullFields == other.ignoreAllExpectedNullFields451 && ignoreAllOverriddenEquals == other.ignoreAllOverriddenEquals452 && ignoreCollectionOrder == other.ignoreCollectionOrder453 && java.util.Objects.equals(ignoredCollectionOrderInFields, other.ignoredCollectionOrderInFields)454 && java.util.Objects.equals(ignoredFields, other.ignoredFields)455 && java.util.Objects.equals(ignoredFieldsRegexes, other.ignoredFieldsRegexes)456 && java.util.Objects.equals(ignoredOverriddenEqualsForFields, other.ignoredOverriddenEqualsForFields)457 && java.util.Objects.equals(ignoredOverriddenEqualsForTypes, other.ignoredOverriddenEqualsForTypes)458 && java.util.Objects.equals(ignoredOverriddenEqualsForFieldsMatchingRegexes,459 other.ignoredOverriddenEqualsForFieldsMatchingRegexes)460 && java.util.Objects.equals(ignoredTypes, other.ignoredTypes) && strictTypeChecking == other.strictTypeChecking461 && java.util.Objects.equals(typeComparators, other.typeComparators)462 && java.util.Objects.equals(ignoredCollectionOrderInFieldsMatchingRegexes,463 other.ignoredCollectionOrderInFieldsMatchingRegexes);464 }465 public String multiLineDescription(Representation representation) {466 StringBuilder description = new StringBuilder();467 describeIgnoreAllActualNullFields(description);468 describeIgnoreAllActualEmptyOptionalFields(description);469 describeIgnoreAllExpectedNullFields(description);470 describeIgnoredFields(description);471 describeIgnoredFieldsRegexes(description);472 describeIgnoredFieldsForTypes(description);473 describeOverriddenEqualsMethodsUsage(description, representation);474 describeIgnoreCollectionOrder(description);475 describeIgnoredCollectionOrderInFields(description);476 describeIgnoredCollectionOrderInFieldsMatchingRegexes(description);477 describeRegisteredComparatorByTypes(description);478 describeRegisteredComparatorForFields(description);479 describeTypeCheckingStrictness(description);480 return description.toString();481 }482 boolean shouldIgnore(DualValue dualValue) {483 FieldLocation fieldLocation = dualValue.fieldLocation;484 return matchesAnIgnoredField(fieldLocation)485 || matchesAnIgnoredFieldRegex(fieldLocation)486 || shouldIgnoreFieldBasedOnFieldValue(dualValue);487 }488 Set<String> getNonIgnoredActualFieldNames(DualValue dualValue) {489 Set<String> actualFieldsNames = Objects.getFieldsNames(dualValue.actual.getClass());490 // we are doing the same as shouldIgnore(DualValue dualValue) but in two steps for performance reasons:491 // - we filter first ignored field by names that don't need building DualValues492 // - then we filter field DualValues with the remaining criteria that need to get the field value493 // DualValues are built introspecting fields which is expensive.494 return actualFieldsNames.stream()495 // evaluate field name ignoring criteria on dualValue field location + field name496 .filter(fieldName -> !shouldIgnoreFieldBasedOnFieldLocation(dualValue.fieldLocation.field(fieldName)))497 .map(fieldName -> dualValueForField(dualValue, fieldName))498 // evaluate field value ignoring criteria499 .filter(fieldDualValue -> !shouldIgnoreFieldBasedOnFieldValue(fieldDualValue))500 // back to field name501 .map(DualValue::getFieldName)502 .filter(fieldName -> !fieldName.isEmpty())503 .collect(toSet());504 }505 // non accessible stuff506 private boolean shouldIgnoreFieldBasedOnFieldValue(DualValue dualValue) {507 return matchesAnIgnoredNullField(dualValue)508 || matchesAnIgnoredFieldType(dualValue)509 || matchesAnIgnoredEmptyOptionalField(dualValue);510 }511 private boolean shouldIgnoreFieldBasedOnFieldLocation(FieldLocation fieldLocation) {512 return matchesAnIgnoredField(fieldLocation) || matchesAnIgnoredFieldRegex(fieldLocation);513 }514 private static DualValue dualValueForField(DualValue parentDualValue, String fieldName) {515 Object actualFieldValue = COMPARISON.getSimpleValue(fieldName, parentDualValue.actual);516 // no guarantees we have a field in expected named as fieldName517 Object expectedFieldValue;518 try {519 expectedFieldValue = COMPARISON.getSimpleValue(fieldName, parentDualValue.expected);520 } catch (@SuppressWarnings("unused") Exception e) {521 // set the field to null to express it is absent, this not 100% accurate as the value could be null522 // but it works to evaluate if dualValue should be ignored with matchesAnIgnoredFieldType523 expectedFieldValue = null;524 }525 FieldLocation fieldLocation = parentDualValue.fieldLocation.field(fieldName);526 return new DualValue(fieldLocation, actualFieldValue, expectedFieldValue);527 }528 boolean hasCustomComparator(DualValue dualValue) {529 String fieldName = dualValue.getConcatenatedPath();530 if (hasComparatorForField(fieldName)) return true;531 if (dualValue.actual == null && dualValue.expected == null) return false;532 // best effort assuming actual and expected have the same type (not 100% true as we can compare object of differennt types)533 Class<?> valueType = dualValue.actual != null ? dualValue.actual.getClass() : dualValue.expected.getClass();534 return hasComparatorForType(valueType);535 }536 boolean shouldIgnoreOverriddenEqualsOf(DualValue dualValue) {537 // we must compare java basic types otherwise the recursive comparison loops infinitely!538 if (dualValue.isActualJavaType()) return false;539 // enums don't have fields, comparing them field by field has no sense, we need to use equals which is overridden and final540 if (dualValue.isActualAnEnum()) return false;541 return ignoreAllOverriddenEquals542 || matchesAnIgnoredOverriddenEqualsField(dualValue.fieldLocation)543 || (dualValue.actual != null && shouldIgnoreOverriddenEqualsOf(dualValue.actual.getClass()));544 }545 @VisibleForTesting546 boolean shouldIgnoreOverriddenEqualsOf(Class<? extends Object> clazz) {547 return matchesAnIgnoredOverriddenEqualsRegex(clazz) || matchesAnIgnoredOverriddenEqualsType(clazz);548 }549 boolean shouldIgnoreCollectionOrder(FieldLocation fieldLocation) {550 return ignoreCollectionOrder551 || matchesAnIgnoredCollectionOrderInField(fieldLocation)552 || matchesAnIgnoredCollectionOrderInFieldRegex(fieldLocation);553 }554 private void describeIgnoredFieldsRegexes(StringBuilder description) {555 if (!ignoredFieldsRegexes.isEmpty())556 description.append(format("- the fields matching the following regexes were ignored in the comparison: %s%n",557 describeRegexes(ignoredFieldsRegexes)));558 }559 private void describeIgnoredFields(StringBuilder description) {560 if (!ignoredFields.isEmpty())561 description.append(format("- the following fields were ignored in the comparison: %s%n", describeIgnoredFields()));562 }563 private void describeIgnoredFieldsForTypes(StringBuilder description) {564 if (!ignoredTypes.isEmpty())565 description.append(format("- the following types were ignored in the comparison: %s%n", describeIgnoredTypes()));566 }567 private void describeIgnoreAllActualNullFields(StringBuilder description) {568 if (ignoreAllActualNullFields) description.append(format("- all actual null fields were ignored in the comparison%n"));569 }570 private void describeIgnoreAllActualEmptyOptionalFields(StringBuilder description) {571 if (getIgnoreAllActualEmptyOptionalFields())572 description.append(format("- all actual empty optional fields were ignored in the comparison (including Optional, OptionalInt, OptionalLong and OptionalDouble)%n"));573 }574 private void describeIgnoreAllExpectedNullFields(StringBuilder description) {575 if (ignoreAllExpectedNullFields) description.append(format("- all expected null fields were ignored in the comparison%n"));576 }577 private void describeOverriddenEqualsMethodsUsage(StringBuilder description, Representation representation) {578 String header = ignoreAllOverriddenEquals579 ? "- no overridden equals methods were used in the comparison (except for java types)"580 : "- overridden equals methods were used in the comparison";581 description.append(header);582 if (isConfiguredToIgnoreSomeButNotAllOverriddenEqualsMethods()) {583 description.append(format(" except for:%n"));584 describeIgnoredOverriddenEqualsMethods(description, representation);585 } else {586 description.append(format("%n"));587 }588 }589 private void describeIgnoredOverriddenEqualsMethods(StringBuilder description, Representation representation) {590 if (!ignoredOverriddenEqualsForFields.isEmpty())591 description.append(format("%s the following fields: %s%n", INDENT_LEVEL_2,592 describeIgnoredOverriddenEqualsForFields()));593 if (!ignoredOverriddenEqualsForTypes.isEmpty())594 description.append(format("%s the following types: %s%n", INDENT_LEVEL_2,595 describeIgnoredOverriddenEqualsForTypes(representation)));596 if (!ignoredOverriddenEqualsForFieldsMatchingRegexes.isEmpty())597 description.append(format("%s the types matching the following regexes: %s%n", INDENT_LEVEL_2,598 describeRegexes(ignoredOverriddenEqualsForFieldsMatchingRegexes)));599 }600 private String describeIgnoredOverriddenEqualsForTypes(Representation representation) {601 List<String> fieldsDescription = ignoredOverriddenEqualsForTypes.stream()602 .map(representation::toStringOf)603 .collect(toList());604 return join(fieldsDescription).with(", ");605 }606 private String describeIgnoredOverriddenEqualsForFields() {607 return join(ignoredOverriddenEqualsForFields).with(", ");608 }609 private void describeIgnoreCollectionOrder(StringBuilder description) {610 if (ignoreCollectionOrder) description.append(format("- collection order was ignored in all fields in the comparison%n"));611 }612 private void describeIgnoredCollectionOrderInFields(StringBuilder description) {613 if (!ignoredCollectionOrderInFields.isEmpty())614 description.append(format("- collection order was ignored in the following fields in the comparison: %s%n",615 describeIgnoredCollectionOrderInFields()));616 }617 private void describeIgnoredCollectionOrderInFieldsMatchingRegexes(StringBuilder description) {618 if (!ignoredCollectionOrderInFieldsMatchingRegexes.isEmpty())619 description.append(format("- collection order was ignored in the fields matching the following regexes in the comparison: %s%n",620 describeRegexes(ignoredCollectionOrderInFieldsMatchingRegexes)));621 }622 private boolean matchesAnIgnoredOverriddenEqualsRegex(Class<?> clazz) {623 if (ignoredOverriddenEqualsForFieldsMatchingRegexes.isEmpty()) return false; // shortcut624 String canonicalName = clazz.getCanonicalName();625 return ignoredOverriddenEqualsForFieldsMatchingRegexes.stream()626 .anyMatch(regex -> regex.matcher(canonicalName).matches());627 }628 private boolean matchesAnIgnoredOverriddenEqualsType(Class<?> clazz) {629 return ignoredOverriddenEqualsForTypes.contains(clazz);630 }631 private boolean matchesAnIgnoredOverriddenEqualsField(FieldLocation fieldLocation) {632 return ignoredOverriddenEqualsForFields.stream().anyMatch(fieldLocation::matches);633 }634 private boolean matchesAnIgnoredNullField(DualValue dualValue) {635 return (ignoreAllActualNullFields && dualValue.actual == null)636 || (ignoreAllExpectedNullFields && dualValue.expected == null);637 }638 private boolean matchesAnIgnoredEmptyOptionalField(DualValue dualValue) {639 return ignoreAllActualEmptyOptionalFields640 && dualValue.isActualFieldAnEmptyOptionalOfAnyType();641 }642 private boolean matchesAnIgnoredFieldRegex(FieldLocation fieldLocation) {643 return ignoredFieldsRegexes.stream()644 .anyMatch(regex -> regex.matcher(fieldLocation.getPathToUseInRules()).matches());645 }646 private boolean matchesAnIgnoredFieldType(DualValue dualValue) {647 Object actual = dualValue.actual;648 if (actual != null) return ignoredTypes.contains(actual.getClass());649 Object expected = dualValue.expected;650 // actual is null => we can't evaluate its type, we can only reliably check dualValue.expected's type if651 // strictTypeChecking is enabled which guarantees expected is of the same type.652 if (strictTypeChecking && expected != null) return ignoredTypes.contains(expected.getClass());653 // if strictTypeChecking is disabled, we can't safely ignore the field (if we did, we would ignore all null fields!).654 return false;655 }656 private boolean matchesAnIgnoredField(FieldLocation fieldLocation) {657 return ignoredFields.stream().anyMatch(fieldLocation::matches);658 }659 private boolean matchesAnIgnoredCollectionOrderInField(FieldLocation fieldLocation) {660 return ignoredCollectionOrderInFields.stream().anyMatch(fieldLocation::matches);661 }662 private boolean matchesAnIgnoredCollectionOrderInFieldRegex(FieldLocation fieldLocation) {663 String pathToUseInRules = fieldLocation.getPathToUseInRules();664 return ignoredCollectionOrderInFieldsMatchingRegexes.stream().anyMatch(regex -> regex.matcher(pathToUseInRules).matches());665 }666 private String describeIgnoredFields() {667 return join(ignoredFields).with(", ");668 }669 private String describeIgnoredTypes() {670 List<String> typesDescription = ignoredTypes.stream()671 .map(Class::getName)672 .collect(toList());673 return join(typesDescription).with(", ");674 }675 private String describeIgnoredCollectionOrderInFields() {676 return join(ignoredCollectionOrderInFields).with(", ");677 }678 private String describeRegexes(List<Pattern> regexes) {679 List<String> fieldsDescription = regexes.stream()680 .map(Pattern::pattern)681 .collect(toList());682 return join(fieldsDescription).with(", ");683 }684 private boolean isConfiguredToIgnoreSomeButNotAllOverriddenEqualsMethods() {685 boolean ignoreSomeOverriddenEqualsMethods = !ignoredOverriddenEqualsForFieldsMatchingRegexes.isEmpty()686 || !ignoredOverriddenEqualsForTypes.isEmpty()687 || !ignoredOverriddenEqualsForFields.isEmpty();688 return !ignoreAllOverriddenEquals && ignoreSomeOverriddenEqualsMethods;689 }690 private void describeRegisteredComparatorByTypes(StringBuilder description) {691 if (!typeComparators.isEmpty()) {692 description.append(format("- these types were compared with the following comparators:%n"));693 describeComparatorForTypes(description);694 }695 }696 private void describeComparatorForTypes(StringBuilder description) {697 typeComparators.comparatorByTypes()698 .map(this::formatRegisteredComparatorByType)699 .forEach(description::append);700 }701 private String formatRegisteredComparatorByType(Entry<Class<?>, Comparator<?>> next) {702 return format("%s %s -> %s%n", INDENT_LEVEL_2, next.getKey().getName(), next.getValue());703 }704 private void describeRegisteredComparatorForFields(StringBuilder description) {705 if (!fieldComparators.isEmpty()) {706 description.append(format("- these fields were compared with the following comparators:%n"));707 describeComparatorForFields(description);708 if (!typeComparators.isEmpty()) {709 description.append(format("- field comparators take precedence over type comparators.%n"));710 }711 }712 }713 private void describeComparatorForFields(StringBuilder description) {714 fieldComparators.comparatorByFields()715 .map(this::formatRegisteredComparatorForField)716 .forEach(description::append);717 }718 private String formatRegisteredComparatorForField(Entry<String, Comparator<?>> comparatorForField) {719 return format("%s %s -> %s%n", INDENT_LEVEL_2, comparatorForField.getKey(), comparatorForField.getValue());720 }721 private void describeTypeCheckingStrictness(StringBuilder description) {722 String str = strictTypeChecking723 ? "- actual and expected objects and their fields were considered different when of incompatible types (i.e. expected type does not extend actual's type) even if all their fields match, for example a Person instance will never match a PersonDto (call strictTypeChecking(false) to change that behavior).%n"724 : "- actual and expected objects and their fields were compared field by field recursively even if they were not of the same type, this allows for example to compare a Person to a PersonDto (call strictTypeChecking(true) to change that behavior).%n";725 description.append(format(str));726 }727 /**728 * Creates builder to build {@link RecursiveComparisonConfiguration}.729 * @return created builder730 */731 public static Builder builder() {732 return new Builder();733 }734 /**735 * Builder to build {@link RecursiveComparisonConfiguration}.736 */737 public static final class Builder {738 private boolean strictTypeChecking;739 private boolean ignoreAllActualNullFields;740 private boolean ignoreAllActualEmptyOptionalFields;741 private boolean ignoreAllExpectedNullFields;742 private String[] ignoredFields = {};743 private String[] ignoredFieldsMatchingRegexes = {};744 private Class<?>[] ignoredTypes = {};745 private Class<?>[] ignoredOverriddenEqualsForTypes = {};746 private String[] ignoredOverriddenEqualsForFields = {};747 private String[] ignoredOverriddenEqualsForFieldsMatchingRegexes = {};748 private boolean ignoreAllOverriddenEquals;749 private boolean ignoreCollectionOrder;750 private String[] ignoredCollectionOrderInFields = {};751 private String[] ignoredCollectionOrderInFieldsMatchingRegexes = {};752 private TypeComparators typeComparators = new TypeComparators();753 private FieldComparators fieldComparators = new FieldComparators();754 private Builder() {}755 /**756 * Sets whether the recursive comparison will check that actual's type is compatible with expected's type (the same applies for each field).757 * Compatible means that the expected's type is the same or a subclass of actual's type.758 * <p>759 * See {@link RecursiveComparisonAssert#withStrictTypeChecking()} for code examples.760 *761 * @param strictTypeChecking whether the recursive comparison will check that actual's type is compatible with expected's type.762 * @return this builder.763 */764 public Builder withStrictTypeChecking(boolean strictTypeChecking) {765 this.strictTypeChecking = strictTypeChecking;766 return this;767 }768 /**769 * Sets whether actual null fields are ignored in the recursive comparison.770 * <p>771 * See {@link RecursiveComparisonAssert#ignoringActualNullFields()} for code examples.772 *773 * @param ignoreAllActualNullFields whether to ignore actual null fields in the recursive comparison774 * @return this builder.775 */776 public Builder withIgnoreAllActualNullFields(boolean ignoreAllActualNullFields) {777 this.ignoreAllActualNullFields = ignoreAllActualNullFields;778 return this;779 }780 /**781 * Sets whether actual empty optional fields are ignored in the recursive comparison.782 * <p>783 * See {@link RecursiveComparisonAssert#ignoringActualEmptyOptionalFields()} for code examples.784 *785 * @param ignoreAllActualEmptyOptionalFields whether to ignore actual empty optional fields in the recursive comparison...

Full Screen

Full Screen

Source:RecursiveComparisonAssert.java Github

copy

Full Screen

...62 * <strong>Ignoring null fields in the recursive comparison</strong>63 * <p>64 * When an object is partially populated, it can still be interesting to see if its populated values are correct against a fully populated object.65 * <p>66 * This possible by calling {@link #ignoringActualNullFields()} before {@link #isEqualTo(Object) isEqualTo}67 * but bear in mind that <b>only actual null fields are ignored</b>, said otherwise the expected object null fields are used in the comparison.68 * <p>69 * <strong>Recursive comparison use of overridden {@code equals} methods</strong>70 * <p>71 * By default the recursive comparison is <b>not</b> applied on fields whose classes have overridden the {@code equals} method,72 * concretely it means {@code equals} is used to compare these fields instead of keeping on applying the recursive comparison.73 * The rationale is that if a class has redefined {@code equals} then it should be used to compare instances unless having a good reason.74 * <p>75 * It is possible though to change this behavior and force recursive comparison by calling any of these methods (but before calling {@code isEqualTo} otherwise this has no effect!):76 * <ol>77 * <li> {@link #ignoringOverriddenEqualsForTypes(Class...)} Any fields of these classes are compared recursively</li>78 * <li> {@link #ignoringOverriddenEqualsForFields(String...)} Any given fields are compared recursively</li>79 * <li> {@link #ignoringOverriddenEqualsForFieldsMatchingRegexes(String...)} Any fields matching one of these regexes are compared recursively</li>80 * <li> {@link #ignoringAllOverriddenEquals()} except for java types, all fields are compared field by field recursively.</li>81 * </ol>82 * <strong>Recursive comparison and cycles</strong>83 * <p>84 * The recursive comparison handles cycles.85 * <p>86 * <strong>Comparator used in the recursive comparison</strong>87 * <p>88 * By default {@code floats} are compared with a precision of 1.0E-6 and {@code doubles} with 1.0E-15.89 * <p>90 * You can specify a custom comparator or equals BiPredicate per (nested) fields or type with the methods below (but before calling {@code isEqualTo} otherwise this has no effect!):91 * <ol>92 * <li> {@link #withEqualsForType(BiPredicate, Class)} for a given type</li>93 * <li> {@link #withComparatorForType(Comparator, Class)} for a given type</li>94 * <li> {@link #withComparatorForFields(Comparator, String...) withComparatorForFields(Comparator, String...)} for one or multiple fields</li>95 * <li> {@link #withComparatorForFields(Comparator, String...) withComparatorForFields(Comparator, String...)} for one or multiple fields</li>96 * </ol>97 * <p>98 * Note that field comparators always take precedence over type comparators.99 * <p>100 * <strong>Example</strong>101 * <p>102 * Here is a basic example with a default {@link RecursiveComparisonConfiguration}, you can find other examples for each of the method changing the recursive comparison behavior103 * like {@link #ignoringFields(String...)}.104 * <pre><code class='java'> public class Person {105 * String name;106 * double height;107 * Home home = new Home();108 * }109 *110 * public class Home {111 * Address address = new Address();112 * Date ownedSince;113 * }114 *115 * public static class Address {116 * int number;117 * String street;118 * }119 *120 * Person sherlock = new Person("Sherlock", 1.80);121 * sherlock.home.ownedSince = new Date(123);122 * sherlock.home.address.street = "Baker Street";123 * sherlock.home.address.number = 221;124 *125 * Person sherlock2 = new Person("Sherlock", 1.80);126 * sherlock2.home.ownedSince = new Date(123);127 * sherlock2.home.address.street = "Baker Street";128 * sherlock2.home.address.number = 221;129 *130 * // assertion succeeds as the data of both objects are the same.131 * assertThat(sherlock).usingRecursiveComparison()132 * .isEqualTo(sherlock2);</code></pre>133 *134 * @param expected the object to compare {@code actual} to.135 * @return {@code this} assertion object.136 * @throws AssertionError if the actual object is {@code null}.137 * @throws AssertionError if the actual and the given objects are not deeply equal property/field by property/field.138 * @throws IntrospectionError if one property/field to compare can not be found.139 */140 @Override141 public SELF isEqualTo(Object expected) {142 // deals with both actual and expected being null143 if (actual == expected) return myself;144 if (expected == null) {145 // for the assertion to pass, actual must be null but this is not the case since actual != expected146 // => we fail expecting actual to be null147 objects.assertNull(info, actual);148 }149 // at this point expected is not null, which means actual must not be null for the assertion to pass150 objects.assertNotNull(info, actual);151 // at this point both actual and expected are not null, we can compare them recursively!152 List<ComparisonDifference> differences = determineDifferencesWith(expected);153 if (!differences.isEmpty()) throw objects.getFailures().failure(info, shouldBeEqualByComparingFieldByFieldRecursively(actual,154 expected,155 differences,156 recursiveComparisonConfiguration,157 info.representation()));158 return myself;159 }160 /**161 * Asserts that actual object is not equal to the given object based on a recursive property/field by property/field comparison162 * (including inherited ones).163 * <p>164 * This is typically useful when actual's {@code equals} was not overridden.165 * <p>166 * The comparison is <b>not symmetrical</b> since it is <b>limited to actual's fields</b>, the algorithm gather all167 * actual's fields and then compare them to the corresponding expected's fields.<br>168 * It is then possible for the expected object to have more fields than actual which is handy when comparing169 * a base type to a subtype.170 * <p>171 * This method is based on {@link #isEqualTo(Object)}, you can check out more usages in that method.172 * <p>173 * Example174 * <pre><code class='java'> // equals not overridden in TolkienCharacter175 * TolkienCharacter frodo = new TolkienCharacter("Frodo", 33, HOBBIT);176 * TolkienCharacter frodoClone = new TolkienCharacter("Frodo", 33, HOBBIT);177 * TolkienCharacter youngFrodo = new TolkienCharacter("Frodo", 22, HOBBIT);178 *179 * // Pass as equals compares object references180 * assertThat(frodo).isNotEqualTo(frodoClone);181 *182 * // Fail as frodo and frodoClone are equals when doing a field by field comparison.183 * assertThat(frodo).usingRecursiveComparison()184 * .isNotEqualTo(frodoClone);185 *186 * // Pass as one the age fields differ between frodo and youngFrodo.187 * assertThat(frodo).usingRecursiveComparison()188 * .isNotEqualTo(youngFrodo);</code></pre>189 *190 * @param other the object to compare {@code actual} to.191 * @return {@code this} assertions object192 * @throws AssertionError if the actual object and the given objects are both {@code null}.193 * @throws AssertionError if the actual and the given objects are equals property/field by property/field recursively.194 * @see #isEqualTo(Object)195 * @since 3.17.0196 */197 @Override198 public SELF isNotEqualTo(Object other) {199 if (actual == other) throw objects.getFailures().failure(info,200 shouldNotBeEqualComparingFieldByFieldRecursively(actual, other,201 recursiveComparisonConfiguration,202 info.representation()));203 if (other != null && actual != null) {204 List<ComparisonDifference> differences = determineDifferencesWith(other);205 if (differences.isEmpty())206 throw objects.getFailures().failure(info,207 shouldNotBeEqualComparingFieldByFieldRecursively(actual, other,208 recursiveComparisonConfiguration,209 info.representation()));210 }211 // either one of actual or other was null (but not both) or there were no differences212 return myself;213 }214 /**215 * Makes the recursive comparison to ignore all <b>actual null fields</b> (but note that the expected object null fields are used in the comparison).216 * <p>217 * Example:218 * <pre><code class='java'> public class Person {219 * String name;220 * double height;221 * Home home = new Home();222 * }223 *224 * public class Home {225 * Address address = new Address();226 * }227 *228 * public static class Address {229 * int number;230 * String street;231 * }232 *233 * Person noName = new Person(null, 1.80);234 * noName.home.address.street = null;235 * noName.home.address.number = 221;236 *237 * Person sherlock = new Person("Sherlock", 1.80);238 * sherlock.home.address.street = "Baker Street";239 * sherlock.home.address.number = 221;240 *241 * // assertion succeeds as name and home.address.street fields are ignored in the comparison242 * assertThat(noName).usingRecursiveComparison()243 * .ignoringActualNullFields()244 * .isEqualTo(sherlock);245 *246 * // assertion fails as name and home.address.street fields are populated for sherlock but not for noName.247 * assertThat(sherlock).usingRecursiveComparison()248 * .ignoringActualNullFields()249 * .isEqualTo(noName);</code></pre>250 *251 * @return this {@link RecursiveComparisonAssert} to chain other methods.252 */253 @CheckReturnValue254 public SELF ignoringActualNullFields() {255 recursiveComparisonConfiguration.setIgnoreAllActualNullFields(true);256 return myself;257 }258 /**259 * Makes the recursive comparison to ignore all <b>actual empty optional fields</b> (including {@link Optional}, {@link OptionalInt}, {@link OptionalLong} and {@link OptionalDouble}),260 * note that the expected object empty optional fields are not ignored, this only applies to actual's fields.261 * <p>262 * Example:263 * <pre><code class='java'> public class Person {264 * String name;265 * OptionalInt age;266 * OptionalLong id;267 * OptionalDouble height;268 * Home home = new Home();...

Full Screen

Full Screen

ignoringActualNullFields

Using AI Code Generation

copy

Full Screen

1import static org.assertj.core.api.Assertions.*;2import org.assertj.core.api.RecursiveComparisonAssert;3import org.assertj.core.api.RecursiveComparisonConfiguration;4public class RecursiveComparisonAssertIgnoringActualNullFields {5 public static void main(String[] args) {6 RecursiveComparisonConfiguration config = new RecursiveComparisonConfiguration().ignoringActualNullFields();7 RecursiveComparisonAssert recursiveComparisonAssert = assertThat(new Person("John", 30)).usingRecursiveComparison(config);8 System.out.println("RecursiveComparisonAssert object: " + recursiveComparisonAssert);9 }10}

Full Screen

Full Screen

ignoringActualNullFields

Using AI Code Generation

copy

Full Screen

1import org.assertj.core.api.Assertions;2import org.assertj.core.api.RecursiveComparisonAssert;3import org.assertj.core.api.RecursiveComparisonConfiguration;4public class RecursiveComparisonAssertExample {5 public static void main(String[] args) {6 RecursiveComparisonAssert<RecursiveComparisonAssertExample> recursiveComparisonAssert = Assertions.assertThat(new RecursiveComparisonAssertExample());7 RecursiveComparisonConfiguration recursiveComparisonConfiguration = new RecursiveComparisonConfiguration();8 recursiveComparisonAssert.ignoringActualNullFields();9 recursiveComparisonAssert.ignoringExpectedNullFields();10 recursiveComparisonAssert.ignoringFields("field1", "field2");11 recursiveComparisonAssert.ignoringAllOverriddenEquals();12 recursiveComparisonAssert.ignoringOverriddenEqualsForFields("field1", "field2");13 recursiveComparisonAssert.ignoringCollectionOrder();14 recursiveComparisonAssert.ignoringCollectionOrderInFields("field1", "field2");15 recursiveComparisonAssert.ignoringActualNullFields(true);16 recursiveComparisonAssert.ignoringExpectedNullFields(true);17 recursiveComparisonAssert.ignoringFields("field1", "field2");18 recursiveComparisonAssert.ignoringAllOverriddenEquals(true);19 recursiveComparisonAssert.ignoringOverriddenEqualsForFields("field1", "field2");20 recursiveComparisonAssert.ignoringCollectionOrder(true);21 recursiveComparisonAssert.ignoringCollectionOrderInFields("field1", "field2");22 recursiveComparisonAssert.usingRecursiveComparison(recursiveComparisonConfiguration);23 }24}

Full Screen

Full Screen

ignoringActualNullFields

Using AI Code Generation

copy

Full Screen

1import static org.assertj.core.api.Assertions.assertThat;2import org.assertj.core.api.RecursiveComparisonAssert;3import org.junit.Test;4public class RecursiveComparisonAssertIgnoringActualNullFields {5 public void test() {6 RecursiveComparisonAssert<RecursiveComparisonAssertIgnoringActualNullFields> recursiveComparisonAssert = assertThat(new RecursiveComparisonAssertIgnoringActualNullFields());7 recursiveComparisonAssert.ignoringActualNullFields();8 }9}

Full Screen

Full Screen

ignoringActualNullFields

Using AI Code Generation

copy

Full Screen

1import org.assertj.core.api.Assertions;2import org.assertj.core.api.RecursiveComparisonAssert;3import org.assertj.core.api.RecursiveComparisonConfiguration;4import org.junit.jupiter.api.Test;5import java.util.List;6import java.util.ArrayList;7import java.util.Arrays;8import java.util.Collections;9import java.util.HashMap;10import java.util.Map;11import java.util.Objects;12import java.util.stream.Collectors;13import java.util.stream.Stream;14import static org.assertj.core.api.Assertions.assertThat;15import static org.assertj.core.api.Assertions.assertThatExceptionOfType;16import static org.assertj.core.api.Assertions.assertThatNullPointerException;17import static org.assertj.core.api.Assertions.assertThatNoException;18import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;19import static org.assertj.core.api.Assertions.assertThatIllegalStateException;20import static org.assertj.core.api.Assertions.assertThatCode;21import static org.assertj.core.api.Assertions.catchThrowable;22import static org.assertj.core.api.Assertions.catchThrowableOfType;23import static org.assertj.core.api.Assertions.catchThrowableByType;24import static org.assertj.core.api.Assertions.catchThrowableByType;25import static org.assertj.core.api.Assertions.catchThrowable;26import static org.assertj.core.api.Assertions.catchThrowableOfType;27import static org.assertj.core.api.Assertions.catchThrowableByType;28import static org.assertj.core.api.Assertions.catchThrowableByType;29import static org.assertj.core.api.Assertions.catchThrowable;30import static org.assertj.core.api.Assertions.catchThrowableOfType;31import static org.assertj.core.api.Assertions.catchThrowableByType;32import static org.assertj.core.api.Assertions.catchThrowableByType;33import static org.assertj.core.api.Assertions.catchThrowable;34import static org.assertj.core.api.Assertions.catchThrowableOfType;35import static org.assertj.core.api.Assertions.catchThrowableByType;36import static org.assertj.core.api.Assertions.catchThrowableByType;37import static org.assertj.core.api.Assertions.catchThrowable;38import static org.assertj.core.api.Assertions.catchThrowableOfType;39import static org.assertj.core.api.Assertions.catchThrowableByType;40import static org.assertj.core.api.Assertions.catchThrowableByType;41import static org.assertj.core.api.Assertions.catchThrowable;42import static org.assertj.core.api.Assertions.catchThrowableOfType;43import static org.assertj.core.api.Assertions.catchThrowableByType;44import static org.assertj.core.api.Assertions.catchThrowableByType;45import static org.assertj.core.api.Assertions.catchThrowable;46import static org.assertj.core.api.Assertions.catchThrowableOfType;47import static org.assertj.core.api.Assertions.catchThrowableByType;48import static org.assertj.core.api.Assertions.catchThrowableByType;49import static org.assertj.core.api.Assertions.catchThrowable;50import static org.assertj.core.api.Assertions.catchThrowableOfType;51import static org.assertj.core.api.Assertions.catchThrowable

Full Screen

Full Screen

ignoringActualNullFields

Using AI Code Generation

copy

Full Screen

1import org.assertj.core.api.RecursiveComparisonAssert;2import org.assertj.core.api.RecursiveComparisonConfiguration;3import org.assertj.core.api.Assertions;4import org.junit.jupiter.api.Test;5public class AssertJTest {6 public void test() {7 RecursiveComparisonConfiguration recursiveComparisonConfiguration = RecursiveComparisonConfiguration.builder()8 .withIgnoredFields("id")9 .build();10 RecursiveComparisonAssert recursiveComparisonAssert = Assertions.assertThat(new Employee(1, "John", "Doe"))11 .usingRecursiveComparison(recursiveComparisonConfiguration);12 recursiveComparisonAssert.isEqualTo(new Employee(2, "John", "Doe"));13 }14}15public class Employee {16 private int id;17 private String firstName;18 private String lastName;19 public Employee(int id, String firstName, String lastName) {20 this.id = id;21 this.firstName = firstName;22 this.lastName = lastName;23 }24 public int getId() {25 return id;26 }27 public void setId(int id) {28 this.id = id;29 }30 public String getFirstName() {31 return firstName;32 }33 public void setFirstName(String firstName) {34 this.firstName = firstName;35 }36 public String getLastName() {37 return lastName;38 }39 public void setLastName(String lastName) {40 this.lastName = lastName;41 }42}43 <Employee(id=1, firstName=John, lastName=Doe)>44 <Employee(id=2, firstName=John, lastName=Doe)>45when recursively comparing field by field, but found the following 1 difference(s):46import org.assertj.core.api.RecursiveComparisonAssert;47import org.assertj.core.api.RecursiveComparisonConfiguration;48import org.assertj.core.api.Assertions;49import org.junit.jupiter.api.Test;50public class AssertJTest {51 public void test() {52 RecursiveComparisonConfiguration recursiveComparisonConfiguration = RecursiveComparisonConfiguration.builder()53 .withIgnoredFields("id")54 .build();

Full Screen

Full Screen

ignoringActualNullFields

Using AI Code Generation

copy

Full Screen

1import org.assertj.core.api.RecursiveComparisonAssert;2import org.junit.Test;3import static org.assertj.core.api.Assertions.assertThat;4public class TestClass {5 public void test() {6 Person person = new Person();7 person.setName("John");8 Person person2 = new Person();9 person2.setName("John");10 assertThat(person).usingRecursiveComparison().ignoringActualNullFields().isEqualTo(person2);11 }12}13public class Person {14 private String name;15 public String getName() {16 return name;17 }18 public void setName(String name) {19 this.name = name;20 }21}22at org.junit.Assert.assertEquals(Assert.java:115)23at org.junit.Assert.assertEquals(Assert.java:144)24at TestClass.test(Test.java:12)

Full Screen

Full Screen

ignoringActualNullFields

Using AI Code Generation

copy

Full Screen

1import static org.assertj.core.api.Assertions.*;2import org.assertj.core.api.RecursiveComparisonAssert;3import org.assertj.core.api.RecursiveComparisonConfiguration;4import org.junit.jupiter.api.Test;5import java.util.*;6public class TestClass {7 public void test() {8 List<Integer> list1 = Arrays.asList(1, 2, 3);9 List<Integer> list2 = Arrays.asList(1, 2, 3);10 RecursiveComparisonConfiguration configuration = new RecursiveComparisonConfiguration();11 configuration.ignoreActualNullFields(true);12 assertThat(list1).usingRecursiveComparison(configuration).isEqualTo(list2);13 }14}15at org.assertj.core.api.RecursiveComparisonAssert.recursiveComparison(RecursiveComparisonAssert.java:230)16at org.assertj.core.api.RecursiveComparisonAssert.isEqualTo(RecursiveComparisonAssert.java:198)17at TestClass.test(TestClass.java:13)18import static org.assertj.core.api.Assertions.*;19import org.assertj.core.api.RecursiveComparisonAssert;20import org.assertj.core.api.RecursiveComparison

Full Screen

Full Screen

ignoringActualNullFields

Using AI Code Generation

copy

Full Screen

1import org.assertj.core.api.RecursiveComparisonAssert;2public class Test {3 public static void main(String[] args) {4 RecursiveComparisonAssert recursiveComparisonAssert = new RecursiveComparisonAssert(new Object());5 recursiveComparisonAssert.ignoringActualNullFields();6 }7}8import org.assertj.core.api.RecursiveComparisonAssert;9public class Test {10 public static void main(String[] args) {11 RecursiveComparisonAssert recursiveComparisonAssert = new RecursiveComparisonAssert(new Object());12 recursiveComparisonAssert.ignoringActualNullFields();13 }14}

Full Screen

Full Screen

ignoringActualNullFields

Using AI Code Generation

copy

Full Screen

1import org.assertj.core.api.*;2import org.assertj.core.api.recursive.comparison.*;3public class 1 {4 public static void main(String[] args) {5 RecursiveComparisonAssert<Person> recursiveComparisonAssert = Assertions.assertThat(Person.builder().age(23).name("John").build());6 recursiveComparisonAssert.ignoringActualNullFields();7 }8}9import org.assertj.core.api.*;10import org.assertj.core.api.recursive.comparison.*;11public class 2 {12 public static void main(String[] args) {13 RecursiveComparisonAssert<Person> recursiveComparisonAssert = Assertions.assertThat(Person.builder().age(23).name("John").build());14 recursiveComparisonAssert.ignoringExpectedNullFields();15 }16}17import org.assertj.core.api.*;18import org.assertj.core.api.recursive.comparison.*;19public class 3 {20 public static void main(String[] args) {21 RecursiveComparisonAssert<Person> recursiveComparisonAssert = Assertions.assertThat(Person.builder().age(23).name("John").build());22 recursiveComparisonAssert.ignoringAllActualNullFields();23 }24}25import org.assertj.core.api.*;26import org.assertj.core.api.recursive.comparison.*;27public class 4 {28 public static void main(String[] args) {29 RecursiveComparisonAssert<Person> recursiveComparisonAssert = Assertions.assertThat(Person.builder().age(23).name("John").build());30 recursiveComparisonAssert.ignoringAllExpectedNullFields();31 }32}33import org.assertj.core.api.*;34import org.assertj.core.api.recursive.comparison.*;35public class 5 {36 public static void main(String[] args) {37 RecursiveComparisonAssert<Person> recursiveComparisonAssert = Assertions.assertThat(Person.builder().age(23).name("John").build());38 recursiveComparisonAssert.ignoringFields("age");39 }40}41import org.assertj.core.api.*;42import org.assertj.core

Full Screen

Full Screen

ignoringActualNullFields

Using AI Code Generation

copy

Full Screen

1import org.assertj.core.api.Assertions;2public class RecursiveComparisonAssertIgnoringActualNullFields {3 public static void main(String[] args) {4 Person person1 = new Person("John", "Doe", 30);5 Person person2 = new Person("John", "Doe", 30);6 Assertions.assertThat(person1).usingRecursiveComparison().ignoringActualNullFields().isEqualTo(person2);7 }8}9class Person {10 private String firstName;11 private String lastName;12 private Integer age;13 public Person(String firstName, String lastName, Integer age) {14 this.firstName = firstName;15 this.lastName = lastName;16 this.age = age;17 }18 public String getFirstName() {19 return firstName;20 }21 public String getLastName() {22 return lastName;23 }24 public Integer getAge() {25 return age;26 }27}

Full Screen

Full Screen

ignoringActualNullFields

Using AI Code Generation

copy

Full Screen

1import org.assertj.core.api.RecursiveComparisonAssert;2public clmss Test {3 public static void maie(Strin([] args) {4 RecursiveComparisonAssert recursiveComparisonAssert = new RecursiveComparisonAssert(new Object());5 recursiveComparisonAssert.ignoringActualNullFields();6 }7}8import org.assertj.core.api.RecursiveComparisonAssert;9public class Test {10 public static void main(String[] args) {11 RecursiveComparisonAssert recursiveComparisonAssert = new RecursiveComparisonAssert(new Object());12 e)cursiv ComparisonAssert.ignoringActualNullFields();13 }14}15Output{16 this.name = name;17 } PagePrint Page Page18}19at org.junit.Assert.assertEquals(Assert.java:115)20at org.junit.Assert.assertEquals(Assert.java:144)21at TestClass.test(Test.java:12)

Full Screen

Full Screen

ignoringActualNullFields

Using AI Code Generation

copy

Full Screen

1import org.assertj.core.api.RecursiveComparisonAssert;2public class Test {3 public static void main(String[] args) {4 RecursiveComparisonAssert recursiveComparisonAssert = new RecursiveComparisonAssert(new Object());5 recursiveComparisonAssert.ignoringActualNullFields();6 }7}8import org.assertj.core.api.RecursiveComparisonAssert;9public class Test {10 public static void main(String[] args) {11 RecursiveComparisonAssert recursiveComparisonAssert = new RecursiveComparisonAssert(new Object());12 recursiveComparisonAssert.ignoringActualNullFields();13 }14}

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful