use of org.hibernate.validator.testutil.TestForIssue in project hibernate-validator by hibernate.
the class ProgrammaticContainerElementConstraintsForFieldTest method canDeclareContainerElementConstraintsForListContainingArrayTypeFieldProgrammatically.
// HV-1428 Container element support is disabled for arrays
@Test(expectedExceptions = ValidationException.class, expectedExceptionsMessageRegExp = "HV000226:.*")
@TestForIssue(jiraKey = "HV-1239")
public void canDeclareContainerElementConstraintsForListContainingArrayTypeFieldProgrammatically() {
ConstraintMapping newMapping = config.createConstraintMapping();
newMapping.type(FishTank.class).field("fishNamesByMonth").containerElementType(0, 0).constraint(new SizeDef().max(5));
config.addMapping(newMapping);
Validator validator = config.buildValidatorFactory().getValidator();
Set<ConstraintViolation<FishTank>> violations = validator.validate(new FishTank());
assertThat(violations).containsOnlyViolations(violationOf(Size.class).withMessage("size must be between 0 and 5"));
}
use of org.hibernate.validator.testutil.TestForIssue in project hibernate-validator by hibernate.
the class ProgrammaticContainerElementConstraintsForGetterTest method canDeclareContainerElementCascadesForGetterProgrammatically.
@Test
@TestForIssue(jiraKey = "HV-1239")
public void canDeclareContainerElementCascadesForGetterProgrammatically() {
ConstraintMapping newMapping = config.createConstraintMapping();
newMapping.type(FishTank.class).getter("boss").containerElementType().valid().type(Fish.class).getter("name").constraint(new NotNullDef());
config.addMapping(newMapping);
Validator validator = config.buildValidatorFactory().getValidator();
Set<ConstraintViolation<FishTank>> violations = validator.validate(new FishTank());
assertThat(violations).containsOnlyViolations(violationOf(NotNull.class).withMessage("must not be null"));
}
use of org.hibernate.validator.testutil.TestForIssue in project hibernate-validator by hibernate.
the class ProgrammaticContainerElementConstraintsForGetterTest method configuringSameContainerElementTwiceCausesException.
@Test(expectedExceptions = ValidationException.class, expectedExceptionsMessageRegExp = "HV000214.*")
@TestForIssue(jiraKey = "HV-1239")
public void configuringSameContainerElementTwiceCausesException() {
ConstraintMapping newMapping = config.createConstraintMapping();
newMapping.type(FishTank.class).getter("tagsOfFishOfTheMonth").containerElementType(0, 1, 0).constraint(new NotNullDef()).containerElementType(0, 1, 0);
}
use of org.hibernate.validator.testutil.TestForIssue in project hibernate-validator by hibernate.
the class ProgrammaticContainerElementConstraintsForGetterTest method declaringContainerElementConstraintOnNonGenericGetterCausesException.
@Test(expectedExceptions = ValidationException.class, expectedExceptionsMessageRegExp = "HV000211.*")
@TestForIssue(jiraKey = "HV-1239")
public void declaringContainerElementConstraintOnNonGenericGetterCausesException() {
ConstraintMapping newMapping = config.createConstraintMapping();
newMapping.type(FishTank.class).getter("size").containerElementType(1);
}
use of org.hibernate.validator.testutil.TestForIssue in project hibernate-validator by hibernate.
the class ProgrammaticContainerElementConstraintsForGetterTest method omittingTypeArgumentForMultiTypeArgumentTypeOnGetterCausesException.
@Test(expectedExceptions = ValidationException.class, expectedExceptionsMessageRegExp = "HV000213.*")
@TestForIssue(jiraKey = "HV-1239")
public void omittingTypeArgumentForMultiTypeArgumentTypeOnGetterCausesException() {
ConstraintMapping newMapping = config.createConstraintMapping();
newMapping.type(FishTank.class).getter("fishCountByType").containerElementType();
}
Aggregations