testlens-app[bot] commented on PR #16237: URL: https://github.com/apache/grails-core/pull/16237#issuecomment-5648166013
## 🚨 TestLens detected 16 failed tests 🚨 Here is what you can do: 1) Inspect the test failures carefully. 2) If you are convinced that some of the tests are flaky, you can mute them below. 3) Finally, trigger a rerun by checking the rerun checkbox. ### Test Summary #### [CI / Build Grails-Core Rerunning all Tasks \(Ubuntu JDK 21 shard 1\)](https://github.com/apache/grails-core/actions/runs/34713756751/job/103607076244?pr=16237) > :grails-converters:test | Test | Runs | Flakiness | |---|---|--:| | NonPublicClassMarshallingSpec > a Serializable Groovy bean is marshalled without tripping over its static fields | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > a Serializable Java bean is marshalled without tripping over its static fields | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > a bean class that is not public is reported once | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > a covariant read method with no public declaring type is marshalled from the override | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > a dynamically compiled anonymous Groovy class is marshalled | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > a map of non-public beans and Serializable beans is marshalled as a whole | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > a package-private Groovy class implementing a public interface is marshalled | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > a package-private Groovy class without any interface is marshalled | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > a package-private Java class implementing a public interface is marshalled | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > a package-private Java class without any interface is marshalled | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > a public field of an anonymous Groovy class is marshalled | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > a public field of an anonymous Java class is marshalled | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > an anonymous Groovy class implementing a public interface is marshalled | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > an anonymous Java class implementing a public interface is marshalled | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > marshalling a Groovy bean does not widen access on the shared property descriptor cache | ❌ | 0% 🟢 | | NonPublicClassMarshallingSpec > marshalling does not widen access on the shared property descriptor cache | ❌ | 0% 🟢 | 🏷️ Commit: d69d4b6e697a1e519a6168e18c381362161ca2f0 ▶️ Tests: 5639 executed 🟡 Checks: 28/85 completed ### Test Failures (first 10 of 16) <details><summary><strong>NonPublicClassMarshallingSpec > a Serializable Groovy bean is marshalled without tripping over its static fields</strong> (:grails-converters:test in <a href="https://github.com/apache/grails-core/actions/runs/34713756751/job/103607076244?pr=16237">CI / Build Grails-Core Rerunning all Tasks (Ubuntu JDK 21 shard 1)</a>)</summary> ``` org.grails.web.converters.exceptions.ConverterException: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.SerializableGroovyBean at grails.converters.XML.render(XML.java:137) at grails.converters.XML.toString(XML.java:297) at org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec.a Serializable Groovy bean is marshalled without tripping over its static fields(NonPublicClassMarshallingSpec.groovy:258) Caused by: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.SerializableGroovyBean at grails.converters.XML.convertAnother(XML.java:186) at grails.converters.XML.render(XML.java:132) ... 2 more ``` </details> <details><summary><strong>NonPublicClassMarshallingSpec > a Serializable Java bean is marshalled without tripping over its static fields</strong> (:grails-converters:test in <a href="https://github.com/apache/grails-core/actions/runs/34713756751/job/103607076244?pr=16237">CI / Build Grails-Core Rerunning all Tasks (Ubuntu JDK 21 shard 1)</a>)</summary> ``` org.grails.web.converters.exceptions.ConverterException: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.SerializableJavaBean at grails.converters.XML.render(XML.java:137) at grails.converters.XML.toString(XML.java:297) at org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec.a Serializable Java bean is marshalled without tripping over its static fields(NonPublicClassMarshallingSpec.groovy:182) Caused by: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.SerializableJavaBean at grails.converters.XML.convertAnother(XML.java:186) at grails.converters.XML.render(XML.java:132) ... 2 more ``` </details> <details><summary><strong>NonPublicClassMarshallingSpec > a bean class that is not public is reported once</strong> (:grails-converters:test in <a href="https://github.com/apache/grails-core/actions/runs/34713756751/job/103607076244?pr=16237">CI / Build Grails-Core Rerunning all Tasks (Ubuntu JDK 21 shard 1)</a>)</summary> ``` org.grails.web.converters.exceptions.ConverterException: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.PackagePrivateGroovyPerson at grails.converters.XML.render(XML.java:137) at grails.converters.XML.toString(XML.java:297) at org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec.a bean class that is not public is reported once(NonPublicClassMarshallingSpec.groovy:288) Caused by: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.PackagePrivateGroovyPerson at grails.converters.XML.convertAnother(XML.java:186) at grails.converters.XML.render(XML.java:132) ... 2 more ``` </details> <details><summary><strong>NonPublicClassMarshallingSpec > a covariant read method with no public declaring type is marshalled from the override</strong> (:grails-converters:test in <a href="https://github.com/apache/grails-core/actions/runs/34713756751/job/103607076244?pr=16237">CI / Build Grails-Core Rerunning all Tasks (Ubuntu JDK 21 shard 1)</a>)</summary> ``` org.grails.web.converters.exceptions.ConverterException: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.HiddenCovariantJavaBean at grails.converters.XML.render(XML.java:137) at grails.converters.XML.toString(XML.java:297) at org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec.a covariant read method with no public declaring type is marshalled from the override(NonPublicClassMarshallingSpec.groovy:312) Caused by: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.HiddenCovariantJavaBean at grails.converters.XML.convertAnother(XML.java:186) at grails.converters.XML.render(XML.java:132) ... 2 more ``` </details> <details><summary><strong>NonPublicClassMarshallingSpec > a dynamically compiled anonymous Groovy class is marshalled</strong> (:grails-converters:test in <a href="https://github.com/apache/grails-core/actions/runs/34713756751/job/103607076244?pr=16237">CI / Build Grails-Core Rerunning all Tasks (Ubuntu JDK 21 shard 1)</a>)</summary> ``` org.grails.web.converters.exceptions.ConverterException: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: java.util.LinkedHashMap at grails.converters.XML.render(XML.java:137) at grails.converters.XML.toString(XML.java:297) at org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec.a dynamically compiled anonymous Groovy class is marshalled(NonPublicClassMarshallingSpec.groovy:214) Caused by: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: java.util.LinkedHashMap at grails.converters.XML.convertAnother(XML.java:186) at grails.converters.XML.render(XML.java:132) ... 2 more ``` </details> <details><summary><strong>NonPublicClassMarshallingSpec > a map of non-public beans and Serializable beans is marshalled as a whole</strong> (:grails-converters:test in <a href="https://github.com/apache/grails-core/actions/runs/34713756751/job/103607076244?pr=16237">CI / Build Grails-Core Rerunning all Tasks (Ubuntu JDK 21 shard 1)</a>)</summary> ``` org.grails.web.converters.exceptions.ConverterException: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: java.util.LinkedHashMap at grails.converters.XML.render(XML.java:137) at grails.converters.XML.toString(XML.java:297) at org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec.a map of non-public beans and Serializable beans is marshalled as a whole(NonPublicClassMarshallingSpec.groovy:199) Caused by: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: java.util.LinkedHashMap at grails.converters.XML.convertAnother(XML.java:186) at grails.converters.XML.render(XML.java:132) ... 2 more ``` </details> <details><summary><strong>NonPublicClassMarshallingSpec > a package-private Groovy class implementing a public interface is marshalled</strong> (:grails-converters:test in <a href="https://github.com/apache/grails-core/actions/runs/34713756751/job/103607076244?pr=16237">CI / Build Grails-Core Rerunning all Tasks (Ubuntu JDK 21 shard 1)</a>)</summary> ``` org.grails.web.converters.exceptions.ConverterException: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.PackagePrivateGroovyPerson at grails.converters.XML.render(XML.java:137) at grails.converters.XML.toString(XML.java:297) at org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec.a package-private Groovy class implementing a public interface is marshalled(NonPublicClassMarshallingSpec.groovy:109) Caused by: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.PackagePrivateGroovyPerson at grails.converters.XML.convertAnother(XML.java:186) at grails.converters.XML.render(XML.java:132) ... 2 more ``` </details> <details><summary><strong>NonPublicClassMarshallingSpec > a package-private Groovy class without any interface is marshalled</strong> (:grails-converters:test in <a href="https://github.com/apache/grails-core/actions/runs/34713756751/job/103607076244?pr=16237">CI / Build Grails-Core Rerunning all Tasks (Ubuntu JDK 21 shard 1)</a>)</summary> ``` org.grails.web.converters.exceptions.ConverterException: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.PackagePrivateStandaloneGroovyBean at grails.converters.XML.render(XML.java:137) at grails.converters.XML.toString(XML.java:297) at org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec.a package-private Groovy class without any interface is marshalled(NonPublicClassMarshallingSpec.groovy:125) Caused by: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.PackagePrivateStandaloneGroovyBean at grails.converters.XML.convertAnother(XML.java:186) at grails.converters.XML.render(XML.java:132) ... 2 more ``` </details> <details><summary><strong>NonPublicClassMarshallingSpec > a package-private Java class implementing a public interface is marshalled</strong> (:grails-converters:test in <a href="https://github.com/apache/grails-core/actions/runs/34713756751/job/103607076244?pr=16237">CI / Build Grails-Core Rerunning all Tasks (Ubuntu JDK 21 shard 1)</a>)</summary> ``` org.grails.web.converters.exceptions.ConverterException: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.PackagePrivateJavaPerson at grails.converters.XML.render(XML.java:137) at grails.converters.XML.toString(XML.java:297) at org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec.a package-private Java class implementing a public interface is marshalled(NonPublicClassMarshallingSpec.groovy:155) Caused by: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.PackagePrivateJavaPerson at grails.converters.XML.convertAnother(XML.java:186) at grails.converters.XML.render(XML.java:132) ... 2 more ``` </details> <details><summary><strong>NonPublicClassMarshallingSpec > a package-private Java class without any interface is marshalled</strong> (:grails-converters:test in <a href="https://github.com/apache/grails-core/actions/runs/34713756751/job/103607076244?pr=16237">CI / Build Grails-Core Rerunning all Tasks (Ubuntu JDK 21 shard 1)</a>)</summary> ``` org.grails.web.converters.exceptions.ConverterException: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.PackagePrivateStandaloneJavaBean at grails.converters.XML.render(XML.java:137) at grails.converters.XML.toString(XML.java:297) at org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec.a package-private Java class without any interface is marshalled(NonPublicClassMarshallingSpec.groovy:171) Caused by: org.grails.web.converters.exceptions.ConverterException: Inconvertible object of class: org.grails.web.converters.beans.PackagePrivateStandaloneJavaBean at grails.converters.XML.convertAnother(XML.java:186) at grails.converters.XML.render(XML.java:132) ... 2 more ``` </details> ### Rerun Controls > [!NOTE] > Checks are currently running using the configuration below. Select tests to mute in this pull request: 🔲 NonPublicClassMarshallingSpec > a Serializable Groovy bean is marshalled without tripping over its static fields <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_12] --> 🔲 NonPublicClassMarshallingSpec > a Serializable Java bean is marshalled without tripping over its static fields <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_7] --> 🔲 NonPublicClassMarshallingSpec > a bean class that is not public is reported once <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_14] --> 🔲 NonPublicClassMarshallingSpec > a covariant read method with no public declaring type is marshalled from the override <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_15] --> 🔲 NonPublicClassMarshallingSpec > a dynamically compiled anonymous Groovy class is marshalled <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_9] --> 🔲 NonPublicClassMarshallingSpec > a map of non-public beans and Serializable beans is marshalled as a whole <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_8] --> 🔲 NonPublicClassMarshallingSpec > a package-private Groovy class implementing a public interface is marshalled <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_2] --> 🔲 NonPublicClassMarshallingSpec > a package-private Groovy class without any interface is marshalled <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_3] --> 🔲 NonPublicClassMarshallingSpec > a package-private Java class implementing a public interface is marshalled <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_5] --> 🔲 NonPublicClassMarshallingSpec > a package-private Java class without any interface is marshalled <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_6] --> 🔲 NonPublicClassMarshallingSpec > a public field of an anonymous Groovy class is marshalled <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_1] --> 🔲 NonPublicClassMarshallingSpec > a public field of an anonymous Java class is marshalled <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_11] --> 🔲 NonPublicClassMarshallingSpec > an anonymous Groovy class implementing a public interface is marshalled <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_0] --> 🔲 NonPublicClassMarshallingSpec > an anonymous Java class implementing a public interface is marshalled <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_4] --> 🔲 NonPublicClassMarshallingSpec > marshalling a Groovy bean does not widen access on the shared property descriptor cache <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_13] --> 🔲 NonPublicClassMarshallingSpec > marshalling does not widen access on the shared property descriptor cache <!-- uniqueId=[engine:spock]/[spec:org.grails.web.converters.marshaller.xml.NonPublicClassMarshallingSpec]/[feature:$spock_feature_0_10] --> Reuse successful test results: 🔲 ♻️ Only rerun the tests that failed or were muted before Click the checkbox to trigger a rerun: 🔲 **Rerun jobs** --- _Learn more about TestLens at [testlens.app/docs](https://testlens.app/docs/features/pr-comment/)._ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
