AssertJ:Assertions.assertThat().usingRecursiveComparison().ignoringFields() 问题

AssertJ: issue with Assertions.assertThat().usingRecursiveComparison().ignoringFields()

我正在使用 assertj-core:3.21.0 和 JDK 17

这是一个失败的简单示例。这适用于 JDK 16 和 assertj-core:3.19.0.

        @AllArgsConstructor
        @Data
        class Test {
            @JsonIgnore
            private final ObjectMapper objectMapper = new ObjectMapper();

            private String name;
        }

        Assertions.assertThat(Map.of(
            1, new Test("a"),
            2, new Test("b")
        )).usingRecursiveComparison().ignoringFields("objectMapper").isEqualTo(Map.of(
            1, new Test("a"),
            2, new Test("b")
        ));

我得到的错误是 java.lang.reflect.InaccessibleObjectException: Unable to make field private volatile java.lang.Object java.util.concurrent.atomic.AtomicReference.value accessible: module java.base does not "opens java.util.concurrent.atomic" to unnamed module @48140564

我发现如果我从 class 中删除 private final ObjectMapper objectMapper = new ObjectMapper(); 它会起作用,所以看起来 ignoringFields 没有正确地忽略 objectMapper

有什么想法吗?

这可能在 java 17 之前有效,参见

我在 AssertJ 递归比较中提出了一个问题,即不使用反射来比较 AtomicReference。

完成:https://github.com/assertj/assertj-core/issues/2466