Search in sources :

Example 6 with ReturnValueDescriptor

use of jakarta.validation.metadata.ReturnValueDescriptor in project beanvalidation-tck by eclipse-ee4j.

the class IgnoreAnnotationsOnMethodTest method testIgnoreAnnotationsOnMethodLevel.

@Test
@SpecAssertions({ @SpecAssertion(section = Sections.XML_MAPPING_CONSTRAINTDECLARATIONINXML_METHODLEVELOVERRIDING, id = "l"), @SpecAssertion(section = Sections.XML_MAPPING_CONSTRAINTDECLARATIONINXML_METHODLEVELOVERRIDING, id = "m"), @SpecAssertion(section = Sections.XML_MAPPING_CONSTRAINTDECLARATIONINXML_METHODLEVELOVERRIDING, id = "n"), @SpecAssertion(section = Sections.XML_MAPPING_CONSTRAINTDECLARATIONINXML_METHODLEVELOVERRIDING, id = "p") })
public void testIgnoreAnnotationsOnMethodLevel() {
    MethodDescriptor descriptor = TestUtil.getMethodDescriptor(IgnoreAnnotations.class, "foobar", String.class, String.class);
    CrossParameterDescriptor crossParameterDescriptor = descriptor.getCrossParameterDescriptor();
    assertFalse(crossParameterDescriptor.hasConstraints(), "Cross parameter constraints should be ignored.");
    ReturnValueDescriptor returnValueDescriptor = descriptor.getReturnValueDescriptor();
    assertFalse(returnValueDescriptor.hasConstraints(), "Return value constraints should be ignored.");
    assertTrue(returnValueDescriptor.getGroupConversions().isEmpty(), "Group conversions should be ignored");
    ParameterDescriptor parameterDescriptor = descriptor.getParameterDescriptors().get(0);
    assertFalse(parameterDescriptor.hasConstraints(), "First parameter constraints should be ignored.");
    assertTrue(parameterDescriptor.getGroupConversions().isEmpty(), "Group conversions should be ignored");
    parameterDescriptor = descriptor.getParameterDescriptors().get(1);
    assertTrue(parameterDescriptor.hasConstraints(), "Second parameter constraints should be applied.");
    assertEquals(parameterDescriptor.getGroupConversions().size(), 2, "All group conversions should be combined");
}
Also used : ReturnValueDescriptor(jakarta.validation.metadata.ReturnValueDescriptor) ParameterDescriptor(jakarta.validation.metadata.ParameterDescriptor) CrossParameterDescriptor(jakarta.validation.metadata.CrossParameterDescriptor) CrossParameterDescriptor(jakarta.validation.metadata.CrossParameterDescriptor) MethodDescriptor(jakarta.validation.metadata.MethodDescriptor) SpecAssertions(org.jboss.test.audit.annotations.SpecAssertions) AbstractTCKTest(org.hibernate.beanvalidation.tck.tests.AbstractTCKTest) Test(org.testng.annotations.Test)

Example 7 with ReturnValueDescriptor

use of jakarta.validation.metadata.ReturnValueDescriptor in project beanvalidation-tck by eclipse-ee4j.

the class MethodValidationTest method testConstraintOnMethodReturnValueAndParameter.

@Test
@SpecAssertions({ @SpecAssertion(section = Sections.CONSTRAINTMETADATA_CONSTRAINTDESCRIPTOR, id = "a"), @SpecAssertion(section = Sections.XML_MAPPING_CONSTRAINTDECLARATIONINXML_METHODLEVELOVERRIDING, id = "h") })
public void testConstraintOnMethodReturnValueAndParameter() throws Exception {
    MethodDescriptor descriptor = TestUtil.getMethodDescriptor(CustomerRepository.class, "notifyCustomer", Customer.class, String.class);
    assertNotNull(descriptor, "the specified method should be configured in xml");
    ReturnValueDescriptor returnValueDescriptor = descriptor.getReturnValueDescriptor();
    Set<ConstraintDescriptor<?>> constraintDescriptors = returnValueDescriptor.getConstraintDescriptors();
    assertTrue(constraintDescriptors.size() == 1);
    ConstraintDescriptor<?> constraintDescriptor = constraintDescriptors.iterator().next();
    assertEquals(constraintDescriptor.getAnnotation().annotationType(), NotNull.class, "Unexpected constraint type");
    List<ParameterDescriptor> parameterDescriptors = descriptor.getParameterDescriptors();
    assertTrue(parameterDescriptors.size() == 2);
    ParameterDescriptor parameterDescriptor = parameterDescriptors.get(0);
    constraintDescriptors = parameterDescriptor.getConstraintDescriptors();
    assertTrue(constraintDescriptors.size() == 1);
    constraintDescriptor = constraintDescriptors.iterator().next();
    assertEquals(constraintDescriptor.getAnnotation().annotationType(), NotNull.class, "Unexpected constraint type");
}
Also used : ReturnValueDescriptor(jakarta.validation.metadata.ReturnValueDescriptor) ConstraintDescriptor(jakarta.validation.metadata.ConstraintDescriptor) ParameterDescriptor(jakarta.validation.metadata.ParameterDescriptor) CrossParameterDescriptor(jakarta.validation.metadata.CrossParameterDescriptor) MethodDescriptor(jakarta.validation.metadata.MethodDescriptor) SpecAssertions(org.jboss.test.audit.annotations.SpecAssertions) AbstractTCKTest(org.hibernate.beanvalidation.tck.tests.AbstractTCKTest) Test(org.testng.annotations.Test)

