Skip to content

Commit 3132090

Browse files
author
Joel Costigliola
committed
Recursive comparison: only check the compared fields existence at the root level.
Fix #3332
1 parent e9ebcc2 commit 3132090

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

assertj-core/src/main/java/org/assertj/core/api/recursive/comparison/RecursiveComparisonDifferenceCalculator.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ private void initDualValuesToCompare(Object actual, Object expected, FieldLocati
140140
boolean mustCompareNodesRecursively = mustCompareNodesRecursively(dualValue);
141141
if (dualValue.hasNoNullValues() && mustCompareNodesRecursively) {
142142
// disregard the equals method and start comparing fields
143-
if (recursiveComparisonConfiguration.someComparedFieldsHaveBeenSpecified()) {
143+
if (recursiveComparisonConfiguration.someComparedFieldsHaveBeenSpecified() && dualValue.fieldLocation.isRoot()) {
144+
// We must check compared fields existence only once and at the root level, if we don't as we use the recursive
145+
// comparison to compare unordered collection elements, we would check the compared fields at the wrong level.
144146
recursiveComparisonConfiguration.checkComparedFieldsExist(actual);
145147
}
146148
// TODO should fail if actual and expected don't have the same fields (taking into account ignored/compared fields)

assertj-core/src/test/java/org/assertj/core/api/recursive/comparison/RecursiveComparisonAssert_isEqualTo_comparingOnlyFields_Test.java

+33
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
*/
1313
package org.assertj.core.api.recursive.comparison;
1414

15+
import static com.google.common.collect.Sets.newHashSet;
1516
import static org.assertj.core.api.Assertions.assertThat;
1617
import static org.assertj.core.api.Assertions.catchIllegalArgumentException;
1718
import static org.assertj.core.api.BDDAssertions.then;
@@ -22,6 +23,7 @@
2223
import static org.junit.jupiter.params.provider.Arguments.arguments;
2324

2425
import java.time.ZonedDateTime;
26+
import java.util.Collection;
2527
import java.util.Date;
2628
import java.util.List;
2729
import java.util.stream.Stream;
@@ -411,4 +413,35 @@ public String toString() {
411413
return String.format("Student[name=%s, subject=%s, rollNo=%s]", this.name, this.subject, this.rollNo);
412414
}
413415
}
416+
417+
@Test
418+
void should_only_check_compared_fields_existence_at_the_root_level() {
419+
// GIVEN
420+
Collection<Name> names = newHashSet(new Name("john", "doe"), new Name("jane", "smith"));
421+
WithNames actual = new WithNames(newHashSet(names));
422+
WithNames expected = new WithNames(newHashSet(names));
423+
// WHEN/THEN
424+
then(actual).usingRecursiveComparison()
425+
.comparingOnlyFields("names")
426+
.isEqualTo(expected);
427+
}
428+
429+
class WithNames {
430+
Collection<Name> names;
431+
432+
public WithNames(Collection<Name> names) {
433+
this.names = names;
434+
}
435+
}
436+
437+
class Name {
438+
String first;
439+
String last;
440+
441+
public Name(String first, String last) {
442+
this.first = first;
443+
this.last = last;
444+
}
445+
}
446+
414447
}

0 commit comments

Comments
 (0)