/* * 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.manytomany; import org.junit.Test; 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.junit4.BaseCoreFunctionalTestCase; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; /** * @author Gavin King */ public class ManyToManyTest extends BaseCoreFunctionalTestCase { @Override public String[] getMappings() { return new String[] { "manytomany/UserGroup.hbm.xml" }; } @Override public void configure(Configuration cfg) { cfg.setProperty(Environment.USE_SECOND_LEVEL_CACHE, "false"); } @Test public void testManyToManyWithFormula() { Session s = openSession(); Transaction t = s.beginTransaction(); User gavin = new User("gavin", "jboss"); Group seam = new Group("seam", "jboss"); Group hb = new Group("hibernate", "jboss"); gavin.getGroups().add(seam); gavin.getGroups().add(hb); seam.getUsers().add(gavin); hb.getUsers().add(gavin); s.persist(gavin); s.persist(seam); s.persist(hb); t.commit(); s.close(); s = openSession(); t = s.beginTransaction(); gavin = (User) s.get(User.class, gavin); assertFalse( Hibernate.isInitialized( gavin.getGroups() ) ); assertEquals( 2, gavin.getGroups().size() ); hb = (Group) s.get(Group.class, hb); assertFalse( Hibernate.isInitialized( hb.getUsers() ) ); assertEquals( 1, hb.getUsers().size() ); t.commit(); s.close(); s = openSession(); t = s.beginTransaction(); gavin = (User) s.createCriteria(User.class) .setFetchMode("groups", FetchMode.JOIN) .uniqueResult(); assertTrue( Hibernate.isInitialized( gavin.getGroups() ) ); assertEquals( 2, gavin.getGroups().size() ); Group group = (Group) gavin.getGroups().iterator().next(); assertFalse( Hibernate.isInitialized( group.getUsers() ) ); assertEquals( 1, group.getUsers().size() ); t.commit(); s.close(); s = openSession(); t = s.beginTransaction(); gavin = (User) s.createCriteria(User.class) .setFetchMode("groups", FetchMode.JOIN) .setFetchMode("groups.users", FetchMode.JOIN) .uniqueResult(); assertTrue( Hibernate.isInitialized( gavin.getGroups() ) ); assertEquals( 2, gavin.getGroups().size() ); group = (Group) gavin.getGroups().iterator().next(); assertTrue( Hibernate.isInitialized( group.getUsers() ) ); assertEquals( 1, group.getUsers().size() ); t.commit(); s.close(); s = openSession(); t = s.beginTransaction(); gavin = (User) s.createQuery("from User u join fetch u.groups g join fetch g.users").uniqueResult(); assertTrue( Hibernate.isInitialized( gavin.getGroups() ) ); assertEquals( 2, gavin.getGroups().size() ); group = (Group) gavin.getGroups().iterator().next(); assertTrue( Hibernate.isInitialized( group.getUsers() ) ); assertEquals( 1, group.getUsers().size() ); t.commit(); s.close(); s = openSession(); t = s.beginTransaction(); gavin = (User) s.get(User.class, gavin); hb = (Group) s.get(Group.class, hb); gavin.getGroups().remove(hb); t.commit(); s.close(); s = openSession(); t = s.beginTransaction(); gavin = (User) s.get(User.class, gavin); assertEquals( gavin.getGroups().size(), 1 ); hb = (Group) s.get(Group.class, hb); assertEquals( hb.getUsers().size(), 0 ); t.commit(); s.close(); s = openSession(); t = s.beginTransaction(); s.delete(gavin); s.flush(); s.createQuery("delete from Group").executeUpdate(); t.commit(); s.close(); } }