![JAR search and dependency download from the Maven repository](/logo.png)
org.hibernate.beanvalidation.tck.tests.methodvalidation.MethodValidationTest Maven / Gradle / Ivy
/*
* 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.methodvalidation;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import java.util.Set;
import javax.validation.ConstraintViolation;
import javax.validation.ElementKind;
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Pattern;
import javax.validation.constraints.Size;
import javax.validation.executable.ExecutableValidator;
import javax.validation.groups.Default;
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.methodvalidation.constraint.MyCrossParameterConstraint;
import org.hibernate.beanvalidation.tck.tests.methodvalidation.constraint.ValidOrder;
import org.hibernate.beanvalidation.tck.tests.methodvalidation.constraint.ValidOrderService;
import org.hibernate.beanvalidation.tck.tests.methodvalidation.constraint.ValidRetailOrder;
import org.hibernate.beanvalidation.tck.tests.methodvalidation.constraint.ValidRetailOrderService;
import org.hibernate.beanvalidation.tck.tests.methodvalidation.model.Item;
import org.hibernate.beanvalidation.tck.tests.methodvalidation.model.Order;
import org.hibernate.beanvalidation.tck.tests.methodvalidation.service.ExtendedOrderService;
import org.hibernate.beanvalidation.tck.tests.methodvalidation.service.OrderService;
import org.hibernate.beanvalidation.tck.tests.methodvalidation.service.OrderService.Basic;
import org.hibernate.beanvalidation.tck.tests.methodvalidation.service.OrderService.OrderServiceSequence;
import org.hibernate.beanvalidation.tck.tests.methodvalidation.service.OrderServiceImpl;
import org.hibernate.beanvalidation.tck.tests.methodvalidation.service.OrderServiceWithRedefinedDefaultGroupSequence;
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.assertCorrectNumberOfViolations;
import static org.hibernate.beanvalidation.tck.util.TestUtil.assertCorrectPathNodeKinds;
import static org.hibernate.beanvalidation.tck.util.TestUtil.assertCorrectPathNodeNames;
import static org.hibernate.beanvalidation.tck.util.TestUtil.kinds;
import static org.hibernate.beanvalidation.tck.util.TestUtil.names;
/**
* @author Gunnar Morling
*/
@SpecVersion(spec = "beanvalidation", version = "1.1.0")
public class MethodValidationTest extends Arquillian {
private ExecutableValidator executableValidator;
@Deployment
public static WebArchive createTestArchive() {
return new WebArchiveBuilder()
.withTestClass( ValidateConstructorParametersTest.class )
.withPackage( MyCrossParameterConstraint.class.getPackage() )
.withPackage( ExtendedOrderService.class.getPackage() )
.withClass( Item.class )
.withClass( Order.class )
.build();
}
@BeforeMethod
public void setupValidator() {
executableValidator = TestUtil.getValidatorUnderTest().forExecutables();
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void methodParameterValidationTargetsParameterCrossParameterAndCascadedConstraints()
throws Exception {
String methodName = "placeOrder";
Object object = new OrderService();
Method method = OrderService.class.getMethod(
methodName,
String.class,
Item.class,
int.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), 0 };
Set> violations = executableValidator.validateParameters(
object,
method,
parameterValues
);
assertCorrectConstraintTypes(
violations,
NotNull.class,
Min.class,
Size.class,
MyCrossParameterConstraint.class
);
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.CROSS_PARAMETER_NODE_NAME ),
names( methodName, "arg0" ),
names( methodName, "arg1", "name" ),
names( methodName, "arg2" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.CROSS_PARAMETER ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER, ElementKind.PROPERTY ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void methodParameterValidationIncludesConstraintsFromSuperClass() throws Exception {
String methodName = "placeOrder";
Object object = new ExtendedOrderService();
Method method = ExtendedOrderService.class.getMethod(
methodName,
String.class,
Item.class,
int.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), 0 };
Set> violations = executableValidator.validateParameters(
object,
method,
parameterValues
);
assertCorrectConstraintTypes(
violations,
NotNull.class,
Min.class,
Size.class,
MyCrossParameterConstraint.class
);
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.CROSS_PARAMETER_NODE_NAME ),
names( methodName, "arg0" ),
names( methodName, "arg1", "name" ),
names( methodName, "arg2" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.CROSS_PARAMETER ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER, ElementKind.PROPERTY ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void methodParameterValidationIncludesConstraintsFromImplementedInterface()
throws Exception {
String methodName = "placeOrder";
Object object = new OrderServiceImpl();
Method method = OrderServiceImpl.class.getMethod(
methodName,
String.class,
Item.class,
int.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), 0 };
Set> violations = executableValidator.validateParameters(
object,
method,
parameterValues
);
assertCorrectConstraintTypes(
violations,
NotNull.class,
Min.class,
Size.class,
MyCrossParameterConstraint.class
);
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.CROSS_PARAMETER_NODE_NAME ),
names( methodName, "arg0" ),
names( methodName, "arg1", "name" ),
names( methodName, "arg2" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.CROSS_PARAMETER ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER, ElementKind.PROPERTY ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void methodParameterValidationIsAppliedGroupWise() throws Exception {
String methodName = "placeOrder";
Object object = new OrderService();
Method method = OrderService.class.getMethod(
methodName,
String.class,
Item.class,
Integer.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), 0 };
Set> violations = executableValidator.validateParameters(
object,
method,
parameterValues,
Basic.class
);
//only constraints in Basic group should fail
assertCorrectConstraintTypes(
violations,
NotNull.class,
MyCrossParameterConstraint.class
);
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.CROSS_PARAMETER_NODE_NAME ),
names( methodName, "arg0" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.CROSS_PARAMETER ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER )
);
violations = executableValidator.validateParameters(
object,
method,
parameterValues
);
//only constraints in Default group should fail
assertCorrectConstraintTypes(
violations,
Min.class,
Size.class
);
assertCorrectPathNodeNames(
violations,
names( methodName, "arg1", "name" ),
names( methodName, "arg2" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.PARAMETER, ElementKind.PROPERTY ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void methodParameterValidationPerformsGroupConversion() throws Exception {
String methodName = "placeOrder";
Object object = new OrderService();
Method method = OrderService.class.getMethod(
methodName,
String.class,
Item.class,
long.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), 0 };
Set> violations = executableValidator.validateParameters(
object,
method,
parameterValues,
Basic.class
);
assertCorrectConstraintTypes( violations, Size.class );
assertCorrectPathNodeNames( violations, names( methodName, "arg1", "name" ) );
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.PARAMETER, ElementKind.PROPERTY )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void methodParameterValidationValidatesEachConstraintOnlyOnce() throws Exception {
String methodName = "placeOrder";
Object object = new OrderService();
Method method = OrderService.class.getMethod(
methodName,
String.class,
Item.class,
short.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), (short) 0 };
Set> violations = executableValidator.validateParameters(
object,
method,
parameterValues,
Basic.class, Default.class
);
assertCorrectConstraintTypes(
violations,
NotNull.class,
Min.class,
Size.class,
MyCrossParameterConstraint.class
);
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.CROSS_PARAMETER_NODE_NAME ),
names( methodName, "arg0" ),
names( methodName, "arg1", "name" ),
names( methodName, "arg2" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.CROSS_PARAMETER ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER, ElementKind.PROPERTY ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void methodParameterValidationUsingSequence() throws Exception {
String methodName = "placeOrder";
Object object = new OrderService();
Method method = OrderService.class.getMethod(
methodName,
String.class,
Item.class,
byte.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), (byte) 0 };
Set> violations = executableValidator.validateParameters(
object,
method,
parameterValues,
OrderServiceSequence.class
);
//Only the constraints of the Basic group should fail
assertCorrectConstraintTypes( violations, Size.class, NotNull.class );
assertCorrectPathNodeNames(
violations,
names( methodName, "arg0" ),
names( methodName, "arg1", "name" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.PARAMETER ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER, ElementKind.PROPERTY )
);
parameterValues = new Object[] { "Bob", new Item( "BV Specification" ), (byte) 0 };
violations = executableValidator.validateParameters(
object,
method,
parameterValues,
OrderServiceSequence.class
);
//Now the constraints of the Complex group should fail
assertCorrectConstraintTypes( violations, MyCrossParameterConstraint.class, Min.class );
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.CROSS_PARAMETER_NODE_NAME ),
names( methodName, "arg2" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.CROSS_PARAMETER ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void methodParameterValidationWithRedefinedDefaultGroupSequence() throws Exception {
String methodName = "placeOrder";
Object object = new OrderServiceWithRedefinedDefaultGroupSequence();
Method method = OrderServiceWithRedefinedDefaultGroupSequence.class.getMethod(
methodName,
String.class,
Item.class,
byte.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), (byte) 0 };
Set> violations = executableValidator.validateParameters(
object,
method,
parameterValues
);
//Only the constraints of the Basic group on OrderServiceWithRedefinedDefaultGroupSequence and of
//the Default group on Item should fail
assertCorrectConstraintTypes( violations, Size.class, NotNull.class );
assertCorrectPathNodeNames(
violations,
names( methodName, "arg0" ),
names( methodName, "arg1", "name" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.PARAMETER ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER, ElementKind.PROPERTY )
);
parameterValues = new Object[] { "Bob", new Item( "" ), (byte) 0 };
violations = executableValidator.validateParameters(
object,
method,
parameterValues
);
//Now the constraints of the Default group on OrderServiceWithRedefinedDefaultGroupSequence and of
//the Default group on Item should fail
assertCorrectConstraintTypes(
violations,
MyCrossParameterConstraint.class,
Size.class,
Min.class
);
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.CROSS_PARAMETER_NODE_NAME ),
names( methodName, "arg1", "name" ),
names( methodName, "arg2" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.CROSS_PARAMETER ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER, ElementKind.PROPERTY ),
kinds( ElementKind.METHOD, ElementKind.PARAMETER )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void constructorParameterValidationTargetsParameterCrossParameterAndCascadedConstraints()
throws Exception {
String className = "OrderService";
Constructor constructor = OrderService.class.getConstructor(
String.class,
Item.class,
int.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), 0 };
Set> violations = executableValidator.validateConstructorParameters(
constructor,
parameterValues
);
assertCorrectConstraintTypes(
violations,
NotNull.class,
Min.class,
Size.class,
MyCrossParameterConstraint.class
);
assertCorrectPathNodeNames(
violations,
names( className, TestUtil.CROSS_PARAMETER_NODE_NAME ),
names( className, "arg0" ),
names( className, "arg1", "name" ),
names( className, "arg2" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.CROSS_PARAMETER ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER, ElementKind.PROPERTY ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void constructorParameterValidationDoesNotIncludeConstraintsFromSuperClass()
throws Exception {
Constructor constructor = ExtendedOrderService.class.getConstructor(
String.class,
Item.class,
int.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), 0 };
Set> violations = executableValidator.validateConstructorParameters(
constructor,
parameterValues
);
assertCorrectNumberOfViolations( violations, 0 );
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void constructorParameterValidationIsAppliedGroupWise() throws Exception {
String className = "OrderService";
Constructor constructor = OrderService.class.getConstructor(
String.class,
Item.class,
Integer.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), 0 };
Set> violations = executableValidator.validateConstructorParameters(
constructor,
parameterValues,
Basic.class
);
//only constraints in Basic group should fail
assertCorrectConstraintTypes(
violations,
NotNull.class,
MyCrossParameterConstraint.class
);
assertCorrectPathNodeNames(
violations,
names( className, TestUtil.CROSS_PARAMETER_NODE_NAME ),
names( className, "arg0" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.CROSS_PARAMETER ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER )
);
violations = executableValidator.validateConstructorParameters(
constructor,
parameterValues
);
//only constraints in Default group should fail
assertCorrectConstraintTypes(
violations,
Min.class,
Size.class
);
assertCorrectPathNodeNames(
violations,
names( className, "arg1", "name" ),
names( className, "arg2" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER, ElementKind.PROPERTY ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void constructorParameterValidationPerformsGroupConversion() throws Exception {
String className = "OrderService";
Constructor constructor = OrderService.class.getConstructor(
String.class,
Item.class,
long.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), 0 };
Set> violations = executableValidator.validateConstructorParameters(
constructor,
parameterValues,
Basic.class
);
assertCorrectConstraintTypes( violations, Size.class );
assertCorrectPathNodeNames( violations, names( className, "arg1", "name" ) );
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER, ElementKind.PROPERTY )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void constructorParameterValidationValidatesEachConstraintOnlyOnce() throws Exception {
String className = "OrderService";
Constructor constructor = OrderService.class.getConstructor(
String.class,
Item.class,
short.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), (short) 0 };
Set> violations = executableValidator.validateConstructorParameters(
constructor,
parameterValues,
Basic.class, Default.class
);
assertCorrectConstraintTypes(
violations,
NotNull.class,
Min.class,
Size.class,
MyCrossParameterConstraint.class
);
assertCorrectPathNodeNames(
violations,
names( className, TestUtil.CROSS_PARAMETER_NODE_NAME ),
names( className, "arg0" ),
names( className, "arg1", "name" ),
names( className, "arg2" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.CROSS_PARAMETER ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER, ElementKind.PROPERTY ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void constructorParameterValidationUsingSequence() throws Exception {
String className = "OrderService";
Constructor constructor = OrderService.class.getConstructor(
String.class,
Item.class,
byte.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), (byte) 0 };
Set> violations = executableValidator.validateConstructorParameters(
constructor,
parameterValues,
OrderServiceSequence.class
);
//Only the constraints of the Basic group should fail
assertCorrectConstraintTypes( violations, Size.class, NotNull.class );
assertCorrectPathNodeNames(
violations,
names( className, "arg0" ),
names( className, "arg1", "name" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER, ElementKind.PROPERTY )
);
parameterValues = new Object[] { "Bob", new Item( "BV Specification" ), (byte) 0 };
violations = executableValidator.validateConstructorParameters(
constructor,
parameterValues,
OrderServiceSequence.class
);
//Now the constraints of the Complex group should fail
assertCorrectConstraintTypes( violations, MyCrossParameterConstraint.class, Min.class );
assertCorrectPathNodeNames(
violations,
names( className, TestUtil.CROSS_PARAMETER_NODE_NAME ),
names( className, "arg2" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.CROSS_PARAMETER ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "a")
public void constructorParameterValidationWithRedefinedDefaultGroupSequence() throws Exception {
String className = "OrderServiceWithRedefinedDefaultGroupSequence";
Constructor constructor = OrderServiceWithRedefinedDefaultGroupSequence.class
.getConstructor(
String.class,
Item.class,
byte.class
);
Object[] parameterValues = new Object[] { null, new Item( "" ), (byte) 0 };
Set> violations = executableValidator
.validateConstructorParameters(
constructor,
parameterValues
);
//Only the constraints of the Basic group on OrderServiceWithRedefinedDefaultGroupSequence and of
//the Default group on Item should fail
assertCorrectConstraintTypes( violations, Size.class, NotNull.class );
assertCorrectPathNodeNames(
violations,
names( className, "arg0" ),
names( className, "arg1", "name" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER, ElementKind.PROPERTY )
);
parameterValues = new Object[] { "Bob", new Item( "" ), (byte) 0 };
violations = executableValidator.validateConstructorParameters(
constructor,
parameterValues
);
//Now the constraints of the Default group on OrderServiceWithRedefinedDefaultGroupSequence and of
//the Default group on Item should fail
assertCorrectConstraintTypes(
violations,
MyCrossParameterConstraint.class,
Size.class,
Min.class
);
assertCorrectPathNodeNames(
violations,
names( className, TestUtil.CROSS_PARAMETER_NODE_NAME ),
names( className, "arg1", "name" ),
names( className, "arg2" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.CROSS_PARAMETER ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER, ElementKind.PROPERTY ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.PARAMETER )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void methodReturnValueValidationTargetsReturnValueAndCascadedConstraints()
throws Exception {
String methodName = "placeOrder";
Object object = new OrderService();
Method method = OrderService.class.getMethod(
methodName,
String.class,
Item.class,
int.class
);
Object returnValue = new Order( "" );
Set> violations = executableValidator.validateReturnValue(
object,
method,
returnValue
);
assertCorrectConstraintTypes(
violations,
ValidOrder.class,
Size.class
);
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME ),
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME, "name" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE ),
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE, ElementKind.PROPERTY )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void methodReturnValueValidationIncludesConstraintsFromSuperClass() throws Exception {
String methodName = "placeOrder";
Object object = new ExtendedOrderService();
Method method = ExtendedOrderService.class.getMethod(
methodName,
String.class,
Item.class,
int.class
);
Object returnValue = new Order( "" );
Set> violations = executableValidator.validateReturnValue(
object,
method,
returnValue
);
assertCorrectConstraintTypes(
violations,
ValidOrder.class,
ValidRetailOrder.class,
Size.class
);
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME ),
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME ),
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME, "name" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE ),
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE ),
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE, ElementKind.PROPERTY )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void methodReturnValueValidationIncludesConstraintsFromImplementedInterface()
throws Exception {
String methodName = "placeOrder";
Object object = new OrderServiceImpl();
Method method = OrderServiceImpl.class.getMethod(
methodName,
String.class,
Item.class,
int.class
);
Object returnValue = new Order( "" );
Set> violations = executableValidator.validateReturnValue(
object,
method,
returnValue
);
assertCorrectConstraintTypes(
violations,
ValidOrder.class,
ValidRetailOrder.class,
Size.class
);
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME ),
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME ),
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME, "name" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE ),
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE ),
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE, ElementKind.PROPERTY )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void methodReturnValueValidationIsAppliedGroupWise() throws Exception {
String methodName = "placeOrder";
Object object = new OrderService();
Method method = OrderService.class.getMethod(
methodName,
String.class,
Item.class,
Integer.class
);
Object returnValue = new Order( "" );
Set> violations = executableValidator.validateReturnValue(
object,
method,
returnValue,
Basic.class
);
//only constraints in Basic group should fail
assertCorrectConstraintTypes(
violations,
ValidRetailOrder.class
);
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE )
);
violations = executableValidator.validateReturnValue(
object,
method,
returnValue
);
//only constraints in Default group should fail
assertCorrectConstraintTypes(
violations,
ValidOrder.class,
Size.class
);
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME, "name" ),
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE, ElementKind.PROPERTY ),
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void methodReturnValueValidationPerformsGroupConversion() throws Exception {
String methodName = "placeOrder";
Object object = new OrderService();
Method method = OrderService.class.getMethod(
methodName,
String.class,
Item.class,
long.class
);
Object returnValue = new Order( "" );
Set> violations = executableValidator.validateReturnValue(
object,
method,
returnValue,
Basic.class
);
assertCorrectConstraintTypes( violations, Size.class );
assertCorrectPathNodeNames( violations, names( methodName, TestUtil.RETURN_VALUE_NODE_NAME, "name" ) );
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE, ElementKind.PROPERTY )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void methodReturnValueValidationValidatesEachConstraintOnlyOnce() throws Exception {
String methodName = "placeOrder";
Object object = new OrderService();
Method method = OrderService.class.getMethod(
methodName,
String.class,
Item.class,
short.class
);
Object returnValue = new Order( "" );
Set> violations = executableValidator.validateReturnValue(
object,
method,
returnValue,
Basic.class, Default.class
);
assertCorrectConstraintTypes(
violations,
ValidOrder.class
);
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void methodReturnValueValidationUsingSequence() throws Exception {
String methodName = "placeOrder";
Object object = new OrderService();
Method method = OrderService.class.getMethod(
methodName,
String.class,
Item.class,
byte.class
);
Object returnValue = new Order( "" );
Set> violations = executableValidator.validateReturnValue(
object,
method,
returnValue,
OrderServiceSequence.class
);
//Only the constraints of the Basic group should fail
assertCorrectConstraintTypes( violations, ValidOrder.class, Size.class );
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME ),
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME, "name" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE ),
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE, ElementKind.PROPERTY )
);
returnValue = new Order( "BV Specification" );
violations = executableValidator.validateReturnValue(
object,
method,
returnValue,
OrderServiceSequence.class
);
//Now the constraints of the Complex group should fail
assertCorrectConstraintTypes( violations, ValidRetailOrder.class );
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void methodReturnValueValidationWithRedefinedDefaultGroupSequence() throws Exception {
String methodName = "placeOrder";
Object object = new OrderServiceWithRedefinedDefaultGroupSequence();
Method method = OrderServiceWithRedefinedDefaultGroupSequence.class.getMethod(
methodName,
String.class,
Item.class,
byte.class
);
Object returnValue = new Order( "" );
Set> violations = executableValidator.validateReturnValue(
object,
method,
returnValue
);
//Only the constraints of the Basic group on OrderServiceWithRedefinedDefaultGroupSequence and of
//the Default group on Order should fail
assertCorrectConstraintTypes( violations, Size.class, ValidOrder.class );
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME ),
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME, "name" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE ),
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE, ElementKind.PROPERTY )
);
returnValue = new Order( "valid" );
violations = executableValidator.validateReturnValue(
object,
method,
returnValue
);
//Now the constraints of the Default group on OrderServiceWithRedefinedDefaultGroupSequence and of
//the Default group on Order should fail
assertCorrectConstraintTypes( violations, Size.class, ValidRetailOrder.class );
assertCorrectPathNodeNames(
violations,
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME ),
names( methodName, TestUtil.RETURN_VALUE_NODE_NAME, "name" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE ),
kinds( ElementKind.METHOD, ElementKind.RETURN_VALUE, ElementKind.PROPERTY )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void constructorReturnValueValidationTargetsReturnValueAndCascadedConstraints()
throws Exception {
String className = "OrderService";
Constructor constructor = OrderService.class.getConstructor(
String.class,
Item.class,
int.class
);
OrderService returnValue = new OrderService( "" );
Set> violations = executableValidator.validateConstructorReturnValue(
constructor,
returnValue
);
assertCorrectConstraintTypes(
violations,
ValidOrderService.class,
Size.class
);
assertCorrectPathNodeNames(
violations,
names( className, TestUtil.RETURN_VALUE_NODE_NAME ),
names( className, TestUtil.RETURN_VALUE_NODE_NAME, "name" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE, ElementKind.PROPERTY )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void constructorReturnValueValidationDoesNotIncludeConstraintsFromSuperClass()
throws Exception {
String className = "ExtendedOrderService";
Constructor constructor = ExtendedOrderService.class.getConstructor(
String.class,
Item.class,
int.class
);
ExtendedOrderService returnValue = new ExtendedOrderService();
Set> violations = executableValidator.validateConstructorReturnValue(
constructor,
returnValue
);
assertCorrectConstraintTypes(
violations,
ValidRetailOrderService.class
);
assertCorrectPathNodeNames(
violations,
names( className, TestUtil.RETURN_VALUE_NODE_NAME )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void constructorReturnValueValidationIsAppliedGroupWise() throws Exception {
String className = "OrderService";
Constructor constructor = OrderService.class.getConstructor(
String.class,
Item.class,
Integer.class
);
OrderService returnValue = new OrderService( "" );
Set> violations = executableValidator.validateConstructorReturnValue(
constructor,
returnValue,
Basic.class
);
//only constraints in Basic group should fail
assertCorrectConstraintTypes(
violations,
ValidRetailOrderService.class
);
assertCorrectPathNodeNames(
violations,
names( className, TestUtil.RETURN_VALUE_NODE_NAME )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE )
);
violations = executableValidator.validateConstructorReturnValue(
constructor,
returnValue
);
//only constraints in Default group should fail
assertCorrectConstraintTypes(
violations,
ValidOrderService.class,
Size.class
);
assertCorrectPathNodeNames(
violations,
names( className, TestUtil.RETURN_VALUE_NODE_NAME, "name" ),
names( className, TestUtil.RETURN_VALUE_NODE_NAME )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE, ElementKind.PROPERTY ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void constructorReturnValueValidationPerformsGroupConversion() throws Exception {
String className = "OrderService";
Constructor constructor = OrderService.class.getConstructor(
String.class,
Item.class,
long.class
);
OrderService returnValue = new OrderService( "" );
Set> violations = executableValidator.validateConstructorReturnValue(
constructor,
returnValue,
Basic.class
);
assertCorrectConstraintTypes( violations, Size.class );
assertCorrectPathNodeNames( violations, names( className, TestUtil.RETURN_VALUE_NODE_NAME, "name" ) );
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE, ElementKind.PROPERTY )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void constructorReturnValueValidationValidatesEachConstraintOnlyOnce() throws Exception {
String className = "OrderService";
Constructor constructor = OrderService.class.getConstructor(
String.class,
Item.class,
short.class
);
OrderService returnValue = new OrderService( "" );
Set> violations = executableValidator.validateConstructorReturnValue(
constructor,
returnValue,
Basic.class, Default.class
);
assertCorrectConstraintTypes(
violations,
ValidOrderService.class
);
assertCorrectPathNodeNames(
violations,
names( className, TestUtil.RETURN_VALUE_NODE_NAME )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void constructorReturnValueValidationUsingSequence() throws Exception {
String className = "OrderService";
Constructor constructor = OrderService.class.getConstructor(
String.class,
Item.class,
byte.class
);
OrderService returnValue = new OrderService( "" );
Set> violations = executableValidator.validateConstructorReturnValue(
constructor,
returnValue,
OrderServiceSequence.class
);
//Only the constraints of the Basic group should fail
assertCorrectConstraintTypes( violations, ValidOrderService.class, Size.class );
assertCorrectPathNodeNames(
violations,
names( className, TestUtil.RETURN_VALUE_NODE_NAME ),
names( className, TestUtil.RETURN_VALUE_NODE_NAME, "name" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE, ElementKind.PROPERTY )
);
returnValue = new OrderService( "valid order service" );
violations = executableValidator.validateConstructorReturnValue(
constructor,
returnValue,
OrderServiceSequence.class
);
//Now the constraints of the Complex group should fail
assertCorrectConstraintTypes( violations, ValidRetailOrderService.class );
assertCorrectPathNodeNames(
violations,
names( className, TestUtil.RETURN_VALUE_NODE_NAME )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE )
);
}
@Test
@SpecAssertion(section = "4.6.2", id = "c")
public void constructorReturnValueValidationWithRedefinedDefaultGroupSequence()
throws Exception {
String className = "OrderServiceWithRedefinedDefaultGroupSequence";
Constructor constructor = OrderServiceWithRedefinedDefaultGroupSequence.class
.getConstructor(
String.class,
Item.class,
byte.class
);
OrderServiceWithRedefinedDefaultGroupSequence returnValue = new OrderServiceWithRedefinedDefaultGroupSequence(
""
);
Set> violations = executableValidator
.validateConstructorReturnValue(
constructor,
returnValue
);
//Only the constraints of the Basic group should fail
assertCorrectConstraintTypes( violations, Size.class, ValidOrderService.class );
assertCorrectPathNodeNames(
violations,
names( className, TestUtil.RETURN_VALUE_NODE_NAME ),
names( className, TestUtil.RETURN_VALUE_NODE_NAME, "name" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE, ElementKind.PROPERTY )
);
returnValue = new OrderServiceWithRedefinedDefaultGroupSequence( "valid" );
violations = executableValidator.validateConstructorReturnValue(
constructor,
returnValue
);
//Now the constraints of the Default group should fail
assertCorrectConstraintTypes( violations, Pattern.class, ValidRetailOrderService.class );
assertCorrectPathNodeNames(
violations,
names( className, TestUtil.RETURN_VALUE_NODE_NAME ),
names( className, TestUtil.RETURN_VALUE_NODE_NAME, "name" )
);
assertCorrectPathNodeKinds(
violations,
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE ),
kinds( ElementKind.CONSTRUCTOR, ElementKind.RETURN_VALUE, ElementKind.PROPERTY )
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy