Package org.hibernate.validator.test.jpa

Source Code of org.hibernate.validator.test.jpa.JPATestCase

//$Id: $
package org.hibernate.validator.test.jpa;

import java.util.Map;
import java.util.HashMap;
import java.util.Properties;
import java.util.ArrayList;
import java.io.InputStream;
import java.io.IOException;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;

import org.hibernate.cfg.Environment;
import org.hibernate.ejb.HibernatePersistence;

/**
* @author Emmanuel Bernard
*/
public abstract class JPATestCase extends junit.framework.TestCase {
  protected EntityManagerFactory factory;

  public JPATestCase() {
    super();
  }

  public JPATestCase(String name) {
    super( name );
  }

  public void setUp() {
    factory = new HibernatePersistence().createEntityManagerFactory( getConfig() );
  }

  public void tearDown() {
    factory.close();
  }

  public abstract Class[] getAnnotatedClasses();

  public String[] getEjb3DD() {
    return new String[]{};
  }

  public Map<Class, String> getCachedClasses() {
    return new HashMap<Class, String>();
  }

  public Map<String, String> getCachedCollections() {
    return new HashMap<String, String>();
  }

  public static Properties loadProperties() {
    Properties props = new Properties();
    InputStream stream = Persistence.class.getResourceAsStream( "/hibernate.properties" );
    if ( stream != null ) {
      try {
        props.load( stream );
      }
      catch (Exception e) {
        throw new RuntimeException( "could not load hibernate.properties" );
      }
      finally {
        try {
          stream.close();
        }
        catch (IOException ioe) {
        }
      }
    }
    props.setProperty( Environment.HBM2DDL_AUTO, "create-drop" );
    return props;
  }

  public Map getConfig() {
    Map config = loadProperties();
    ArrayList<Class> classes = new ArrayList<Class>();

    for ( Class clazz : getAnnotatedClasses() ) {
      classes.add( clazz );
    }
    config.put( HibernatePersistence.LOADED_CLASSES, classes );
    for ( Map.Entry<Class, String> entry : getCachedClasses().entrySet() ) {
      config.put(
          HibernatePersistence.CLASS_CACHE_PREFIX + "." + entry.getKey().getName(),
          entry.getValue()
      );
    }
    for ( Map.Entry<String, String> entry : getCachedCollections().entrySet() ) {
      config.put(
          HibernatePersistence.COLLECTION_CACHE_PREFIX + "." + entry.getKey(),
          entry.getValue()
      );
    }
    if ( getEjb3DD().length > 0 ) {
      ArrayList<String> dds = new ArrayList<String>();
      for ( String dd : getEjb3DD() ) {
        dds.add( dd );
      }
      config.put( HibernatePersistence.XML_FILE_NAMES, dds );
    }
    return config;
  }
}
TOP

Related Classes of org.hibernate.validator.test.jpa.JPATestCase

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.