HHH-9937 : Hibernate#isPropertyInitialized always returns true for new enhancer (test case only)

This commit is contained in:
Gail Badner 2015-07-16 16:29:19 -07:00 committed by Steve Ebersole
parent 716e954f49
commit 4f72f17623
2 changed files with 100 additions and 0 deletions

View File

@ -6,6 +6,7 @@
*/
package org.hibernate.test.bytecode.enhancement;
import org.hibernate.test.bytecode.enhancement.lazy.LazyBasicFieldNotInitializedTestTask;
import org.hibernate.testing.FailureExpected;
import org.hibernate.testing.TestForIssue;
import org.hibernate.testing.junit4.BaseUnitTestCase;
@ -72,4 +73,10 @@ public class EnhancerTest extends BaseUnitTestCase {
EnhancerTestUtils.runEnhancerTestTask( HHH3949TestTask4.class );
}
@Test
@TestForIssue( jiraKey = "HHH-9937")
@FailureExpected( jiraKey = "HHH-9937")
public void testLazyBasicFieldNotInitialized() {
EnhancerTestUtils.runEnhancerTestTask( LazyBasicFieldNotInitializedTestTask.class );
}
}

View File

@ -0,0 +1,93 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.test.bytecode.enhancement.lazy;
import javax.persistence.Basic;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import org.hibernate.Hibernate;
import org.hibernate.Session;
import org.hibernate.cfg.Configuration;
import org.hibernate.cfg.Environment;
import org.hibernate.test.bytecode.enhancement.AbstractEnhancerTestTask;
import org.hibernate.test.bytecode.enhancement.EnhancerTestUtils;
import org.junit.Assert;
/**
* @author Gail Badner
*/
public class LazyBasicFieldNotInitializedTestTask extends AbstractEnhancerTestTask {
private Long entityId;
public Class<?>[] getAnnotatedClasses() {
return new Class<?>[] {Entity.class};
}
public void prepare() {
Configuration cfg = new Configuration();
cfg.setProperty( Environment.ENABLE_LAZY_LOAD_NO_TRANS, "true" );
cfg.setProperty( Environment.USE_SECOND_LEVEL_CACHE, "false" );
super.prepare( cfg );
Session s = getFactory().openSession();
s.beginTransaction();
Entity entity = new Entity();
entity.setDescription( "desc" );
s.persist( entity );
entityId = entity.getId();
s.getTransaction().commit();
s.clear();
s.close();
}
public void execute() {
Session s = getFactory().openSession();
s.beginTransaction();
Entity entity = s.get( Entity.class, entityId );
Assert.assertFalse( Hibernate.isPropertyInitialized( entity, "description" ) );
s.getTransaction().commit();
s.close();
}
protected void cleanup() {
}
@javax.persistence.Entity
public static class Entity {
@Id
@GeneratedValue
private Long id;
@Basic(fetch = FetchType.LAZY)
private String description;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
}