Package org.hibernate.test.propertyref.component.partial

Source Code of org.hibernate.test.propertyref.component.partial.PartialComponentPropertyRefTest

/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2010, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors.  All third-party contributions are
* distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA  02110-1301  USA
*/
package org.hibernate.test.propertyref.component.partial;

import junit.framework.Test;

import org.hibernate.Hibernate;
import org.hibernate.Session;
import org.hibernate.testing.junit.functional.FunctionalTestCase;
import org.hibernate.testing.junit.functional.FunctionalTestClassTestSuite;

/**
* @author Gavin King
*/
public class PartialComponentPropertyRefTest extends FunctionalTestCase {
 
  public PartialComponentPropertyRefTest(String name) {
    super( name );
  }

  public String[] getMappings() {
    return new String[] { "propertyref/component/partial/Mapping.hbm.xml" };
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( PartialComponentPropertyRefTest.class );
  }
 
  public void testComponentPropertyRef() {
    Session s = openSession();
    s.beginTransaction();
    Person p = new Person();
    p.setIdentity( new Identity() );
    Account a = new Account();
    a.setNumber("123-12345-1236");
    a.setOwner(p);
    p.getIdentity().setName("Gavin");
    p.getIdentity().setSsn("123-12-1234");
    s.persist(p);
    s.persist(a);
    s.getTransaction().commit();
    s.close();

    s = openSession();
    s.beginTransaction();
    a = (Account) s.createQuery("from Account a left join fetch a.owner").uniqueResult();
    assertTrue( Hibernate.isInitialized( a.getOwner() ) );
    assertNotNull( a.getOwner() );
    assertEquals( "Gavin", a.getOwner().getIdentity().getName() );
    s.clear();
   
    a = (Account) s.get(Account.class, "123-12345-1236");
    assertFalse( Hibernate.isInitialized( a.getOwner() ) );
    assertNotNull( a.getOwner() );
    assertEquals( "Gavin", a.getOwner().getIdentity().getName() );
    assertTrue( Hibernate.isInitialized( a.getOwner() ) );
   
    s.clear();
   
    getSessions().evict(Account.class);
    getSessions().evict(Person.class);
   
    a = (Account) s.get(Account.class, "123-12345-1236");
    assertTrue( Hibernate.isInitialized( a.getOwner() ) );
    assertNotNull( a.getOwner() );
    assertEquals( "Gavin", a.getOwner().getIdentity().getName() );
    assertTrue( Hibernate.isInitialized( a.getOwner() ) );
   
    s.delete( a );
    s.delete( a.getOwner() );
    s.getTransaction().commit();
    s.close();
  }
}

TOP

Related Classes of org.hibernate.test.propertyref.component.partial.PartialComponentPropertyRefTest

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.