Package org.hibernate.test.manytomany.ordered

Source Code of org.hibernate.test.manytomany.ordered.OrderedManyToManyTest

package org.hibernate.test.manytomany.ordered;

import java.util.List;

import junit.framework.Test;

import org.hibernate.Criteria;
import org.hibernate.FetchMode;
import org.hibernate.Hibernate;
import org.hibernate.Session;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.hibernate.cfg.Environment;
import org.hibernate.testing.junit.functional.FunctionalTestCase;
import org.hibernate.testing.junit.functional.FunctionalTestClassTestSuite;

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

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

  public String[] getMappings() {
    return new String[] { "manytomany/ordered/UserGroup.hbm.xml" };
  }

  public void configure(Configuration cfg) {
    cfg.setProperty( Environment.USE_SECOND_LEVEL_CACHE, "false");
  }

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

  public void testManyToManyOrdering() {
    Session s = openSession();
    Transaction t = s.beginTransaction();
    User gavin = new User( "gavin", "jboss" );
    User steve = new User( "steve", "jboss" );
    User max = new User( "max", "jboss" );
    User emmanuel = new User( "emmanuel", "jboss" );
    s.persist( gavin );
    s.persist( steve );
    s.persist( max );
    s.persist( emmanuel );
    Group hibernate = new Group( "hibernate", "jboss" );
    hibernate.addUser( gavin );
    hibernate.addUser( steve );
    hibernate.addUser( max );
    hibernate.addUser( emmanuel );
    s.persist( hibernate );
    t.commit();
    s.close();

    // delayed collection load...
    s = openSession();
    t = s.beginTransaction();
    hibernate = ( Group ) s.get( Group.class, hibernate.getId() );
    assertFalse( Hibernate.isInitialized( hibernate.getUsers() ) );
    assertEquals( 4, hibernate.getUsers().size() );
    assertOrdering( hibernate.getUsers() );
    t.commit();
    s.close();

    // HQL (non eager)
    s = openSession();
    t = s.beginTransaction();
    hibernate = ( Group ) s.createQuery( "from Group" ).uniqueResult();
    assertFalse( Hibernate.isInitialized( hibernate.getUsers() ) );
    assertEquals( 4, hibernate.getUsers().size() );
    assertOrdering( hibernate.getUsers() );
    t.commit();
    s.close();

    // HQL (eager)
    s = openSession();
    t = s.beginTransaction();
    hibernate = ( Group ) s.createQuery( "from Group g inner join fetch g.users" ).uniqueResult();
    assertTrue( Hibernate.isInitialized( hibernate.getUsers() ) );
    assertEquals( 4, hibernate.getUsers().size() );
    assertOrdering( hibernate.getUsers() );
    t.commit();
    s.close();

    // criteria load (forced eager fetch)
    s = openSession();
    t = s.beginTransaction();
    Criteria criteria = s.createCriteria( Group.class );
    criteria.setFetchMode( "users", FetchMode.JOIN );
    hibernate = ( Group ) criteria.uniqueResult();
    assertTrue( Hibernate.isInitialized( hibernate.getUsers() ) );
    assertEquals( 4, hibernate.getUsers().size() );
    assertOrdering( hibernate.getUsers() );
    t.commit();
    s.close();

    // criteria load (forced non eager fetch)
    s = openSession();
    t = s.beginTransaction();
    criteria = s.createCriteria( Group.class );
    criteria.setFetchMode( "users", FetchMode.SELECT );
    hibernate = ( Group ) criteria.uniqueResult();
    assertFalse( Hibernate.isInitialized( hibernate.getUsers() ) );
    assertEquals( 4, hibernate.getUsers().size() );
    assertOrdering( hibernate.getUsers() );
    t.commit();
    s.close();

    // clean up
    s = openSession();
    t = s.beginTransaction();
    s.delete( gavin );
    s.delete( steve );
    s.delete( max );
    s.delete( emmanuel );
    s.delete( hibernate );
    t.commit();
    s.close();
  }

  private void assertOrdering(List users) {
    User user = extractUser( users, 0 );
    assertTrue( "many-to-many ordering not applied", user.getName().equals( "emmanuel" ) );
    user = extractUser( users, 1 );
    assertTrue( "many-to-many ordering not applied", user.getName().equals( "gavin" ) );
    user = extractUser( users, 2 );
    assertTrue( "many-to-many ordering not applied", user.getName().equals( "max" ) );
    user = extractUser( users, 3 );
    assertTrue( "many-to-many ordering not applied", user.getName().equals( "steve" ) );
  }

  private User extractUser(List users, int position) {
    return ( User ) users.get( position );
  }

}
TOP

Related Classes of org.hibernate.test.manytomany.ordered.OrderedManyToManyTest

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.