HHH-12146 - Support enabling caching at any level within a mapped hierarchy

explicit test for Cacheable inheritance
This commit is contained in:
Steve Ebersole 2018-01-09 14:33:03 -06:00
parent 67874eb2db
commit e9c3870909
2 changed files with 162 additions and 2 deletions

View File

@ -0,0 +1,160 @@
/*
* 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.jpa.compliance.tck2_2.caching;
import java.util.Map;
import javax.persistence.Cacheable;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import javax.persistence.SharedCacheMode;
import javax.persistence.Table;
import org.hibernate.Hibernate;
import org.hibernate.boot.MetadataSources;
import org.hibernate.cfg.AvailableSettings;
import org.hibernate.stat.spi.StatisticsImplementor;
import org.hibernate.testing.junit4.BaseNonConfigCoreFunctionalTestCase;
import org.junit.After;
import org.junit.Test;
import org.hamcrest.CoreMatchers;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
/**
* @author Steve Ebersole
*/
public class InheritedCacheableTest extends BaseNonConfigCoreFunctionalTestCase {
@Test
public void testMapping() {
assertThat(
sessionFactory().getMetamodel().entityPersister( Person.class ).hasCache(),
CoreMatchers.is( true )
);
assertThat(
sessionFactory().getMetamodel().entityPersister( Employee.class ).hasCache(),
CoreMatchers.is( true )
);
assertThat(
sessionFactory().getMetamodel().entityPersister( Customer.class ).hasCache(),
CoreMatchers.is( false )
);
}
@Test
public void testOnlySubclassIsCached() {
final StatisticsImplementor statistics = sessionFactory().getStatistics();
inTransaction(
s -> {
s.persist( new Employee( "1", "John Doe", "987", "engineering") );
s.persist( new Customer( "2", "Acme Corp", "123" ) );
}
);
assertTrue( sessionFactory().getCache().contains( Employee.class, "1" ) );
assertTrue( sessionFactory().getCache().contains( Person.class, "1" ) );
assertFalse( sessionFactory().getCache().contains( Customer.class, "2" ) );
assertFalse( sessionFactory().getCache().contains( Person.class, "2" ) );
inTransaction(
s -> {
statistics.clear();
final Customer customer = s.get( Customer.class, "2" );
assertTrue( Hibernate.isInitialized( customer ) );
assertThat( statistics.getSecondLevelCacheHitCount(), CoreMatchers.is(0L) );
statistics.clear();
final Employee emp = s.get( Employee.class, "1" );
assertTrue( Hibernate.isInitialized( emp ) );
assertThat( statistics.getSecondLevelCacheHitCount(), CoreMatchers.is(1L) );
}
);
}
@After
public void cleanupData() {
inTransaction(
s -> s.createQuery( "delete from Person" ).executeUpdate()
);
}
@Override
protected void addSettings(Map settings) {
super.addSettings( settings );
settings.put( AvailableSettings.USE_SECOND_LEVEL_CACHE, "true" );
settings.put( AvailableSettings.GENERATE_STATISTICS, "true" );
settings.put( AvailableSettings.JPA_SHARED_CACHE_MODE, SharedCacheMode.ENABLE_SELECTIVE );
}
@Override
protected void applyMetadataSources(MetadataSources sources) {
super.applyMetadataSources( sources );
sources.addAnnotatedClass( Person.class );
sources.addAnnotatedClass( Employee.class );
sources.addAnnotatedClass( Customer.class );
}
@Entity( name = "Person" )
@Table( name = "persons" )
@Cacheable()
@Inheritance( strategy = InheritanceType.SINGLE_TABLE )
public static class Person {
@Id
public String id;
public String name;
public Person() {
}
public Person(String id, String name) {
this.id = id;
this.name = name;
}
}
@Entity( name = "Employee" )
public static class Employee extends Person {
public String employeeCode;
public String costCenter;
public Employee() {
}
public Employee(String id, String name, String employeeCode, String costCenter) {
super( id, name );
this.employeeCode = employeeCode;
this.costCenter = costCenter;
}
}
@Entity( name = "Customer" )
@Cacheable(false)
public static class Customer extends Person {
public String erpCode;
public Customer() {
}
public Customer(String id, String name, String erpCode) {
super( id, name );
this.erpCode = erpCode;
}
}
}

View File

@ -4,7 +4,7 @@
* 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.jpa.compliance.tck2_2;
package org.hibernate.test.jpa.compliance.tck2_2.caching;
import java.util.Map;
import javax.persistence.Cacheable;
@ -77,7 +77,7 @@ public class SubclassOnlyCachingTests extends BaseNonConfigCoreFunctionalTestCas
@After
public void cleanupData() {
inTransaction(
s -> s.createQuery( "delete from Customer" ).executeUpdate()
s -> s.createQuery( "delete from Person" ).executeUpdate()
);
}