Skip to content

Commit

Permalink
BVTCK-42 Adding tests for JNDI look-up of Validator(Factory) and inje…
Browse files Browse the repository at this point in the history
…ction via @resource
  • Loading branch information
gunnarmorling committed Mar 5, 2013
1 parent 29ad33e commit 149e670
Show file tree
Hide file tree
Showing 8 changed files with 304 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pom.xml
Expand Up @@ -125,6 +125,11 @@
<artifactId>cdi-api</artifactId>
<version>1.1-PFD</version>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.ejb</groupId>
<artifactId>jboss-ejb-api_3.2_spec</artifactId>
<version>1.0.0.Alpha2</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
5 changes: 5 additions & 0 deletions tests/pom.xml
Expand Up @@ -45,6 +45,11 @@
<artifactId>cdi-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.ejb</groupId>
<artifactId>jboss-ejb-api_3.2_spec</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.ee;

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,68 @@
/*
* 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.ee;

import javax.ejb.EJB;

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.testng.Assert.assertNotNull;

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

@EJB
private ValidationTestEjb testEjb;

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

@Test
@SpecAssertion(section = "10.2", id = "b")
private void testDefaultValidatorFactoryGetsInjectedAtResource() throws Exception {
assertNotNull( testEjb );
testEjb.assertDefaultValidatorFactoryGetsInjected();
}

@Test
@SpecAssertion(section = "10.2", id = "b")
private void testDefaultValidatorGetsInjectedWithAtResource() {
assertNotNull( testEjb );
testEjb.assertDefaultValidatorGetsInjected();
}
}
@@ -0,0 +1,27 @@
/*
* 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.ee;

import javax.validation.constraints.NotNull;

/**
* @author Gunnar Morling
*/
public class Foo {
@NotNull
public String bar;
}
@@ -0,0 +1,88 @@
/*
* 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.ee;

import java.util.Set;
import javax.naming.InitialContext;
import javax.validation.ConstraintViolation;
import javax.validation.Validator;
import javax.validation.ValidatorFactory;

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 JndiRetrievalTest extends Arquillian {

@Deployment
public static WebArchive createTestArchive() {
return new WebArchiveBuilder()
.withTestClass( JndiRetrievalTest.class )
.withClass( ConstantMessageInterpolator.class )
.withClass( Foo.class )
.withValidationXml( "test-validation.xml" )
.withEmptyBeansXml()
.build();
}

@Test
@SpecAssertion(section = "10.2", id = "a")
private void testDefaultValidatorFactoryCanBeRetrievedFromJndi() throws Exception {
ValidatorFactory validatorFactory = InitialContext.doLookup( "java:comp/ValidatorFactory" );
assertNotNull(
validatorFactory,
"Default validator factory should be bound to JNDI tree."
);
assertTrue(
validatorFactory.getMessageInterpolator() instanceof ConstantMessageInterpolator,
"Default validator factory bound to JNDI should be configured based on META-INF/validation.xml."
);

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

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

@Test
@SpecAssertion(section = "10.2", id = "a")
private void testDefaultValidatorCanBeRetrievedFromJndi() throws Exception {
Validator validator = InitialContext.doLookup( "java:comp/Validator" );
assertNotNull( validator, "Default validator should be bound to JNDI tree." );

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

//expecting message from interpolator configured in META-INF/validation.xml
assertCorrectConstraintViolationMessages( violations, "Invalid constraint" );
}
}
@@ -0,0 +1,67 @@
/*
* 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.ee;

import java.util.Set;
import javax.annotation.Resource;
import javax.ejb.Stateless;
import javax.validation.ConstraintViolation;
import javax.validation.Validator;
import javax.validation.ValidatorFactory;

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

/**
* A test EJB which retrieves validator and validator factory via
* {@code @Resource} injection.
*
* @author Gunnar Morling
*/
@Stateless
public class ValidationTestEjb {

@Resource
public ValidatorFactory defaultValidatorFactory;

@Resource
public Validator defaultValidator;

public void assertDefaultValidatorFactoryGetsInjected() {
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" );
}

public void assertDefaultValidatorGetsInjected() {
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" );
}
}
@@ -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.ee.ConstantMessageInterpolator</message-interpolator>
</validation-config>

0 comments on commit 149e670

Please sign in to comment.