Package org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations

Source Code of org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations.ValidMethodConstraintDeclarationTest

/*
* JBoss, Home of Professional Open Source
* Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations;

import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import java.util.Date;
import java.util.List;
import java.util.Set;
import javax.validation.ConstraintViolation;
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
import javax.validation.executable.ExecutableValidator;

import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.testng.Arquillian;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.jboss.test.audit.annotations.SpecAssertion;
import org.jboss.test.audit.annotations.SpecVersion;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

import org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations.constraint.ValidBusinessCalendarEvent;
import org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations.constraint.ValidCalendarEvent;
import org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations.constraint.ValidCalendarServiceSubClass;
import org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations.model.CalendarEvent;
import org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations.service.CalendarService;
import org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations.service.impl.BusinessCalendarServiceImplementation;
import org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations.service.impl.CalendarServiceImplementation;
import org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations.service.impl.CalendarServiceSubClass;
import org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations.service.impl.ImplementationOfParallelInterfacesMarkingReturnValueAsCascaded;
import org.hibernate.beanvalidation.tck.util.TestUtil;
import org.hibernate.beanvalidation.tck.util.shrinkwrap.WebArchiveBuilder;

import static org.hibernate.beanvalidation.tck.util.TestUtil.assertCorrectConstraintTypes;
import static org.hibernate.beanvalidation.tck.util.TestUtil.assertNodeNames;

/**
* @author Gunnar Morling
*/
@SpecVersion(spec = "beanvalidation", version = "1.1.0")
public class ValidMethodConstraintDeclarationTest extends Arquillian {

  private ExecutableValidator executableValidator;

  @Deployment
  public static WebArchive createTestArchive() {
    return new WebArchiveBuilder()
        .withTestClassPackage( ValidMethodConstraintDeclarationTest.class )
        .withPackage( ValidCalendarEvent.class.getPackage() )
        .withPackage( CalendarEvent.class.getPackage() )
        .withPackage( CalendarServiceImplementation.class.getPackage() )
        .withPackage( CalendarService.class.getPackage() )
        .build();
  }

  @BeforeMethod
  public void setupValidator() {
    executableValidator = TestUtil.getValidatorUnderTest().forExecutables();
  }

  @Test
  @SpecAssertion(section = "4.5.5", id = "c")
  public void testReturnValueConstraintAddedInInterfaceImplementation() throws Exception {
    Object object = new CalendarServiceImplementation();
    Method method = getCreateEventMethod( object );
    Object returnValue = null;

    Set<ConstraintViolation<Object>> violations = executableValidator.validateReturnValue(
        object,
        method,
        returnValue
    );

    assertCorrectConstraintTypes( violations, NotNull.class );
  }

  @Test
  @SpecAssertion(section = "4.5.5", id = "c")
  public void testReturnValueConstraintAddedInSubClass() throws Exception {
    Object object = new CalendarServiceSubClass();
    Method method = getCreateEventMethod( object );
    Object returnValue = null;

    Set<ConstraintViolation<Object>> violations = executableValidator.validateReturnValue(
        object,
        method,
        returnValue
    );

    assertCorrectConstraintTypes( violations, NotNull.class );
  }

  @Test
  @SpecAssertion(section = "4.5.5", id = "c")
  public void testReturnValueMarkedAsCascadedInInterfaceImplementation() throws Exception {
    Object object = new CalendarServiceImplementation();
    Method method = getCreateEventWithDurationMethod( object );
    Object returnValue = new CalendarEvent();

    Set<ConstraintViolation<Object>> violations = executableValidator.validateReturnValue(
        object,
        method,
        returnValue
    );

    assertCorrectConstraintTypes( violations, NotNull.class );
    assertNodeNames(
        violations.iterator().next().getPropertyPath(),
        "createEvent",
        TestUtil.RETURN_VALUE_NODE_NAME,
        "name"
    );
  }

  @Test
  @SpecAssertion(section = "4.5.5", id = "c")
  public void testReturnValueConstraintFromInterfaceAndImplementationAddUp() throws Exception {
    Object object = new CalendarServiceImplementation();
    Method method = getCreateEventWithParticipantsMethod( object );
    Object returnValue = null;

    Set<ConstraintViolation<Object>> violations = executableValidator.validateReturnValue(
        object,
        method,
        returnValue
    );

    assertCorrectConstraintTypes( violations, NotNull.class, ValidCalendarEvent.class );
  }

  @Test
  @SpecAssertion(section = "4.5.5", id = "c")
  public void testReturnValueConstraintFromInterfacesAndImplementationAddUp() throws Exception {
    Object object = new BusinessCalendarServiceImplementation();
    Method method = getCreateEventWithParticipantsMethod( object );
    Object returnValue = null;

    Set<ConstraintViolation<Object>> violations = executableValidator.validateReturnValue(
        object,
        method,
        returnValue
    );

    assertCorrectConstraintTypes(
        violations,
        NotNull.class,
        ValidCalendarEvent.class,
        ValidBusinessCalendarEvent.class
    );
  }