Example 8 with ReturnValueDescriptor

use of jakarta.validation.metadata.ReturnValueDescriptor in project beanvalidation-tck by eclipse-ee4j.

the class MethodValidationTest method testGroupConversionOnReturnValueAndParameter.

@Test
@SpecAssertion(section = Sections.XML_MAPPING_CONSTRAINTDECLARATIONINXML_METHODLEVELOVERRIDING, id = "j")
public void testGroupConversionOnReturnValueAndParameter() throws Exception {
    MethodDescriptor descriptor = TestUtil.getMethodDescriptor(CustomerRepository.class, "findByExample", Customer.class);
    assertNotNull(descriptor, "the specified method should be configured in xml");
    ReturnValueDescriptor returnValueDescriptor = descriptor.getReturnValueDescriptor();
    Set<GroupConversionDescriptor> groupConversionDescriptors = returnValueDescriptor.getGroupConversions();
    assertTrue(groupConversionDescriptors.size() == 1);
    GroupConversionDescriptor groupConversionDescriptor = groupConversionDescriptors.iterator().next();
    assertEquals(groupConversionDescriptor.getFrom(), Default.class, "Wrong from class for group conversion");
    List<ParameterDescriptor> parameterDescriptors = descriptor.getParameterDescriptors();
    assertTrue(parameterDescriptors.size() == 1);
    ParameterDescriptor parameterDescriptor = parameterDescriptors.get(0);
    groupConversionDescriptors = parameterDescriptor.getGroupConversions();
    assertTrue(groupConversionDescriptors.size() == 1);
    groupConversionDescriptor = groupConversionDescriptors.iterator().next();
    assertEquals(groupConversionDescriptor.getFrom(), Default.class, "Wrong from class for group conversion");
}
Also used : ReturnValueDescriptor(jakarta.validation.metadata.ReturnValueDescriptor) ParameterDescriptor(jakarta.validation.metadata.ParameterDescriptor) CrossParameterDescriptor(jakarta.validation.metadata.CrossParameterDescriptor) GroupConversionDescriptor(jakarta.validation.metadata.GroupConversionDescriptor) MethodDescriptor(jakarta.validation.metadata.MethodDescriptor) AbstractTCKTest(org.hibernate.beanvalidation.tck.tests.AbstractTCKTest) Test(org.testng.annotations.Test) SpecAssertion(org.jboss.test.audit.annotations.SpecAssertion)

Example 9 with ReturnValueDescriptor

use of jakarta.validation.metadata.ReturnValueDescriptor in project beanvalidation-tck by eclipse-ee4j.

the class MethodValidationTest method testCascadingOnReturnValueAndParameter.

@Test
@SpecAssertion(section = Sections.XML_MAPPING_CONSTRAINTDECLARATIONINXML_METHODLEVELOVERRIDING, id = "i")
public void testCascadingOnReturnValueAndParameter() throws Exception {
    MethodDescriptor descriptor = TestUtil.getMethodDescriptor(CustomerRepository.class, "findByExample", Customer.class);
    assertNotNull(descriptor, "the specified method should be configured in xml");
    ReturnValueDescriptor returnValueDescriptor = descriptor.getReturnValueDescriptor();
    assertTrue(returnValueDescriptor.isCascaded(), "<valid/> is used to configure cascading");
    List<ParameterDescriptor> parameterDescriptors = descriptor.getParameterDescriptors();
    assertTrue(parameterDescriptors.size() == 1);
    ParameterDescriptor parameterDescriptor = parameterDescriptors.get(0);
    assertTrue(parameterDescriptor.isCascaded(), "<valid/> is used to configure cascading");
}
Also used : ReturnValueDescriptor(jakarta.validation.metadata.ReturnValueDescriptor) ParameterDescriptor(jakarta.validation.metadata.ParameterDescriptor) CrossParameterDescriptor(jakarta.validation.metadata.CrossParameterDescriptor) MethodDescriptor(jakarta.validation.metadata.MethodDescriptor) AbstractTCKTest(org.hibernate.beanvalidation.tck.tests.AbstractTCKTest) Test(org.testng.annotations.Test) SpecAssertion(org.jboss.test.audit.annotations.SpecAssertion)

