Skip to content

Commit

Permalink
BVTCK-42 Adding test for injection of default Validator(Factory)
Browse files Browse the repository at this point in the history
  • Loading branch information
gunnarmorling committed Mar 5, 2013
1 parent eee03d1 commit b3a2057
Show file tree
Hide file tree
Showing 5 changed files with 189 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pom.xml
Expand Up @@ -120,6 +120,11 @@
<artifactId>shrinkwrap-descriptors-impl-javaee</artifactId>
<version>${shrinkwrap.descriptors.version}</version>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>1.1-PFD</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
5 changes: 5 additions & 0 deletions tests/pom.xml
Expand Up @@ -40,6 +40,11 @@
<groupId>org.jboss.shrinkwrap.descriptors</groupId>
<artifactId>shrinkwrap-descriptors-impl-javaee</artifactId>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
Expand Down
@@ -0,0 +1,36 @@
/*
* 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.integration.cdi;

import java.util.Locale;
import javax.validation.MessageInterpolator;

/**
* @author Gunnar Morling
*/
public class ConstantMessageInterpolator implements MessageInterpolator {

@Override
public String interpolate(String messageTemplate, Context context) {
return "Invalid constraint";
}

@Override
public String interpolate(String messageTemplate, Context context, Locale locale) {
return "Invalid constraint";
}
}
@@ -0,0 +1,135 @@
/*
* 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.integration.cdi;

import java.util.Set;
import javax.enterprise.inject.Default;
import javax.inject.Inject;
import javax.validation.ConstraintViolation;
import javax.validation.Validator;
import javax.validation.ValidatorFactory;
import javax.validation.constraints.NotNull;

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.Test;

import org.hibernate.beanvalidation.tck.util.IntegrationTest;
import org.hibernate.beanvalidation.tck.util.shrinkwrap.WebArchiveBuilder;

import static org.hibernate.beanvalidation.tck.util.TestUtil.assertCorrectConstraintViolationMessages;
import static org.testng.Assert.assertNotNull;
import static org.testng.Assert.assertTrue;

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

@Inject
private ValidatorFactory defaultValidatorFactory;

@Inject
@Default
private ValidatorFactory qualifiedDefaultValidatorFactory;

@Inject
private Validator defaultValidator;

@Inject
@Default
private Validator qualifiedDefaultValidator;

@Deployment
public static WebArchive createTestArchive() {
return new WebArchiveBuilder()
.withTestClassPackage( DefaultInjectionTest.class )
.withValidationXml( "test-validation.xml" )
.withEmptyBeansXml()
.build();
}

@SpecAssertion(section = "10.3.1", id = "a")
@Test
private void testDefaultValidatorFactoryGetsInjected() {
assertNotNull( defaultValidatorFactory, "Default validator factory should be injectable." );
assertTrue(
defaultValidatorFactory.getMessageInterpolator() instanceof ConstantMessageInterpolator,
"Injected default validator factory should be configured based on META-INF/validation.xml."
);

Set<ConstraintViolation<Foo>> violations = defaultValidatorFactory.getValidator()
.validate( new Foo() );

//expecting message from interpolator configured in META-INF/validation.xml
assertCorrectConstraintViolationMessages( violations, "Invalid constraint" );
}

@SpecAssertion(section = "10.3.1", id = "a")
@Test
private void testQualifiedDefaultValidatorFactoryGetsInjected() {
assertNotNull(
qualifiedDefaultValidatorFactory,
"Qualified default validator factory should be injectable."
);
assertTrue(
qualifiedDefaultValidatorFactory.getMessageInterpolator() instanceof ConstantMessageInterpolator,
"Injected qualified default validator factory should be configured based on META-INF/validation.xml."
);

Set<ConstraintViolation<Foo>> violations = qualifiedDefaultValidatorFactory.getValidator()
.validate( new Foo() );

//expecting message from interpolator configured in META-INF/validation.xml
assertCorrectConstraintViolationMessages( violations, "Invalid constraint" );
}

@SpecAssertion(section = "10.3.1", id = "a")
@Test
private void testDefaultValidatorGetsInjected() {
assertNotNull( defaultValidator, "Default validator should be injectable." );

Set<ConstraintViolation<Foo>> violations = defaultValidator.validate( new Foo() );

//expecting message from interpolator configured in META-INF/validation.xml
assertCorrectConstraintViolationMessages( violations, "Invalid constraint" );
}

@SpecAssertion(section = "10.3.1", id = "a")
@Test
private void testQualifiedDefaultValidatorGetsInjected() {
assertNotNull(
qualifiedDefaultValidator,
"Qualified default validator should be injectable."
);

Set<ConstraintViolation<Foo>> violations = qualifiedDefaultValidator.validate( new Foo() );

//expecting message from interpolator configured in META-INF/validation.xml
assertCorrectConstraintViolationMessages( violations, "Invalid constraint" );
}

private static class Foo {
@NotNull
public String bar;
}
}
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<validation-config
xmlns="http://jboss.org/xml/ns/javax/validation/configuration"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://jboss.org/xml/ns/javax/validation/configuration validation-configuration-1.1.xsd"
version="1.1">
<message-interpolator>org.hibernate.beanvalidation.tck.tests.integration.cdi.ConstantMessageInterpolator</message-interpolator>
</validation-config>

0 comments on commit b3a2057

Please sign in to comment.