/* * Hibernate, Relational Persistence for Idiomatic Java * * Copyright (c) 2006-2011, 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.cuk; import java.util.List; import java.util.Set; import org.hibernate.Hibernate; import org.hibernate.Session; import org.hibernate.Transaction; import org.hibernate.cfg.Configuration; import org.hibernate.cfg.Environment; import org.junit.Test; import org.hibernate.testing.junit4.BaseCoreFunctionalTestCase; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertSame; import static org.junit.Assert.assertTrue; /** * @author Gavin King */ public class CompositePropertyRefTest extends BaseCoreFunctionalTestCase { public String[] getMappings() { return new String[] { "cuk/Person.hbm.xml" }; } public void configure(Configuration cfg) { cfg.setProperty(Environment.DEFAULT_BATCH_FETCH_SIZE, "1"); } @Test @SuppressWarnings( {"unchecked", "UnusedAssignment"}) public void testOneToOnePropertyRef() { Session s = openSession(); Transaction t = s.beginTransaction(); Person p = new Person(); p.setName("Steve"); p.setUserId("steve"); Address a = new Address(); a.setAddress("Texas"); a.setCountry("USA"); p.setAddress(a); a.setPerson(p); s.save(p); Person p2 = new Person(); p2.setName("Max"); p2.setUserId("max"); s.save(p2); Account act = new Account(); act.setType('c'); act.setUser(p2); p2.getAccounts().add(act); s.save(act); s.flush(); s.clear(); p = (Person) s.get( Person.class, p.getId() ); //get address reference by outer join p2 = (Person) s.get( Person.class, p2.getId() ); //get null address reference by outer join assertNull( p2.getAddress() ); assertNotNull( p.getAddress() ); List l = s.createQuery("from Person").list(); //pull address references for cache assertEquals( l.size(), 2 ); assertTrue( l.contains(p) && l.contains(p2) ); s.clear(); l = s.createQuery("from Person p order by p.name").list(); //get address references by sequential selects assertEquals( l.size(), 2 ); assertNull( ( (Person) l.get(0) ).getAddress() ); assertNotNull( ( (Person) l.get(1) ).getAddress() ); s.clear(); l = s.createQuery("from Person p left join fetch p.address a order by a.country").list(); //get em by outer join assertEquals( l.size(), 2 ); if ( ( (Person) l.get(0) ).getName().equals("Max") ) { assertNull( ( (Person) l.get(0) ).getAddress() ); assertNotNull( ( (Person) l.get(1) ).getAddress() ); } else { assertNull( ( (Person) l.get(1) ).getAddress() ); assertNotNull( ( (Person) l.get(0) ).getAddress() ); } s.clear(); l = s.createQuery("from Person p left join p.accounts").list(); for ( int i=0; i<2; i++ ) { Object[] row = (Object[]) l.get(i); Person px = (Person) row[0]; Set accounts = px.getAccounts(); assertFalse( Hibernate.isInitialized(accounts) ); assertTrue( px.getAccounts().size()>0 || row[1]==null ); } s.clear(); l = s.createQuery("from Person p left join fetch p.accounts a order by p.name").list(); Person p0 = (Person) l.get(0); assertTrue( Hibernate.isInitialized( p0.getAccounts() ) ); assertEquals( p0.getAccounts().size(), 1 ); assertSame( ( (Account) p0.getAccounts().iterator().next() ).getUser(), p0 ); Person p1 = (Person) l.get(1); assertTrue( Hibernate.isInitialized( p1.getAccounts() ) ); assertEquals( p1.getAccounts().size(), 0 ); s.clear(); l = s.createQuery("from Account a join fetch a.user").list(); s.clear(); l = s.createQuery("from Person p left join fetch p.address").list(); s.clear(); s.createQuery( "delete Address" ).executeUpdate(); s.createQuery( "delete Account" ).executeUpdate(); s.createQuery( "delete Person" ).executeUpdate(); t.commit(); s.close(); } }