/* * Hibernate, Relational Persistence for Idiomatic Java * * Copyright (c) 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.annotations.access; import org.hibernate.Session; import org.hibernate.Transaction; 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; /** * @author Emmanuel Bernard */ public class AccessTest extends BaseCoreFunctionalTestCase { @Test public void testSuperclassOverriding() throws Exception { Furniture fur = new Furniture(); fur.setColor( "Black" ); fur.setName( "Beech" ); fur.isAlive = true; Session s = openSession(); s.persist( fur ); Transaction tx = s.beginTransaction(); tx.commit(); s.clear(); tx = s.beginTransaction(); fur = ( Furniture ) s.get( Furniture.class, fur.getId() ); assertFalse( fur.isAlive ); assertNotNull( fur.getColor() ); s.delete( fur ); tx.commit(); s.close(); } @Test public void testSuperclassNonOverriding() throws Exception { Furniture fur = new Furniture(); fur.setGod( "Buddha" ); Session s = openSession(); s.persist( fur ); Transaction tx = s.beginTransaction(); tx.commit(); s.clear(); tx = s.beginTransaction(); fur = ( Furniture ) s.get( Furniture.class, fur.getId() ); assertNotNull( fur.getGod() ); s.delete( fur ); tx.commit(); s.close(); } public void testPropertyOverriding() throws Exception { Furniture fur = new Furniture(); fur.weight = 3; Session s = openSession(); s.persist( fur ); Transaction tx = s.beginTransaction(); tx.commit(); s.clear(); tx = s.beginTransaction(); fur = ( Furniture ) s.get( Furniture.class, fur.getId() ); assertEquals( 5, fur.weight ); s.delete( fur ); tx.commit(); s.close(); } public void testNonOverridenSubclass() throws Exception { Chair chair = new Chair(); chair.setPillow( "Blue" ); Session s = openSession(); s.persist( chair ); Transaction tx = s.beginTransaction(); tx.commit(); s.clear(); tx = s.beginTransaction(); chair = ( Chair ) s.get( Chair.class, chair.getId() ); assertNull( chair.getPillow() ); s.delete( chair ); tx.commit(); s.close(); } public void testOverridenSubclass() throws Exception { BigBed bed = new BigBed(); bed.size = 5; bed.setQuality( "good" ); Session s = openSession(); s.persist( bed ); Transaction tx = s.beginTransaction(); tx.commit(); s.clear(); tx = s.beginTransaction(); bed = ( BigBed ) s.get( BigBed.class, bed.getId() ); assertEquals( 5, bed.size ); assertNull( bed.getQuality() ); s.delete( bed ); tx.commit(); s.close(); } public void testFieldsOverriding() throws Exception { Gardenshed gs = new Gardenshed(); gs.floors = 4; Session s = openSession(); s.persist( gs ); Transaction tx = s.beginTransaction(); tx.commit(); s.clear(); tx = s.beginTransaction(); gs = ( Gardenshed ) s.get( Gardenshed.class, gs.getId() ); assertEquals( 4, gs.floors ); assertEquals( 6, gs.getFloors() ); s.delete( gs ); tx.commit(); s.close(); } protected Class[] getAnnotatedClasses() { return new Class[] { Bed.class, Chair.class, Furniture.class, BigBed.class, Gardenshed.class, }; } }