HHH-13891 : Added test
This commit is contained in:
parent
b5443deab3
commit
3427bc8414
|
@ -0,0 +1,502 @@
|
||||||
|
/*
|
||||||
|
* 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.proxy;
|
||||||
|
|
||||||
|
import javax.persistence.Column;
|
||||||
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.Id;
|
||||||
|
import javax.persistence.Version;
|
||||||
|
|
||||||
|
import org.hibernate.Hibernate;
|
||||||
|
import org.hibernate.ObjectNotFoundException;
|
||||||
|
|
||||||
|
import org.hibernate.testing.TestForIssue;
|
||||||
|
import org.hibernate.testing.junit4.BaseNonConfigCoreFunctionalTestCase;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import static org.hibernate.testing.transaction.TransactionUtil.doInHibernate;
|
||||||
|
import static org.junit.Assert.assertNotNull;
|
||||||
|
import static org.junit.Assert.assertNull;
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
import static org.junit.Assert.fail;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Gail Badner
|
||||||
|
*/
|
||||||
|
@TestForIssue( jiraKey = "HHH-13891" )
|
||||||
|
public class FinalGetterSetterTest extends BaseNonConfigCoreFunctionalTestCase {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testEntityWithFinalClass() {
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
assertNull( session.get( EntityWithFinalClass.class, 999 ) );
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
session.load( EntityWithFinalClass.class, 999 );
|
||||||
|
});
|
||||||
|
fail( "Should have thrown ObjectNotFoundException" );
|
||||||
|
}
|
||||||
|
catch (ObjectNotFoundException expected) {
|
||||||
|
}
|
||||||
|
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
final EntityWithFinalClass entity = new EntityWithFinalClass();
|
||||||
|
entity.id = 1;
|
||||||
|
entity.name = "An Entity";
|
||||||
|
session.persist( entity );
|
||||||
|
});
|
||||||
|
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
final EntityWithFinalClass entity = session.load( EntityWithFinalClass.class, 1 );
|
||||||
|
assertNotNull( entity );
|
||||||
|
assertTrue( Hibernate.isInitialized( entity ) );
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testEntityWithFinalIdGetter() {
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
assertNull( session.get( EntityWithFinalIdGetter.class, 999 ) );
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
session.load( EntityWithFinalIdGetter.class, 999 );
|
||||||
|
});
|
||||||
|
fail( "Should have thrown ObjectNotFoundException" );
|
||||||
|
}
|
||||||
|
catch (ObjectNotFoundException expected) {
|
||||||
|
}
|
||||||
|
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
final EntityWithFinalIdGetter entity = new EntityWithFinalIdGetter();
|
||||||
|
entity.id = 1;
|
||||||
|
entity.name = "An Entity";
|
||||||
|
session.persist( entity );
|
||||||
|
});
|
||||||
|
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
final EntityWithFinalIdGetter entity = session.load( EntityWithFinalIdGetter.class, 1 );
|
||||||
|
assertNotNull( entity );
|
||||||
|
assertTrue( Hibernate.isInitialized( entity ) );
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testEntityWithFinalIdSetter() {
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
assertNull( session.get( EntityWithFinalIdSetter.class, 999 ) );
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
session.load( EntityWithFinalIdSetter.class, 999 );
|
||||||
|
});
|
||||||
|
fail( "Should have thrown ObjectNotFoundException" );
|
||||||
|
}
|
||||||
|
catch (ObjectNotFoundException expected) {
|
||||||
|
}
|
||||||
|
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
final EntityWithFinalIdSetter entity = new EntityWithFinalIdSetter();
|
||||||
|
entity.id = 1;
|
||||||
|
entity.name = "An Entity";
|
||||||
|
session.persist( entity );
|
||||||
|
});
|
||||||
|
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
final EntityWithFinalIdSetter entity = session.load( EntityWithFinalIdSetter.class, 1 );
|
||||||
|
assertNotNull( entity );
|
||||||
|
assertTrue( Hibernate.isInitialized( entity ) );
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testEntityWithFinalVersionGetter() {
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
assertNull( session.get( EntityWithFinalVersionGetter.class, 999 ) );
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
session.load( EntityWithFinalVersionGetter.class, 999 );
|
||||||
|
});
|
||||||
|
fail( "Should have thrown ObjectNotFoundException" );
|
||||||
|
}
|
||||||
|
catch (ObjectNotFoundException expected) {
|
||||||
|
}
|
||||||
|
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
final EntityWithFinalVersionGetter entity = new EntityWithFinalVersionGetter();
|
||||||
|
entity.id = 1;
|
||||||
|
entity.name = "An Entity";
|
||||||
|
session.persist( entity );
|
||||||
|
});
|
||||||
|
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
final EntityWithFinalVersionGetter entity = session.load( EntityWithFinalVersionGetter.class, 1 );
|
||||||
|
assertNotNull( entity );
|
||||||
|
assertTrue( Hibernate.isInitialized( entity ) );
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testEntityWithFinalVersionSetter() {
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
assertNull( session.get( EntityWithFinalVersionSetter.class, 999 ) );
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
session.load( EntityWithFinalVersionSetter.class, 999 );
|
||||||
|
});
|
||||||
|
fail( "Should have thrown ObjectNotFoundException" );
|
||||||
|
}
|
||||||
|
catch (ObjectNotFoundException expected) {
|
||||||
|
}
|
||||||
|
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
final EntityWithFinalVersionSetter entity = new EntityWithFinalVersionSetter();
|
||||||
|
entity.id = 1;
|
||||||
|
entity.name = "An Entity";
|
||||||
|
session.persist( entity );
|
||||||
|
});
|
||||||
|
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
final EntityWithFinalVersionSetter entity = session.load( EntityWithFinalVersionSetter.class, 1 );
|
||||||
|
assertNotNull( entity );
|
||||||
|
assertTrue( Hibernate.isInitialized( entity ) );
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testEntityWithFinalPropertyGetter() {
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
assertNull( session.get( EntityWithFinalPropertyGetter.class, 999 ) );
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
session.load( EntityWithFinalPropertyGetter.class, 999 );
|
||||||
|
});
|
||||||
|
fail( "Should have thrown ObjectNotFoundException" );
|
||||||
|
}
|
||||||
|
catch (ObjectNotFoundException expected) {
|
||||||
|
}
|
||||||
|
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
final EntityWithFinalPropertyGetter entity = new EntityWithFinalPropertyGetter();
|
||||||
|
entity.id = 1;
|
||||||
|
entity.name = "An Entity";
|
||||||
|
session.persist( entity );
|
||||||
|
});
|
||||||
|
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
final EntityWithFinalPropertyGetter entity = session.load( EntityWithFinalPropertyGetter.class, 1 );
|
||||||
|
assertNotNull( entity );
|
||||||
|
assertTrue( Hibernate.isInitialized( entity ) );
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testEntityWithFinalPropertySetter() {
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
assertNull( session.get( EntityWithFinalPropertySetter.class, 999 ) );
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
session.load( EntityWithFinalPropertySetter.class, 999 );
|
||||||
|
});
|
||||||
|
fail( "Should have thrown ObjectNotFoundException" );
|
||||||
|
}
|
||||||
|
catch (ObjectNotFoundException expected) {
|
||||||
|
}
|
||||||
|
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
final EntityWithFinalPropertySetter entity = new EntityWithFinalPropertySetter();
|
||||||
|
entity.id = 1;
|
||||||
|
entity.name = "An Entity";
|
||||||
|
session.persist( entity );
|
||||||
|
});
|
||||||
|
|
||||||
|
doInHibernate( this::sessionFactory, session -> {
|
||||||
|
final EntityWithFinalPropertySetter entity = session.load( EntityWithFinalPropertySetter.class, 1 );
|
||||||
|
assertNotNull( entity );
|
||||||
|
assertTrue( Hibernate.isInitialized( entity ) );
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Class[] getAnnotatedClasses() {
|
||||||
|
return new Class[] {
|
||||||
|
EntityWithFinalClass.class,
|
||||||
|
EntityWithFinalIdGetter.class,
|
||||||
|
EntityWithFinalIdSetter.class,
|
||||||
|
EntityWithFinalVersionGetter.class,
|
||||||
|
EntityWithFinalVersionSetter.class,
|
||||||
|
EntityWithFinalPropertyGetter.class,
|
||||||
|
EntityWithFinalPropertySetter.class
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
@Entity( name = "EntityWithFinalClass")
|
||||||
|
public static final class EntityWithFinalClass {
|
||||||
|
|
||||||
|
@Id
|
||||||
|
private int id;
|
||||||
|
|
||||||
|
@Version
|
||||||
|
@Column(name = "ver")
|
||||||
|
private int version;
|
||||||
|
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
public final int getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(int id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getVersion() {
|
||||||
|
return version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVersion(int version) {
|
||||||
|
this.version = version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Entity( name = "EntityWithFinalIdGetter")
|
||||||
|
public static class EntityWithFinalIdGetter {
|
||||||
|
|
||||||
|
@Id
|
||||||
|
private int id;
|
||||||
|
|
||||||
|
@Version
|
||||||
|
@Column(name = "ver")
|
||||||
|
private int version;
|
||||||
|
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
public final int getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(int id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getVersion() {
|
||||||
|
return version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVersion(int version) {
|
||||||
|
this.version = version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Entity( name = "EntityWithFinalIdSetter")
|
||||||
|
public static class EntityWithFinalIdSetter {
|
||||||
|
@Id
|
||||||
|
private int id;
|
||||||
|
|
||||||
|
@Version
|
||||||
|
@Column(name = "ver")
|
||||||
|
private int version;
|
||||||
|
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
public int getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public final void setId(int id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getVersion() {
|
||||||
|
return version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVersion(int version) {
|
||||||
|
this.version = version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Entity( name = "EntityWithFinalVersionGetter")
|
||||||
|
public static class EntityWithFinalVersionGetter {
|
||||||
|
@Id
|
||||||
|
private int id;
|
||||||
|
|
||||||
|
@Version
|
||||||
|
@Column(name = "ver")
|
||||||
|
private int version;
|
||||||
|
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
public int getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(int id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public final int getVersion() {
|
||||||
|
return version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVersion(int version) {
|
||||||
|
this.version = version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Entity( name = "EntityWithFinalVersionSetter")
|
||||||
|
public static class EntityWithFinalVersionSetter {
|
||||||
|
@Id
|
||||||
|
private int id;
|
||||||
|
|
||||||
|
@Version
|
||||||
|
@Column(name = "ver")
|
||||||
|
private int version;
|
||||||
|
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
public int getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(int id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getVersion() {
|
||||||
|
return version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public final void setVersion(int version) {
|
||||||
|
this.version = version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Entity( name = "EntityWithFinalPropertyGetter")
|
||||||
|
public static class EntityWithFinalPropertyGetter {
|
||||||
|
@Id
|
||||||
|
private int id;
|
||||||
|
|
||||||
|
@Version
|
||||||
|
@Column(name = "ver")
|
||||||
|
private int version;
|
||||||
|
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
public int getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(int id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getVersion() {
|
||||||
|
return version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVersion(int version) {
|
||||||
|
this.version = version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public final String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Entity( name = "EntityWithFinalPropertySetter")
|
||||||
|
public static class EntityWithFinalPropertySetter {
|
||||||
|
@Id
|
||||||
|
private int id;
|
||||||
|
|
||||||
|
@Version
|
||||||
|
@Column(name = "ver")
|
||||||
|
private int version;
|
||||||
|
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
public int getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(int id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getVersion() {
|
||||||
|
return version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVersion(int version) {
|
||||||
|
this.version = version;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public final void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue