Package org.hibernate.test.onetoone.nopojo

Source Code of org.hibernate.test.onetoone.nopojo.DynamicMapOneToOneTest

//$Id: DynamicMapOneToOneTest.java 10977 2006-12-12 23:28:04Z steve.ebersole@jboss.com $
package org.hibernate.test.onetoone.nopojo;

import java.util.HashMap;
import java.util.Map;

import junit.framework.Test;

import org.hibernate.EntityMode;
import org.hibernate.Session;
import org.hibernate.cfg.Configuration;
import org.hibernate.cfg.Environment;
import org.hibernate.testing.junit.functional.FunctionalTestCase;
import org.hibernate.testing.junit.functional.FunctionalTestClassTestSuite;
import org.hibernate.stat.EntityStatistics;

/**
* @author Gavin King
*/
public class DynamicMapOneToOneTest extends FunctionalTestCase {

  public DynamicMapOneToOneTest(String str) {
    super(str);
  }

  public String[] getMappings() {
    return new String[] { "onetoone/nopojo/Person.hbm.xml" };
  }

  public void configure(Configuration cfg) {
    cfg.setProperty(Environment.USE_SECOND_LEVEL_CACHE, "false");
    cfg.setProperty(Environment.GENERATE_STATISTICS, "true");
    cfg.setProperty( Environment.DEFAULT_ENTITY_MODE, EntityMode.MAP.toString() );
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( DynamicMapOneToOneTest.class );
  }

  public void testOneToOneOnSubclass() {
    Map person = new HashMap();
    person.put( "name", "Steve" );
    Map address = new HashMap();
    address.put( "zip", "12345" );
    address.put( "state", "TX" );
    address.put( "street", "123 Main St" );

    person.put( "address", address );
    address.put( "owner", person );

    Session s = openSession();
    s.beginTransaction();
    s.persist( "Person", person );
    s.getTransaction().commit();
    s.close();

    s = openSession();
    s.beginTransaction();

    EntityStatistics addressStats = getSessions().getStatistics().getEntityStatistics( "Address" );

    person = ( Map ) s.createQuery( "from Person p join fetch p.address" ).uniqueResult();
    assertNotNull( "could not locate person", person );
    assertNotNull( "could not locate persons address", person.get( "address" ) );
    s.clear();

    Object[] tuple = ( Object[] ) s.createQuery( "select p.name, p from Person p join fetch p.address" ).uniqueResult();
    assertEquals( tuple.length, 2 );
    person = ( Map ) tuple[1];
    assertNotNull( "could not locate person", person );
    assertNotNull( "could not locate persons address", person.get( "address" ) );

    s.delete( "Person", person );

    s.getTransaction().commit();
    s.close();

    assertEquals( addressStats.getFetchCount(), 0 );
  }

}
TOP

Related Classes of org.hibernate.test.onetoone.nopojo.DynamicMapOneToOneTest

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.