OPENJPA-1157 Integration tests for Bean Validation providers - Part 2. Added @Min and @Max constraint tests.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@791594 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Donald Woods 2009-07-06 19:59:04 +00:00
parent 9ee5383721
commit 60fd64109c
3 changed files with 235 additions and 5 deletions

View File

@ -20,7 +20,6 @@ package org.apache.openjpa.integration.validation;
import java.io.Serializable;
import java.math.BigDecimal;
//import java.math.BigDecimal;
import javax.persistence.Basic;
import javax.persistence.Entity;

View File

@ -0,0 +1,124 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.openjpa.integration.validation;
import java.io.Serializable;
import javax.persistence.Basic;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
import javax.persistence.Transient;
import javax.validation.constraints.Max;
import javax.validation.constraints.Min;
@NamedQueries( {
@NamedQuery(name="FindFirst",
query="select c from VNUMBER c where c.id = 1"),
@NamedQuery(name="FindAll", query="select c from VNUMBER c")
})
@Entity(name = "VNUMBER")
@Table(name = "NUMBER_ENTITY")
public class ConstraintNumber implements Serializable {
@Transient
private static final long serialVersionUID = 1L;
@Transient
private static final long negative = -99;
@Transient
private static final long positive = 99;
@Id
@GeneratedValue
private long id;
@Basic
@Min(value = 0)
private long minZero;
@Basic
private long maxZero; // @Max(value = 0) constraint is on the getter
/*
* Some helper methods to create the entities to test with
*/
public static ConstraintNumber createInvalidMin() {
ConstraintNumber c = new ConstraintNumber();
c.setMinZero(negative);
c.setMaxZero(negative);
return c;
}
public static ConstraintNumber createInvalidMax() {
ConstraintNumber c = new ConstraintNumber();
c.setMinZero(positive);
c.setMaxZero(positive);
return c;
}
public static ConstraintNumber createInvalidMinMax() {
ConstraintNumber c = new ConstraintNumber();
c.setMinZero(negative);
c.setMaxZero(positive);
return c;
}
public static ConstraintNumber createValid() {
ConstraintNumber c = new ConstraintNumber();
c.setMinZero(positive);
c.setMaxZero(negative);
return c;
}
/*
* Main entity code
*/
public ConstraintNumber() {
}
public long getId() {
return id;
}
public long getMinZero() {
return minZero;
}
public void setMinZero(long d) {
minZero = d;
}
@Max(value = 0)
public long getMaxZero() {
return maxZero;
}
public void setMaxZero(long d) {
maxZero = d;
}
}

View File

@ -13,8 +13,6 @@
*/
package org.apache.openjpa.integration.validation;
import java.util.List;
import javax.persistence.Query;
import javax.persistence.ValidationMode;
import javax.validation.ConstraintViolationException;
@ -45,11 +43,14 @@ import org.apache.openjpa.persistence.test.SingleEMFTestCase;
* 8) Test @AssertFalse constraint exception on getter in mode=AUTO
* 10) Test @DecimalMin constraint exception on variables in mode=AUTO
* 11) Test @DecimalMax constraint exception on getter in mode=AUTO
* 13) Test @Min constraint exception on variables in mode=AUTO
* 14) Test @Max constraint exception on getter in mode=AUTO
*
* Basic constraint test for no violations:
* 6) Persist @NotNull and @Null constraints pass in mode=AUTO
* 9) Test @AssertFalse and @AssertTrue constraints pass in mode=AUTO
* 12) Test @DecimalMin and @DecimalMax constraints pass in mode=AUTO
* 15) Test @Min and @Max constraints pass in mode=AUTO
*
* @version $Rev$ $Date$
*/
@ -59,7 +60,7 @@ public class TestConstraints extends SingleEMFTestCase {
public void setUp() {
super.setUp(CLEAR_TABLES,
ConstraintNull.class, ConstraintBoolean.class,
ConstraintDecimal.class);
ConstraintDecimal.class, ConstraintNumber.class);
}
/**
@ -571,8 +572,114 @@ public class TestConstraints extends SingleEMFTestCase {
}
}
/**
* Scenario being tested:
* 13) Test @Min constraint exception on variables in mode=AUTO
* Basic constraint test for a violation exception.
*/
public void testMinConstraint() {
getLog().trace("testMinConstraint() started");
// create EM from default EMF
OpenJPAEntityManager em = emf.createEntityManager();
assertNotNull(em);
try {
// verify Validation Mode
OpenJPAConfiguration conf = em.getConfiguration();
assertNotNull(conf);
assertTrue("ValidationMode",
conf.getValidationMode().equalsIgnoreCase("AUTO"));
// create invalid ConstraintBoolean instance
em.getTransaction().begin();
ConstraintNumber c = ConstraintNumber.createInvalidMin();
em.persist(c);
em.getTransaction().commit();
getLog().trace("testMinConstraint() failed");
fail("Expected a ConstraintViolationException");
} catch (ConstraintViolationException e) {
// expected
getLog().trace("Caught expected ConstraintViolationException = " + e);
getLog().trace("testMinConstraint() passed");
} finally {
if ((em != null) && em.isOpen()) {
if (em.getTransaction().isActive())
em.getTransaction().rollback();
em.close();
}
}
}
/**
* Scenario being tested:
* 14) Test @Max constraint exception on getter in mode=AUTO
* Basic constraint test for a violation exception.
*/
public void testMaxConstraint() {
getLog().trace("testMaxConstraint() started");
// create EM from default EMF
OpenJPAEntityManager em = emf.createEntityManager();
assertNotNull(em);
try {
// verify Validation Mode
OpenJPAConfiguration conf = em.getConfiguration();
assertNotNull(conf);
assertTrue("ValidationMode",
conf.getValidationMode().equalsIgnoreCase("AUTO"));
// create invalid ConstraintBoolean instance
em.getTransaction().begin();
ConstraintNumber c = ConstraintNumber.createInvalidMax();
em.persist(c);
em.getTransaction().commit();
getLog().trace("testMaxConstraint() failed");
fail("Expected a ConstraintViolationException");
} catch (Exception e) {
// expected
getLog().trace("Caught expected ConstraintViolationException = " + e);
getLog().trace("testMaxConstraint() passed");
} finally {
if ((em != null) && em.isOpen()) {
if (em.getTransaction().isActive())
em.getTransaction().rollback();
em.close();
}
}
}
/**
* Scenario being tested:
* 15) Test @Min and @Max constraints pass in mode=AUTO
* Basic constraint test for no violations.
*/
public void testMinMaxConstraint() {
getLog().trace("testMinMaxConstraint() started");
// create EM from default EMF
OpenJPAEntityManager em = emf.createEntityManager();
assertNotNull(em);
try {
// verify Validation Mode
OpenJPAConfiguration conf = em.getConfiguration();
assertNotNull(conf);
assertTrue("ValidationMode",
conf.getValidationMode().equalsIgnoreCase("AUTO"));
// create valid ConstraintBoolean instance
em.getTransaction().begin();
ConstraintNumber c = ConstraintNumber.createValid();
em.persist(c);
em.getTransaction().commit();
getLog().trace("testMinMaxConstraint() passed");
} catch (Exception e) {
// unexpected
getLog().trace("testMinMaxConstraint() failed");
fail("Caught unexpected exception = " + e);
} finally {
if ((em != null) && em.isOpen()) {
if (em.getTransaction().isActive())
em.getTransaction().rollback();
em.close();
}
}
}
/**
* Internal convenience method for getting the OpenJPA logger
*