Example 10 with ReturnValueDescriptor

use of jakarta.validation.metadata.ReturnValueDescriptor in project beanvalidation-tck by eclipse-ee4j.

the class IgnoreAnnotationsInConstructorConfigurationTest method testIgnoreAnnotationsOnReturnValueParameterAndCrossParameter.

@Test
@SpecAssertion(section = Sections.XML_MAPPING_CONSTRAINTDECLARATIONINXML_CONSTRUCTORLEVELOVERRIDING, id = "k")
public void testIgnoreAnnotationsOnReturnValueParameterAndCrossParameter() {
    ConstructorDescriptor descriptor = TestUtil.getConstructorDescriptor(IgnoreAnnotations.class, String.class, String.class);
    CrossParameterDescriptor crossParameterDescriptor = descriptor.getCrossParameterDescriptor();
    assertFalse(crossParameterDescriptor.hasConstraints(), "Cross parameter constraints should be ignored.");
    ReturnValueDescriptor returnValueDescriptor = descriptor.getReturnValueDescriptor();
    assertFalse(returnValueDescriptor.hasConstraints(), "Return value constraints should be ignored.");
    ParameterDescriptor parameterDescriptor = descriptor.getParameterDescriptors().get(0);
    assertFalse(parameterDescriptor.hasConstraints(), "First parameter constraints should be ignored.");
    parameterDescriptor = descriptor.getParameterDescriptors().get(1);
    assertTrue(parameterDescriptor.hasConstraints(), "Second parameter constraints should be applied.");
}
Also used : ReturnValueDescriptor(jakarta.validation.metadata.ReturnValueDescriptor) ParameterDescriptor(jakarta.validation.metadata.ParameterDescriptor) CrossParameterDescriptor(jakarta.validation.metadata.CrossParameterDescriptor) ConstructorDescriptor(jakarta.validation.metadata.ConstructorDescriptor) CrossParameterDescriptor(jakarta.validation.metadata.CrossParameterDescriptor) AbstractTCKTest(org.hibernate.beanvalidation.tck.tests.AbstractTCKTest) Test(org.testng.annotations.Test) SpecAssertion(org.jboss.test.audit.annotations.SpecAssertion)

Aggregations

ReturnValueDescriptor (jakarta.validation.metadata.ReturnValueDescriptor)43 Test (org.testng.annotations.Test)40 AbstractTCKTest (org.hibernate.beanvalidation.tck.tests.AbstractTCKTest)29 SpecAssertion (org.jboss.test.audit.annotations.SpecAssertion)25 ParameterDescriptor (jakarta.validation.metadata.ParameterDescriptor)17 CrossParameterDescriptor (jakarta.validation.metadata.CrossParameterDescriptor)13 ConstructorDescriptor (jakarta.validation.metadata.ConstructorDescriptor)11 GroupConversionDescriptor (jakarta.validation.metadata.GroupConversionDescriptor)11 MethodDescriptor (jakarta.validation.metadata.MethodDescriptor)11 ValidatorUtil.getMethodReturnValueDescriptor (org.hibernate.validator.testutils.ValidatorUtil.getMethodReturnValueDescriptor)10 ConstraintDescriptor (jakarta.validation.metadata.ConstraintDescriptor)5 SpecAssertions (org.jboss.test.audit.annotations.SpecAssertions)4 BeanDescriptor (jakarta.validation.metadata.BeanDescriptor)3 Test (org.junit.Test)3 StrictChecks (org.hibernate.beanvalidation.tck.tests.metadata.CustomerService.StrictChecks)2 StrictCustomerServiceChecks (org.hibernate.beanvalidation.tck.tests.metadata.CustomerService.StrictCustomerServiceChecks)2 ContainerElementTypeDescriptor (jakarta.validation.metadata.ContainerElementTypeDescriptor)1 Date (java.util.Date)1 TestForIssue (org.hibernate.validator.testutil.TestForIssue)1 ValidatorUtil.getConstructorDescriptor (org.hibernate.validator.testutils.ValidatorUtil.getConstructorDescriptor)1