Cascading validation does not work on classes which implement Iterable.

Description

I had a class which implemented Iterable, but also had constraints I expected to be validated. Everything worked as expected when validating this class directly, but when this class was part of a cascading validation, it's annotated fields were never validated. I found the code in org.hibernate.validator.internal.engine.ValidatorImpl#createIteratorForCascadedValue which looks culpable. If the given type is Iterable, only the elements in the result of invoking iterator() will be validated. I think it should also validate any annotated members of the type itself. In other words, I don't think being iterable should preclude having constraints validated. I've attached a simple test case illustrating the problem. Thank you.

Environment

None

Attachments

1

Activity

Show:

Hardy FerentschikJune 25, 2014 at 9:29 AM

thanks for the bug report. We look into asap. I guess you have a point there.

Hardy FerentschikJune 25, 2014 at 9:24 AM
Edited

ValidateIterableTest.java

Fixed

Details

Assignee

Reporter

Bug Testcase Reminder (view)

Bug reports should generally be accompanied by a test case!

Bug Testcase Reminder (edit)

Bug reports should generally be accompanied by a test case!

Participants

Hardy Ferentschik
William Kemper

Components

Affects versions

Priority

Created June 24, 2014 at 10:28 PM
Updated October 22, 2014 at 2:50 PM
Resolved July 13, 2014 at 9:11 AM