I would like to programmatically check if an object fulfills what is specified by its javax.persistance annotations. I am creating a fake for a Hibernate DAO for unit testing purposes. However, there was a defect that was not caught by the unit tests since the fake did not check the length of the field in the @Column annotation, which Hibernate did.
Obviously, I could add code to check those fields manually, but I'd rather use a method that would check all of them and thus would be up-to-date should the value change. I tried using javax.validation.Validator with Apache Bean Validation but the Validator found no problems. Is there a function that would test without invoking a full blown Hibernate session?
To be clear, I am interested in simulating Hibernate's "type checking" and not bean validation itself, that was just something I was attempting to use to perform the check.
import javax.validation.Validation;
@Test( expected = IllegalArgumentException.class )
public shouldComplainBecauseOfNullsOrLength(){
AclPermission acl = new AclPermission();
acl.setTarget( "I am way tooo long for this field . " );
if( ! Validation.buildDefaultValidatorFactory().getValidator().validate( acl ).isEmpty() )
throw new IllegalArgumentException();
fail( "Should have had a problem with null values." );
}
Currently using this code which I'd rather replace with something more robust.
for( String fieldName : new String[]{ "target", "action", "recipient" } ){
final Field field = AclPermission.class.getDeclaredField( fieldName );
field.setAccessible( true );
final Column fieldConstraints = field.getAnnotation( Column.class );
final String fieldValue = (String) field.get( acl );
if( ! fieldConstraints.nullable() && fieldValue == null )
throw new NullPointerException( fieldName + " is null." );
else if( fieldValue != null && fieldValue.length() > fieldConstraints.length() )
throw new IllegalArgumentException( fieldName + " is too long " + fieldValue.length() + "/" + fieldConstraints.length() );
}
This is the class I am trying to validate:
public class AclPermission{
@Id
@Column(name="ID", nullable=false)
@GeneratedValue(generator="system-uuid")
@GenericGenerator(name="system-uuid", strategy = "uuid")
private String id;
@Column(name="TARGET", nullable=false, length=6)
private String target;
@Column(name="ACTION", nullable=false, length=10)
private String action;
@Column(name="RECIPIENT", nullable=false, length=6)
private String recipient;
//... getters and setters go here
}