Search in sources :

Example 6 with ReservationManagement

use of org.baeldung.javaxval.methodvalidation.model.ReservationManagement in project tutorials by eugenp.

the class ValidationIntegrationTest method whenValidationWithInvalidMethodParameters_thenCorrectNumberOfVoilations.

@Test
public void whenValidationWithInvalidMethodParameters_thenCorrectNumberOfVoilations() throws NoSuchMethodException {
    ReservationManagement object = new ReservationManagement();
    Method method = ReservationManagement.class.getMethod("createReservation", LocalDate.class, int.class, Customer.class);
    Object[] parameterValues = { LocalDate.now(), 0, null };
    Set<ConstraintViolation<ReservationManagement>> violations = executableValidator.validateParameters(object, method, parameterValues);
    assertEquals(3, violations.size());
}
Also used : ConstraintViolation(javax.validation.ConstraintViolation) ReservationManagement(org.baeldung.javaxval.methodvalidation.model.ReservationManagement) Method(java.lang.reflect.Method) Test(org.junit.Test)

Example 7 with ReservationManagement

use of org.baeldung.javaxval.methodvalidation.model.ReservationManagement in project tutorials by eugenp.

the class ValidationIntegrationTest method whenValidationWithInvalidReturnValue_thenCorrectNumberOfVoilations.

@Test
public void whenValidationWithInvalidReturnValue_thenCorrectNumberOfVoilations() throws NoSuchMethodException {
    ReservationManagement object = new ReservationManagement();
    Method method = ReservationManagement.class.getMethod("getAllCustomers");
    Object returnValue = Collections.<Customer>emptyList();
    Set<ConstraintViolation<ReservationManagement>> violations = executableValidator.validateReturnValue(object, method, returnValue);
    assertEquals(1, violations.size());
}
Also used : Customer(org.baeldung.javaxval.methodvalidation.model.Customer) ConstraintViolation(javax.validation.ConstraintViolation) ReservationManagement(org.baeldung.javaxval.methodvalidation.model.ReservationManagement) Method(java.lang.reflect.Method) Test(org.junit.Test)

Example 8 with ReservationManagement

use of org.baeldung.javaxval.methodvalidation.model.ReservationManagement in project tutorials by eugenp.

the class ValidationIntegrationTest method whenCrossParameterValidationWithValidParameters_thenZeroVoilations.

@Test
public void whenCrossParameterValidationWithValidParameters_thenZeroVoilations() throws NoSuchMethodException {
    ReservationManagement object = new ReservationManagement();
    Method method = ReservationManagement.class.getMethod("createReservation", LocalDate.class, LocalDate.class, Customer.class);
    Object[] parameterValues = { LocalDate.now().plusDays(1), LocalDate.now().plusDays(2), new Customer("John", "Doe") };
    Set<ConstraintViolation<ReservationManagement>> violations = executableValidator.validateParameters(object, method, parameterValues);
    assertEquals(0, violations.size());
}
Also used : Customer(org.baeldung.javaxval.methodvalidation.model.Customer) ConstraintViolation(javax.validation.ConstraintViolation) ReservationManagement(org.baeldung.javaxval.methodvalidation.model.ReservationManagement) Method(java.lang.reflect.Method) Test(org.junit.Test)

Aggregations

Method (java.lang.reflect.Method)8 ConstraintViolation (javax.validation.ConstraintViolation)8 ReservationManagement (org.baeldung.javaxval.methodvalidation.model.ReservationManagement)8 Test (org.junit.Test)8 Customer (org.baeldung.javaxval.methodvalidation.model.Customer)7 Reservation (org.baeldung.javaxval.methodvalidation.model.Reservation)2