Fixed and reorganized tests in hibernate-jcache

Signed-off-by: Jan Schatteman <jschatte@redhat.com>
This commit is contained in:
Jan Schatteman 2021-08-31 22:51:32 +02:00 committed by Christian Beikov
parent 60e97bcfca
commit 3ae6057311
29 changed files with 108 additions and 99 deletions

View File

@ -4,28 +4,29 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test; package org.hibernate.orm.test.jcache;
import org.hibernate.engine.spi.SessionFactoryImplementor; import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.testing.junit4.BaseUnitTestCase; import org.hibernate.testing.orm.junit.BaseUnitTest;
import org.junit.After; import org.junit.jupiter.api.AfterEach;
import org.junit.Before; import org.junit.jupiter.api.BeforeEach;
/** /**
* @author Steve Ebersole * @author Steve Ebersole
*/ */
public abstract class BaseFunctionalTest extends BaseUnitTestCase { @BaseUnitTest
public abstract class BaseFunctionalTest {
private SessionFactoryImplementor sessionFactory; private SessionFactoryImplementor sessionFactory;
@Before @BeforeEach
public void createSessionFactory() { public void createSessionFactory() {
assert sessionFactory == null || sessionFactory.isClosed(); assert sessionFactory == null || sessionFactory.isClosed();
TestHelper.preBuildAllCaches(); TestHelper.preBuildAllCaches();
sessionFactory = TestHelper.buildStandardSessionFactory(); sessionFactory = TestHelper.buildStandardSessionFactory();
} }
@After @AfterEach
public void releaseSessionFactory() { public void releaseSessionFactory() {
if ( sessionFactory != null ) { if ( sessionFactory != null ) {
sessionFactory.close(); sessionFactory.close();

View File

@ -4,27 +4,28 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test; package org.hibernate.orm.test.jcache;
import org.hibernate.cache.spi.Region; import org.hibernate.cache.spi.Region;
import org.hibernate.cache.spi.access.AccessType; import org.hibernate.cache.spi.access.AccessType;
import org.hibernate.cache.spi.access.EntityDataAccess; import org.hibernate.cache.spi.access.EntityDataAccess;
import org.hibernate.cache.spi.support.DomainDataRegionTemplate; import org.hibernate.cache.spi.support.DomainDataRegionTemplate;
import org.hibernate.jcache.test.domain.Event; import org.hibernate.orm.test.jcache.domain.Event;
import org.hibernate.jcache.test.domain.Item; import org.hibernate.orm.test.jcache.domain.Item;
import org.hibernate.jcache.test.domain.VersionedItem; import org.hibernate.orm.test.jcache.domain.VersionedItem;
import org.junit.Test; import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.MatcherAssert.assertThat;
import static org.hibernate.testing.junit4.ExtraAssertions.assertTyping; import static org.hibernate.testing.orm.junit.ExtraAssertions.assertTyping;
/** /**
* @author Steve Ebersole * @author Steve Ebersole
*/ */
public class DomainDataRegionTest extends BaseFunctionalTest { public class DomainDataRegionTest extends BaseFunctionalTest {
@Override @BeforeEach
public void createSessionFactory() { public void createSessionFactory() {
TestHelper.createCache( "a.b.c" ); TestHelper.createCache( "a.b.c" );
super.createSessionFactory(); super.createSessionFactory();

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.test.cache.jcache; package org.hibernate.orm.test.jcache;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
@ -15,25 +15,24 @@ import org.hibernate.cache.spi.access.SoftLock;
import org.hibernate.cache.spi.support.AbstractReadWriteAccess; import org.hibernate.cache.spi.support.AbstractReadWriteAccess;
import org.hibernate.cache.spi.support.DomainDataRegionTemplate; import org.hibernate.cache.spi.support.DomainDataRegionTemplate;
import org.hibernate.engine.spi.SharedSessionContractImplementor; import org.hibernate.engine.spi.SharedSessionContractImplementor;
import org.hibernate.jcache.test.BaseFunctionalTest; import org.hibernate.orm.test.jcache.domain.Event;
import org.hibernate.jcache.test.domain.Event; import org.hibernate.orm.test.jcache.domain.EventManager;
import org.hibernate.jcache.test.domain.EventManager; import org.hibernate.orm.test.jcache.domain.Item;
import org.hibernate.jcache.test.domain.Item; import org.hibernate.orm.test.jcache.domain.Person;
import org.hibernate.jcache.test.domain.Person; import org.hibernate.orm.test.jcache.domain.PhoneNumber;
import org.hibernate.jcache.test.domain.PhoneNumber; import org.hibernate.orm.test.jcache.domain.VersionedItem;
import org.hibernate.jcache.test.domain.VersionedItem;
import org.hibernate.stat.CacheRegionStatistics; import org.hibernate.stat.CacheRegionStatistics;
import org.hibernate.stat.QueryStatistics; import org.hibernate.stat.QueryStatistics;
import org.hibernate.stat.Statistics; import org.hibernate.stat.Statistics;
import org.hibernate.testing.junit4.ExtraAssertions; import org.hibernate.testing.orm.junit.ExtraAssertions;
import org.junit.Test; import org.junit.jupiter.api.Test;
import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.equalTo;
import static org.junit.Assert.assertNotNull; import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertThat; import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.Assert.assertTrue; import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.Assert.fail; import static org.junit.jupiter.api.Assertions.fail;
/** /**
* @author Chris Dennis * @author Chris Dennis
@ -41,7 +40,7 @@ import static org.junit.Assert.fail;
*/ */
public class HibernateCacheTest extends BaseFunctionalTest { public class HibernateCacheTest extends BaseFunctionalTest {
@Test @Test
public void testQueryCacheInvalidation() throws Exception { public void testQueryCacheInvalidation() {
Session s = sessionFactory().openSession(); Session s = sessionFactory().openSession();
Transaction t = s.beginTransaction(); Transaction t = s.beginTransaction();
Item i = new Item(); Item i = new Item();
@ -60,7 +59,7 @@ public class HibernateCacheTest extends BaseFunctionalTest {
s = sessionFactory().openSession(); s = sessionFactory().openSession();
t = s.beginTransaction(); t = s.beginTransaction();
i = (Item) s.get( Item.class, i.getId() ); i = s.get( Item.class, i.getId() );
assertThat( slcs.getHitCount(), equalTo( 1L ) ); assertThat( slcs.getHitCount(), equalTo( 1L ) );
assertThat( slcs.getMissCount(), equalTo( 0L ) ); assertThat( slcs.getMissCount(), equalTo( 0L ) );

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test; package org.hibernate.orm.test.jcache;
import javax.persistence.Entity; import javax.persistence.Entity;
import javax.persistence.GeneratedValue; import javax.persistence.GeneratedValue;
@ -19,18 +19,17 @@ import org.hibernate.cache.spi.support.DomainDataRegionTemplate;
import org.hibernate.cfg.AvailableSettings; import org.hibernate.cfg.AvailableSettings;
import org.hibernate.engine.spi.SessionFactoryImplementor; import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.service.ServiceRegistry; import org.hibernate.service.ServiceRegistry;
import org.hibernate.testing.orm.junit.ExtraAssertions;
import org.hibernate.testing.junit4.BaseUnitTestCase; import org.junit.jupiter.api.AfterEach;
import org.hibernate.testing.junit4.ExtraAssertions; import org.junit.jupiter.api.BeforeEach;
import org.junit.After; import org.junit.jupiter.api.Test;
import org.junit.Before;
import org.junit.Test;
import static org.hibernate.testing.transaction.TransactionUtil2.inTransaction; import static org.hibernate.testing.transaction.TransactionUtil2.inTransaction;
import static org.junit.Assert.assertFalse; import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.Assert.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.Assert.assertNull; import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.Assert.assertTrue; import static org.junit.jupiter.api.Assertions.assertTrue;
/** /**
* Tests for handling of data just inserted during a transaction being read from the database * Tests for handling of data just inserted during a transaction being read from the database
@ -39,12 +38,12 @@ import static org.junit.Assert.assertTrue;
* *
* @author Steve Ebersole * @author Steve Ebersole
*/ */
public class InsertedDataTest extends BaseUnitTestCase { public class InsertedDataTest {
private ServiceRegistry serviceRegistry; private ServiceRegistry serviceRegistry;
private SessionFactoryImplementor sessionFactory; private SessionFactoryImplementor sessionFactory;
@Before @BeforeEach
public void acquireResources() { public void acquireResources() {
serviceRegistry = TestHelper.getStandardServiceRegistryBuilder() serviceRegistry = TestHelper.getStandardServiceRegistryBuilder()
.applySetting( AvailableSettings.CACHE_REGION_PREFIX, "" ) .applySetting( AvailableSettings.CACHE_REGION_PREFIX, "" )
@ -59,7 +58,7 @@ public class InsertedDataTest extends BaseUnitTestCase {
sessionFactory = (SessionFactoryImplementor) metadata.buildSessionFactory(); sessionFactory = (SessionFactoryImplementor) metadata.buildSessionFactory();
} }
@After @AfterEach
public void releaseResources() { public void releaseResources() {
if ( sessionFactory != null ) { if ( sessionFactory != null ) {
sessionFactory.close(); sessionFactory.close();
@ -87,9 +86,7 @@ public class InsertedDataTest extends BaseUnitTestCase {
inTransaction( inTransaction(
sessionFactory, sessionFactory,
s -> { s -> s.createQuery( "delete CacheableItem" ).executeUpdate()
s.createQuery( "delete CacheableItem" ).executeUpdate();
}
); );
} }
@ -215,7 +212,7 @@ public class InsertedDataTest extends BaseUnitTestCase {
sessionFactory, sessionFactory,
s -> { s -> {
CacheableItem item = s.get( CacheableItem.class, 1L ); CacheableItem item = s.get( CacheableItem.class, 1L );
assertNull( "it should be null", item ); assertNull( item, "it should be null" );
} }
); );
} }
@ -266,7 +263,7 @@ public class InsertedDataTest extends BaseUnitTestCase {
sessionFactory, sessionFactory,
s -> { s -> {
final CacheableItem item = s.get( CacheableItem.class, 1L ); final CacheableItem item = s.get( CacheableItem.class, 1L );
assertNull( "it should be null", item ); assertNull( item, "it should be null" );
} }
); );
} }

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.test.cache.jcache.config; package org.hibernate.orm.test.jcache;
import java.util.Map; import java.util.Map;
@ -12,6 +12,7 @@ import org.hibernate.cache.jcache.ConfigSettings;
import org.hibernate.cfg.Environment; import org.hibernate.cfg.Environment;
import org.hibernate.testing.junit4.BaseNonConfigCoreFunctionalTestCase; import org.hibernate.testing.junit4.BaseNonConfigCoreFunctionalTestCase;
import org.hibernate.orm.test.jcache.domain.Product;
import org.junit.Test; import org.junit.Test;
import static org.hibernate.testing.transaction.TransactionUtil.doInHibernate; import static org.hibernate.testing.transaction.TransactionUtil.doInHibernate;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.test.cache.jcache.config; package org.hibernate.orm.test.jcache;
import java.util.Map; import java.util.Map;
@ -12,6 +12,7 @@ import org.hibernate.cache.jcache.ConfigSettings;
import org.hibernate.cfg.Environment; import org.hibernate.cfg.Environment;
import org.hibernate.testing.junit4.BaseNonConfigCoreFunctionalTestCase; import org.hibernate.testing.junit4.BaseNonConfigCoreFunctionalTestCase;
import org.hibernate.orm.test.jcache.domain.Product;
import org.junit.Test; import org.junit.Test;
import static org.hibernate.testing.transaction.TransactionUtil.doInHibernate; import static org.hibernate.testing.transaction.TransactionUtil.doInHibernate;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.test.cache.jcache.config; package org.hibernate.orm.test.jcache;
import java.util.Map; import java.util.Map;
@ -12,6 +12,7 @@ import org.hibernate.cache.jcache.ConfigSettings;
import org.hibernate.cfg.Environment; import org.hibernate.cfg.Environment;
import org.hibernate.testing.junit4.BaseNonConfigCoreFunctionalTestCase; import org.hibernate.testing.junit4.BaseNonConfigCoreFunctionalTestCase;
import org.hibernate.orm.test.jcache.domain.Product;
import org.junit.Test; import org.junit.Test;
import static org.hibernate.testing.transaction.TransactionUtil.doInHibernate; import static org.hibernate.testing.transaction.TransactionUtil.doInHibernate;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.test.cache.jcache; package org.hibernate.orm.test.jcache;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test; package org.hibernate.orm.test.jcache;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
@ -15,6 +15,7 @@ import org.hibernate.cache.CacheException;
import org.hibernate.cache.jcache.ConfigSettings; import org.hibernate.cache.jcache.ConfigSettings;
import org.hibernate.cache.spi.SecondLevelCacheLogger; import org.hibernate.cache.spi.SecondLevelCacheLogger;
import org.hibernate.engine.spi.SessionFactoryImplementor; import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.orm.test.jcache.TestHelper;
import org.hibernate.service.spi.ServiceException; import org.hibernate.service.spi.ServiceException;
import org.hibernate.testing.junit4.BaseUnitTestCase; import org.hibernate.testing.junit4.BaseUnitTestCase;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test; package org.hibernate.orm.test.jcache;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
@ -22,32 +22,36 @@ import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
import org.hibernate.cfg.AvailableSettings; import org.hibernate.cfg.AvailableSettings;
import org.hibernate.dialect.CockroachDialect; import org.hibernate.dialect.CockroachDialect;
import org.hibernate.dialect.DerbyDialect; import org.hibernate.dialect.DerbyDialect;
import org.hibernate.dialect.Dialect;
import org.hibernate.dialect.H2Dialect; import org.hibernate.dialect.H2Dialect;
import org.hibernate.dialect.HSQLDialect;
import org.hibernate.dialect.SybaseASEDialect;
import org.hibernate.engine.spi.SessionFactoryImplementor; import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.service.ServiceRegistry; import org.hibernate.service.ServiceRegistry;
import org.hibernate.testing.SkipForDialect;
import org.hibernate.testing.TestForIssue; import org.hibernate.testing.TestForIssue;
import org.hibernate.testing.junit4.BaseUnitTestCase; import org.hibernate.testing.orm.junit.BaseUnitTest;
import org.hibernate.testing.orm.junit.DialectContext; import org.hibernate.testing.orm.junit.DialectContext;
import org.hibernate.testing.orm.junit.SkipForDialect;
import org.hibernate.tool.schema.Action; import org.hibernate.tool.schema.Action;
import org.junit.After;
import org.junit.Before; import org.junit.jupiter.api.AfterEach;
import org.junit.Test; import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import static org.hibernate.testing.transaction.TransactionUtil2.inTransaction; import static org.hibernate.testing.transaction.TransactionUtil2.inTransaction;
import static org.junit.Assert.assertEquals; import static org.junit.jupiter.api.Assertions.assertEquals;
/** /**
* @author Zhenlei Huang * @author Zhenlei Huang
*/ */
@TestForIssue(jiraKey = "HHH-10649") @TestForIssue(jiraKey = "HHH-10649")
public class RefreshUpdatedDataTest extends BaseUnitTestCase { @BaseUnitTest
public class RefreshUpdatedDataTest {
private ServiceRegistry serviceRegistry; private ServiceRegistry serviceRegistry;
private SessionFactoryImplementor sessionFactory; private SessionFactoryImplementor sessionFactory;
@Before @BeforeEach
@SuppressWarnings("unused") @SuppressWarnings("unused")
public void acquireResources() { public void acquireResources() {
final StandardServiceRegistryBuilder ssrb = new StandardServiceRegistryBuilder() final StandardServiceRegistryBuilder ssrb = new StandardServiceRegistryBuilder()
@ -76,7 +80,7 @@ public class RefreshUpdatedDataTest extends BaseUnitTestCase {
sessionFactory = (SessionFactoryImplementor) metadata.buildSessionFactory(); sessionFactory = (SessionFactoryImplementor) metadata.buildSessionFactory();
} }
@After @AfterEach
@SuppressWarnings("unused") @SuppressWarnings("unused")
public void releaseResources() { public void releaseResources() {
if ( sessionFactory != null ) { if ( sessionFactory != null ) {
@ -89,8 +93,10 @@ public class RefreshUpdatedDataTest extends BaseUnitTestCase {
} }
@Test @Test
@SkipForDialect(value = CockroachDialect.class, comment = "does not support nested transactions") @SkipForDialect(dialectClass = CockroachDialect.class, matchSubTypes = true, reason = "does not support nested transactions")
@SkipForDialect(value = DerbyDialect.class, comment = "Derby does not support nested transactions") @SkipForDialect(dialectClass = DerbyDialect.class, matchSubTypes = true, reason = "Derby does not support nested transactions")
@SkipForDialect(dialectClass = SybaseASEDialect.class, matchSubTypes = true)
@SkipForDialect(dialectClass = HSQLDialect.class, matchSubTypes = true)
public void testUpdateAndFlushThenRefresh() { public void testUpdateAndFlushThenRefresh() {
final String BEFORE = "before"; final String BEFORE = "before";

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test; package org.hibernate.orm.test.jcache;
import javax.cache.Cache; import javax.cache.Cache;
@ -13,21 +13,22 @@ import org.hibernate.cache.spi.Region;
import org.hibernate.cache.spi.support.DomainDataRegionTemplate; import org.hibernate.cache.spi.support.DomainDataRegionTemplate;
import org.hibernate.engine.spi.SessionFactoryImplementor; import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.testing.junit4.BaseUnitTestCase; import org.hibernate.testing.orm.junit.BaseUnitTest;
import org.junit.Test; import org.junit.jupiter.api.Test;
import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.CoreMatchers.nullValue; import static org.hamcrest.CoreMatchers.nullValue;
import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.MatcherAssert.assertThat;
import static org.hibernate.testing.transaction.TransactionUtil2.inSession; import static org.hibernate.testing.transaction.TransactionUtil2.inSession;
import static org.junit.Assert.fail; import static org.junit.jupiter.api.Assertions.fail;
/** /**
* Tests around {@link org.hibernate.cache.jcache.internal.JCacheAccessImpl} * Tests around {@link org.hibernate.cache.jcache.internal.JCacheAccessImpl}
* *
* @author Steve Ebersole * @author Steve Ebersole
*/ */
public class StorageAccessTest extends BaseUnitTestCase { @BaseUnitTest
public class StorageAccessTest {
/** /**
* Sort of the inverse test of {@link MissingCacheStrategyTest#testMissingCacheStrategyFail()}. * Sort of the inverse test of {@link MissingCacheStrategyTest#testMissingCacheStrategyFail()}.

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test; package org.hibernate.orm.test.jcache;
import java.util.Arrays; import java.util.Arrays;
import java.util.HashSet; import java.util.HashSet;
@ -26,9 +26,9 @@ import org.hibernate.cfg.AvailableSettings;
import org.hibernate.dialect.Dialect; import org.hibernate.dialect.Dialect;
import org.hibernate.dialect.H2Dialect; import org.hibernate.dialect.H2Dialect;
import org.hibernate.engine.spi.SessionFactoryImplementor; import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.jcache.test.domain.Item; import org.hibernate.orm.test.jcache.domain.Item;
import org.hibernate.jcache.test.domain.VersionedItem; import org.hibernate.orm.test.jcache.domain.VersionedItem;
import org.hibernate.jcache.test.domain.Event; import org.hibernate.orm.test.jcache.domain.Event;
import org.hibernate.mapping.Collection; import org.hibernate.mapping.Collection;
import org.hibernate.mapping.PersistentClass; import org.hibernate.mapping.PersistentClass;
import org.hibernate.tool.schema.Action; import org.hibernate.tool.schema.Action;
@ -45,7 +45,7 @@ public class TestHelper {
Event.class.getName() Event.class.getName()
}; };
public static String[] collectionRegionNames = new String[] { public static String[] collectionRegionNames = new String[] {
org.hibernate.jcache.test.domain.Event.class.getName() + ".participants" Event.class.getName() + ".participants"
}; };
public static String[] allDomainRegionNames = public static String[] allDomainRegionNames =
@ -117,7 +117,7 @@ public class TestHelper {
.applySetting( AvailableSettings.HBM2DDL_AUTO, "create-drop" ); .applySetting( AvailableSettings.HBM2DDL_AUTO, "create-drop" );
if ( H2Dialect.class.equals( Dialect.getDialect().getClass() ) ) { if ( H2Dialect.class.equals( Dialect.getDialect().getClass() ) ) {
ssrb.applySetting( AvailableSettings.URL, "jdbc:h2:mem:db-mvcc;MVCC=true" ); ssrb.applySetting( AvailableSettings.URL, "jdbc:h2:mem:db-mvcc" );
} }
return ssrb; return ssrb;
} }

View File

@ -5,7 +5,7 @@
* See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test.domain; package org.hibernate.orm.test.jcache.domain;
public class Account { public class Account {

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test.domain; package org.hibernate.orm.test.jcache.domain;
import java.util.Date; import java.util.Date;
import java.util.HashSet; import java.util.HashSet;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test.domain; package org.hibernate.orm.test.jcache.domain;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Date; import java.util.Date;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test.domain; package org.hibernate.orm.test.jcache.domain;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test.domain; package org.hibernate.orm.test.jcache.domain;
public class Item { public class Item {
private Long id; private Long id;

View File

@ -5,7 +5,7 @@
* See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test.domain; package org.hibernate.orm.test.jcache.domain;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashSet; import java.util.HashSet;

View File

@ -5,7 +5,7 @@
* See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test.domain; package org.hibernate.orm.test.jcache.domain;
import java.io.Serializable; import java.io.Serializable;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.test.cache.jcache.config; package org.hibernate.orm.test.jcache.domain;
import javax.persistence.Entity; import javax.persistence.Entity;
import javax.persistence.GeneratedValue; import javax.persistence.GeneratedValue;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test.domain; package org.hibernate.orm.test.jcache.domain;
public class UuidItem { public class UuidItem {
private String id; private String id;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later * 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 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/ */
package org.hibernate.jcache.test.domain; package org.hibernate.orm.test.jcache.domain;
public class VersionedItem extends Item { public class VersionedItem extends Item {
private Long version; private Long version;

View File

@ -11,12 +11,12 @@
<hibernate-mapping> <hibernate-mapping>
<class name="org.hibernate.jcache.test.domain.Account" table="ACCOUNT" lazy="false"> <class name="org.hibernate.orm.test.jcache.domain.Account" table="ACCOUNT" lazy="false">
<id name="id" column="ACCOUNT_ID"> <id name="id" column="ACCOUNT_ID">
<generator class="native"/> <generator class="native"/>
</id> </id>
<many-to-one name="person" class="org.hibernate.jcache.test.domain.Person" cascade="save-update,lock" <many-to-one name="person" class="org.hibernate.orm.test.jcache.domain.Person" cascade="save-update,lock"
column="person_id" column="person_id"
unique="true" unique="true"
not-null="true"/> not-null="true"/>

View File

@ -11,21 +11,21 @@
<hibernate-mapping> <hibernate-mapping>
<class name="org.hibernate.jcache.test.domain.Event" table="EVENTS"> <class name="org.hibernate.orm.test.jcache.domain.Event" table="EVENTS">
<cache usage="read-write"/> <cache usage="read-write"/>
<id name="id" column="EVENT_ID"> <id name="id" column="EVENT_ID">
<generator class="native"/> <generator class="native"/>
</id> </id>
<property name="date" type="timestamp" column="EVENT_DATE"/> <property name="date" type="timestamp" column="EVENT_DATE"/>
<property name="title"/> <property name="title"/>
<many-to-one name="organizer" column="EVENT_ORGANIZER" class="org.hibernate.jcache.test.domain.Person"/> <many-to-one name="organizer" column="EVENT_ORGANIZER" class="org.hibernate.orm.test.jcache.domain.Person"/>
<set name="participants" table="PERSON_EVENT" lazy="false" <set name="participants" table="PERSON_EVENT" lazy="false"
inverse="true" cascade="lock"> inverse="true" cascade="lock">
<cache usage="read-write"/> <cache usage="read-write"/>
<key column="EVENT_ID"/> <key column="EVENT_ID"/>
<many-to-many column="PERSON_ID" <many-to-many column="PERSON_ID"
class="org.hibernate.jcache.test.domain.Person"/> class="org.hibernate.orm.test.jcache.domain.Person"/>
</set> </set>
</class> </class>

View File

@ -11,7 +11,7 @@
<hibernate-mapping> <hibernate-mapping>
<class name="org.hibernate.jcache.test.domain.HolidayCalendar" table="CALENDAR" lazy="false"> <class name="org.hibernate.orm.test.jcache.domain.HolidayCalendar" table="CALENDAR" lazy="false">
<id name="id" column="CALENDAR_ID"> <id name="id" column="CALENDAR_ID">
<generator class="native"/> <generator class="native"/>
</id> </id>

View File

@ -9,7 +9,7 @@
"-//Hibernate/Hibernate Mapping DTD 3.0//EN" "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="org.hibernate.jcache.test.domain"> <hibernate-mapping package="org.hibernate.orm.test.jcache.domain">
<class name="Item" table="Items"> <class name="Item" table="Items">

View File

@ -11,7 +11,7 @@
<hibernate-mapping> <hibernate-mapping>
<class name="org.hibernate.jcache.test.domain.Person" table="PERSON" lazy="true"> <class name="org.hibernate.orm.test.jcache.domain.Person" table="PERSON" lazy="true">
<id name="id" column="PERSON_ID"> <id name="id" column="PERSON_ID">
<generator class="native"/> <generator class="native"/>
</id> </id>
@ -22,7 +22,7 @@
<list name="events" table="PERSON_EVENT" lazy="true"> <list name="events" table="PERSON_EVENT" lazy="true">
<key column="PERSON_ID"/> <key column="PERSON_ID"/>
<list-index column="EVENT_ORDER"/> <list-index column="EVENT_ORDER"/>
<many-to-many column="EVENT_ID" class="org.hibernate.jcache.test.domain.Event"/> <many-to-many column="EVENT_ID" class="org.hibernate.orm.test.jcache.domain.Event"/>
</list> </list>
<bag name="talismans" table="PERSON_TALISMAN" lazy="true"> <bag name="talismans" table="PERSON_TALISMAN" lazy="true">
@ -37,7 +37,7 @@
<set name="phoneNumbers" cascade="all" lazy="true"> <set name="phoneNumbers" cascade="all" lazy="true">
<key column="PERSON_ID"/> <key column="PERSON_ID"/>
<one-to-many class="org.hibernate.jcache.test.domain.PhoneNumber"/> <one-to-many class="org.hibernate.orm.test.jcache.domain.PhoneNumber"/>
</set> </set>

View File

@ -11,7 +11,7 @@
<hibernate-mapping> <hibernate-mapping>
<class name="org.hibernate.jcache.test.domain.PhoneNumber" table="PHONE_NUMBERS"> <class name="org.hibernate.orm.test.jcache.domain.PhoneNumber" table="PHONE_NUMBERS">
<composite-id> <composite-id>
<key-property column="PERSON_ID" name="personId" type="java.lang.Long"/> <key-property column="PERSON_ID" name="personId" type="java.lang.Long"/>
<key-property column="NUMBER_TYPE" name="numberType" type="java.lang.String"/> <key-property column="NUMBER_TYPE" name="numberType" type="java.lang.String"/>

View File

@ -6,7 +6,7 @@
<cache alias="ready-cache"> <cache alias="ready-cache">
<key-type>java.lang.Long</key-type> <key-type>java.lang.Long</key-type>
<value-type>org.hibernate.test.cache.jcache.config.Product</value-type> <value-type>org.hibernate.orm.test.jcache.domain.Product</value-type>
<heap unit="entries">100</heap> <heap unit="entries">100</heap>
</cache> </cache>