  @Test
  @SpecAssertion(section = "4.5.5", id = "c")
  public void testReturnValueMarkedAsCascadedInSubClass() throws Exception {
    Object object = new CalendarServiceSubClass();
    Method method = getCreateEventWithDurationMethod( object );
    Object returnValue = new CalendarEvent();

    Set<ConstraintViolation<Object>> violations = executableValidator.validateReturnValue(
        object,
        method,
        returnValue
    );

    assertCorrectConstraintTypes( violations, NotNull.class );
    assertNodeNames(
        violations.iterator().next().getPropertyPath(),
        "createEvent",
        TestUtil.RETURN_VALUE_NODE_NAME,
        "name"
    );
  }

  @Test
  @SpecAssertion(section = "4.5.5", id = "f")
  public void testParameterConstraintAddedToConstructorInSubClass() throws Exception {
    Constructor<?> constructor = CalendarServiceSubClass.class.getConstructor( int.class );
    Object[] parameterValues = new Object[] { 4 };

    Set<ConstraintViolation<Object>> violations = executableValidator.validateConstructorParameters(
        constructor,
        parameterValues
    );

    assertCorrectConstraintTypes( violations, Min.class );
  }

  @Test
  @SpecAssertion(section = "4.5.5", id = "f")
  public void testParameterConstraintMarkedAsCascadedAtConstructorInSubClass() throws Exception {
    Constructor<?> constructor = CalendarServiceSubClass.class.getConstructor( CalendarEvent.class );
    Object[] parameterValues = new Object[] { new CalendarEvent() };

    Set<ConstraintViolation<Object>> violations = executableValidator.validateConstructorParameters(
        constructor,
        parameterValues
    );

    assertCorrectConstraintTypes( violations, NotNull.class );
    assertNodeNames(
        violations.iterator().next().getPropertyPath(),
        "CalendarServiceSubClass",
        "arg0",
        "name"
    );
  }

  @Test
  @SpecAssertion(section = "4.5.5", id = "f")
  public void testReturnValueConstraintAddedToConstructorInSubClass() throws Exception {
    Constructor<?> constructor = CalendarServiceSubClass.class.getConstructor( String.class );
    Object returnValue = new CalendarServiceSubClass();

    Set<ConstraintViolation<Object>> violations = executableValidator.validateConstructorReturnValue(
        constructor,
        returnValue
    );

    //only the constraint on the sub-type constructor should be validated
    assertCorrectConstraintTypes( violations, ValidCalendarServiceSubClass.class );
    assertNodeNames(
        violations.iterator().next().getPropertyPath(),
        "CalendarServiceSubClass",
        TestUtil.RETURN_VALUE_NODE_NAME
    );
  }

  @Test
  @SpecAssertion(section = "4.5.5", id = "f")
  public void testReturnValueMarkedAsCascadedAtConstructorInSuperAndSubClass() throws Exception {
    Constructor<?> constructor = CalendarServiceSubClass.class.getConstructor( long.class );
    Object returnValue = new CalendarServiceSubClass();

    Set<ConstraintViolation<Object>> violations = executableValidator.validateConstructorReturnValue(
        constructor,
        returnValue
    );

    assertCorrectConstraintTypes( violations, Min.class );
    assertNodeNames(
        violations.iterator().next().getPropertyPath(),
        "CalendarServiceSubClass",
        TestUtil.RETURN_VALUE_NODE_NAME,
        "mode"
    );
  }

  @Test
  @SpecAssertion(section = "4.5.5", id = "d")
  public void testReturnValueMarkedAsCascadedInParallelInterfaces() throws Exception {
    Object object = new ImplementationOfParallelInterfacesMarkingReturnValueAsCascaded();
    Method method = getCreateEventMethod( object );
    Object returnValue = new CalendarEvent();

    Set<ConstraintViolation<Object>> violations = executableValidator.validateReturnValue(
        object,
        method,
        returnValue
    );

    assertCorrectConstraintTypes( violations, NotNull.class );
    assertNodeNames(
        violations.iterator().next().getPropertyPath(),
        "createEvent",
        TestUtil.RETURN_VALUE_NODE_NAME,
        "name"
    );
  }

  private Method getCreateEventMethod(Object object) throws NoSuchMethodException {
    return object.getClass().getMethod(
        "createEvent",
        Date.class,
        Date.class
    );
  }

  private Method getCreateEventWithDurationMethod(Object object) throws NoSuchMethodException {
    return object.getClass().getMethod(
        "createEvent",
        Date.class,
        Date.class,
        int.class
    );
  }

  private Method getCreateEventWithParticipantsMethod(Object object)
      throws NoSuchMethodException {
    return object.getClass().getMethod(
        "createEvent",
        Date.class,
        Date.class,
        List.class
    );
  }
}
TOP

Related Classes of org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations.ValidMethodConstraintDeclarationTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.