HHH-6626 ignore PutFromLoadValidatorUnitTestCase for now

This commit is contained in:
Strong Liu 2011-10-14 15:16:02 +08:00
parent fbc105aef1
commit 0f1d6c189b
3 changed files with 67 additions and 66 deletions

View File

@ -21,7 +21,7 @@
*/ */
package org.hibernate.test.cache.infinispan; package org.hibernate.test.cache.infinispan;
import java.util.Properties; import java.util.Properties;
import junit.framework.TestCase; import static org.junit.Assert.*;
import org.hibernate.cache.CacheException; import org.hibernate.cache.CacheException;
import org.hibernate.cache.infinispan.InfinispanRegionFactory; import org.hibernate.cache.infinispan.InfinispanRegionFactory;
import org.hibernate.cache.infinispan.collection.CollectionRegionImpl; import org.hibernate.cache.infinispan.collection.CollectionRegionImpl;
@ -34,6 +34,7 @@ import org.infinispan.config.Configuration.CacheMode;
import org.infinispan.eviction.EvictionStrategy; import org.infinispan.eviction.EvictionStrategy;
import org.infinispan.manager.DefaultCacheManager; import org.infinispan.manager.DefaultCacheManager;
import org.infinispan.manager.EmbeddedCacheManager; import org.infinispan.manager.EmbeddedCacheManager;
import org.junit.Test;
/** /**
* InfinispanRegionFactoryTestCase. * InfinispanRegionFactoryTestCase.
@ -41,8 +42,8 @@ import org.infinispan.manager.EmbeddedCacheManager;
* @author Galder Zamarreño * @author Galder Zamarreño
* @since 3.5 * @since 3.5
*/ */
public class InfinispanRegionFactoryTestCase extends TestCase { public class InfinispanRegionFactoryTestCase {
@Test
public void testConfigurationProcessing() { public void testConfigurationProcessing() {
final String person = "com.acme.Person"; final String person = "com.acme.Person";
final String addresses = "com.acme.Person.addresses"; final String addresses = "com.acme.Person.addresses";
@ -84,7 +85,7 @@ public class InfinispanRegionFactoryTestCase extends TestCase {
assertEquals(3000, factory.getTypeOverrides().get("query").getEvictionWakeUpInterval()); assertEquals(3000, factory.getTypeOverrides().get("query").getEvictionWakeUpInterval());
assertEquals(10000, factory.getTypeOverrides().get("query").getEvictionMaxEntries()); assertEquals(10000, factory.getTypeOverrides().get("query").getEvictionMaxEntries());
} }
@Test
public void testBuildEntityCollectionRegionsPersonPlusEntityCollectionOverrides() { public void testBuildEntityCollectionRegionsPersonPlusEntityCollectionOverrides() {
final String person = "com.acme.Person"; final String person = "com.acme.Person";
final String address = "com.acme.Address"; final String address = "com.acme.Address";
@ -198,7 +199,7 @@ public class InfinispanRegionFactoryTestCase extends TestCase {
factory.stop(); factory.stop();
} }
} }
@Test
public void testBuildEntityCollectionRegionOverridesOnly() { public void testBuildEntityCollectionRegionOverridesOnly() {
CacheAdapter cache = null; CacheAdapter cache = null;
Properties p = new Properties(); Properties p = new Properties();
@ -233,7 +234,7 @@ public class InfinispanRegionFactoryTestCase extends TestCase {
factory.stop(); factory.stop();
} }
} }
@Test
public void testBuildEntityRegionPersonPlusEntityOverridesWithoutCfg() { public void testBuildEntityRegionPersonPlusEntityOverridesWithoutCfg() {
final String person = "com.acme.Person"; final String person = "com.acme.Person";
Properties p = new Properties(); Properties p = new Properties();
@ -266,7 +267,7 @@ public class InfinispanRegionFactoryTestCase extends TestCase {
factory.stop(); factory.stop();
} }
} }
@Test
public void testTimestampValidation() { public void testTimestampValidation() {
Properties p = new Properties(); Properties p = new Properties();
final DefaultCacheManager manager = new DefaultCacheManager(); final DefaultCacheManager manager = new DefaultCacheManager();
@ -285,7 +286,7 @@ public class InfinispanRegionFactoryTestCase extends TestCase {
} catch(CacheException ce) { } catch(CacheException ce) {
} }
} }
@Test
public void testBuildDefaultTimestampsRegion() { public void testBuildDefaultTimestampsRegion() {
final String timestamps = "org.hibernate.cache.spi.UpdateTimestampsCache"; final String timestamps = "org.hibernate.cache.spi.UpdateTimestampsCache";
Properties p = new Properties(); Properties p = new Properties();
@ -309,7 +310,7 @@ public class InfinispanRegionFactoryTestCase extends TestCase {
factory.stop(); factory.stop();
} }
} }
@Test
public void testBuildDiffCacheNameTimestampsRegion() { public void testBuildDiffCacheNameTimestampsRegion() {
final String timestamps = "org.hibernate.cache.spi.UpdateTimestampsCache"; final String timestamps = "org.hibernate.cache.spi.UpdateTimestampsCache";
Properties p = new Properties(); Properties p = new Properties();
@ -336,7 +337,7 @@ public class InfinispanRegionFactoryTestCase extends TestCase {
factory.stop(); factory.stop();
} }
} }
@Test
public void testBuildTimestamRegionWithCacheNameOverride() { public void testBuildTimestamRegionWithCacheNameOverride() {
final String timestamps = "org.hibernate.cache.spi.UpdateTimestampsCache"; final String timestamps = "org.hibernate.cache.spi.UpdateTimestampsCache";
Properties p = new Properties(); Properties p = new Properties();
@ -352,7 +353,7 @@ public class InfinispanRegionFactoryTestCase extends TestCase {
factory.stop(); factory.stop();
} }
} }
@Test
public void testBuildTimestamRegionWithFifoEvictionOverride() { public void testBuildTimestamRegionWithFifoEvictionOverride() {
final String timestamps = "org.hibernate.cache.spi.UpdateTimestampsCache"; final String timestamps = "org.hibernate.cache.spi.UpdateTimestampsCache";
Properties p = new Properties(); Properties p = new Properties();
@ -373,7 +374,7 @@ public class InfinispanRegionFactoryTestCase extends TestCase {
factory.stop(); factory.stop();
} }
} }
@Test
public void testBuildTimestamRegionWithNoneEvictionOverride() { public void testBuildTimestamRegionWithNoneEvictionOverride() {
final String timestamps = "org.hibernate.cache.spi.UpdateTimestampsCache"; final String timestamps = "org.hibernate.cache.spi.UpdateTimestampsCache";
Properties p = new Properties(); Properties p = new Properties();
@ -392,7 +393,7 @@ public class InfinispanRegionFactoryTestCase extends TestCase {
factory.stop(); factory.stop();
} }
} }
@Test
public void testBuildQueryRegion() { public void testBuildQueryRegion() {
final String query = "org.hibernate.cache.internal.StandardQueryCache"; final String query = "org.hibernate.cache.internal.StandardQueryCache";
Properties p = new Properties(); Properties p = new Properties();
@ -411,7 +412,7 @@ public class InfinispanRegionFactoryTestCase extends TestCase {
factory.stop(); factory.stop();
} }
} }
@Test
public void testBuildQueryRegionWithCustomRegionName() { public void testBuildQueryRegionWithCustomRegionName() {
final String queryRegionName = "myquery"; final String queryRegionName = "myquery";
Properties p = new Properties(); Properties p = new Properties();
@ -437,7 +438,7 @@ public class InfinispanRegionFactoryTestCase extends TestCase {
factory.stop(); factory.stop();
} }
} }
@Test
public void testEnableStatistics() { public void testEnableStatistics() {
Properties p = new Properties(); Properties p = new Properties();
p.setProperty("hibernate.cache.infinispan.statistics", "true"); p.setProperty("hibernate.cache.infinispan.statistics", "true");
@ -485,7 +486,7 @@ public class InfinispanRegionFactoryTestCase extends TestCase {
factory.stop(); factory.stop();
} }
} }
@Test
public void testDisableStatistics() { public void testDisableStatistics() {
Properties p = new Properties(); Properties p = new Properties();
p.setProperty("hibernate.cache.infinispan.statistics", "false"); p.setProperty("hibernate.cache.infinispan.statistics", "false");

View File

@ -1,6 +1,7 @@
package org.hibernate.test.cache.infinispan; package org.hibernate.test.cache.infinispan;
import java.util.Properties; import java.util.Properties;
import junit.framework.TestCase; import org.junit.Test;
import org.hibernate.cfg.SettingsFactory; import org.hibernate.cfg.SettingsFactory;
/** /**
@ -9,8 +10,8 @@ import org.hibernate.cfg.SettingsFactory;
* @author Galder Zamarreño * @author Galder Zamarreño
* @since 3.5 * @since 3.5
*/ */
public class JndiInfinispanRegionFactoryTestCase extends TestCase { public class JndiInfinispanRegionFactoryTestCase {
@Test
public void testConstruction() { public void testConstruction() {
Properties p = new Properties(); Properties p = new Properties();
p.setProperty("hibernate.cache.region.factory_class", "org.hibernate.cache.infinispan.JndiInfinispanRegionFactory"); p.setProperty("hibernate.cache.region.factory_class", "org.hibernate.cache.infinispan.JndiInfinispanRegionFactory");

View File

@ -34,8 +34,12 @@ import java.util.concurrent.atomic.AtomicReference;
import javax.transaction.Transaction; import javax.transaction.Transaction;
import javax.transaction.TransactionManager; import javax.transaction.TransactionManager;
import junit.framework.Assert; import org.junit.After;
import junit.framework.TestCase; import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import static org.junit.Assert.*;
import org.hibernate.cache.infinispan.access.PutFromLoadValidator; import org.hibernate.cache.infinispan.access.PutFromLoadValidator;
import org.hibernate.test.cache.infinispan.functional.cluster.DualNodeJtaTransactionManagerImpl; import org.hibernate.test.cache.infinispan.functional.cluster.DualNodeJtaTransactionManagerImpl;
@ -46,39 +50,32 @@ import org.hibernate.test.cache.infinispan.functional.cluster.DualNodeJtaTransac
* @author Galder Zamarreño * @author Galder Zamarreño
* @version $Revision: $ * @version $Revision: $
*/ */
public class PutFromLoadValidatorUnitTestCase extends TestCase { @Ignore
public class PutFromLoadValidatorUnitTestCase {
private Object KEY1 = "KEY1"; private Object KEY1 = "KEY1";
private TransactionManager tm; private TransactionManager tm;
public PutFromLoadValidatorUnitTestCase(String name) { @Before
super(name); public void setUp() throws Exception {
}
@Override
protected void setUp() throws Exception {
super.setUp();
tm = DualNodeJtaTransactionManagerImpl.getInstance("test"); tm = DualNodeJtaTransactionManagerImpl.getInstance("test");
} }
@Override @After
protected void tearDown() throws Exception { public void tearDown() throws Exception {
try {
super.tearDown();
} finally {
tm = null; tm = null;
try { try {
DualNodeJtaTransactionManagerImpl.cleanupTransactions(); DualNodeJtaTransactionManagerImpl.cleanupTransactions();
} finally { }
finally {
DualNodeJtaTransactionManagerImpl.cleanupTransactionManagers(); DualNodeJtaTransactionManagerImpl.cleanupTransactionManagers();
} }
} }
} @Test
public void testNakedPut() throws Exception { public void testNakedPut() throws Exception {
nakedPutTest(false); nakedPutTest(false);
} }
@Test
public void testNakedPutTransactional() throws Exception { public void testNakedPutTransactional() throws Exception {
nakedPutTest(true); nakedPutTest(true);
} }
@ -98,11 +95,11 @@ public class PutFromLoadValidatorUnitTestCase extends TestCase {
} }
} }
} }
@Test
public void testRegisteredPut() throws Exception { public void testRegisteredPut() throws Exception {
registeredPutTest(false); registeredPutTest(false);
} }
@Test
public void testRegisteredPutTransactional() throws Exception { public void testRegisteredPutTransactional() throws Exception {
registeredPutTest(true); registeredPutTest(true);
} }
@ -125,19 +122,19 @@ public class PutFromLoadValidatorUnitTestCase extends TestCase {
} }
} }
} }
@Test
public void testNakedPutAfterKeyRemoval() throws Exception { public void testNakedPutAfterKeyRemoval() throws Exception {
nakedPutAfterRemovalTest(false, false); nakedPutAfterRemovalTest(false, false);
} }
@Test
public void testNakedPutAfterKeyRemovalTransactional() throws Exception { public void testNakedPutAfterKeyRemovalTransactional() throws Exception {
nakedPutAfterRemovalTest(true, false); nakedPutAfterRemovalTest(true, false);
} }
@Test
public void testNakedPutAfterRegionRemoval() throws Exception { public void testNakedPutAfterRegionRemoval() throws Exception {
nakedPutAfterRemovalTest(false, true); nakedPutAfterRemovalTest(false, true);
} }
@Test
public void testNakedPutAfterRegionRemovalTransactional() throws Exception { public void testNakedPutAfterRegionRemovalTransactional() throws Exception {
nakedPutAfterRemovalTest(true, true); nakedPutAfterRemovalTest(true, true);
} }
@ -165,19 +162,19 @@ public class PutFromLoadValidatorUnitTestCase extends TestCase {
} }
} }
} }
@Test
public void testRegisteredPutAfterKeyRemoval() throws Exception { public void testRegisteredPutAfterKeyRemoval() throws Exception {
registeredPutAfterRemovalTest(false, false); registeredPutAfterRemovalTest(false, false);
} }
@Test
public void testRegisteredPutAfterKeyRemovalTransactional() throws Exception { public void testRegisteredPutAfterKeyRemovalTransactional() throws Exception {
registeredPutAfterRemovalTest(true, false); registeredPutAfterRemovalTest(true, false);
} }
@Test
public void testRegisteredPutAfterRegionRemoval() throws Exception { public void testRegisteredPutAfterRegionRemoval() throws Exception {
registeredPutAfterRemovalTest(false, true); registeredPutAfterRemovalTest(false, true);
} }
@Test
public void testRegisteredPutAfterRegionRemovalTransactional() throws Exception { public void testRegisteredPutAfterRegionRemovalTransactional() throws Exception {
registeredPutAfterRemovalTest(true, true); registeredPutAfterRemovalTest(true, true);
} }
@ -206,19 +203,19 @@ public class PutFromLoadValidatorUnitTestCase extends TestCase {
} }
} }
} }
@Test
public void testRegisteredPutWithInterveningKeyRemoval() throws Exception { public void testRegisteredPutWithInterveningKeyRemoval() throws Exception {
registeredPutWithInterveningRemovalTest(false, false); registeredPutWithInterveningRemovalTest(false, false);
} }
@Test
public void testRegisteredPutWithInterveningKeyRemovalTransactional() throws Exception { public void testRegisteredPutWithInterveningKeyRemovalTransactional() throws Exception {
registeredPutWithInterveningRemovalTest(true, false); registeredPutWithInterveningRemovalTest(true, false);
} }
@Test
public void testRegisteredPutWithInterveningRegionRemoval() throws Exception { public void testRegisteredPutWithInterveningRegionRemoval() throws Exception {
registeredPutWithInterveningRemovalTest(false, true); registeredPutWithInterveningRemovalTest(false, true);
} }
@Test
public void testRegisteredPutWithInterveningRegionRemovalTransactional() throws Exception { public void testRegisteredPutWithInterveningRegionRemovalTransactional() throws Exception {
registeredPutWithInterveningRemovalTest(true, true); registeredPutWithInterveningRemovalTest(true, true);
} }
@ -247,19 +244,19 @@ public class PutFromLoadValidatorUnitTestCase extends TestCase {
} }
} }
} }
@Test
public void testDelayedNakedPutAfterKeyRemoval() throws Exception { public void testDelayedNakedPutAfterKeyRemoval() throws Exception {
delayedNakedPutAfterRemovalTest(false, false); delayedNakedPutAfterRemovalTest(false, false);
} }
@Test
public void testDelayedNakedPutAfterKeyRemovalTransactional() throws Exception { public void testDelayedNakedPutAfterKeyRemovalTransactional() throws Exception {
delayedNakedPutAfterRemovalTest(true, false); delayedNakedPutAfterRemovalTest(true, false);
} }
@Test
public void testDelayedNakedPutAfterRegionRemoval() throws Exception { public void testDelayedNakedPutAfterRegionRemoval() throws Exception {
delayedNakedPutAfterRemovalTest(false, true); delayedNakedPutAfterRemovalTest(false, true);
} }
@Test
public void testDelayedNakedPutAfterRegionRemovalTransactional() throws Exception { public void testDelayedNakedPutAfterRegionRemovalTransactional() throws Exception {
delayedNakedPutAfterRemovalTest(true, true); delayedNakedPutAfterRemovalTest(true, true);
} }
@ -287,11 +284,11 @@ public class PutFromLoadValidatorUnitTestCase extends TestCase {
} }
} }
} }
@Test
public void testMultipleRegistrations() throws Exception { public void testMultipleRegistrations() throws Exception {
multipleRegistrationtest(false); multipleRegistrationtest(false);
} }
@Test
public void testMultipleRegistrationsTransactional() throws Exception { public void testMultipleRegistrationsTransactional() throws Exception {
multipleRegistrationtest(true); multipleRegistrationtest(true);
} }
@ -351,6 +348,7 @@ public class PutFromLoadValidatorUnitTestCase extends TestCase {
* *
* @throws Exception * @throws Exception
*/ */
@Test
public void testRemovalCleanup() throws Exception { public void testRemovalCleanup() throws Exception {
TestValidator testee = new TestValidator(null, 200, 1000, 500, 10000); TestValidator testee = new TestValidator(null, 200, 1000, 500, 10000);
testee.invalidateKey("KEY1"); testee.invalidateKey("KEY1");
@ -372,7 +370,7 @@ public class PutFromLoadValidatorUnitTestCase extends TestCase {
} }
else { else {
if ( System.currentTimeMillis() > timeoutMilestone ) { if ( System.currentTimeMillis() > timeoutMilestone ) {
Assert.fail("condition not reached after " + timeout + " milliseconds. giving up!"); fail( "condition not reached after " + timeout + " milliseconds. giving up!" );
} }
Thread.sleep(20); Thread.sleep(20);
} }
@ -384,6 +382,7 @@ public class PutFromLoadValidatorUnitTestCase extends TestCase {
* *
* @throws Exception * @throws Exception
*/ */
@Test
public void testPendingPutCleanup() throws Exception { public void testPendingPutCleanup() throws Exception {
TestValidator testee = new TestValidator(tm, 5000, 600, 300, 900); TestValidator testee = new TestValidator(tm, 5000, 600, 300, 900);
@ -493,11 +492,11 @@ public class PutFromLoadValidatorUnitTestCase extends TestCase {
assertTrue(testee.acquirePutFromLoadLock("7")); assertTrue(testee.acquirePutFromLoadLock("7"));
testee.releasePutFromLoadLock("7"); testee.releasePutFromLoadLock("7");
} }
@Test
public void testInvalidateKeyBlocksForInProgressPut() throws Exception { public void testInvalidateKeyBlocksForInProgressPut() throws Exception {
invalidationBlocksForInProgressPutTest(true); invalidationBlocksForInProgressPutTest(true);
} }
@Test
public void testInvalidateRegionBlocksForInProgressPut() throws Exception { public void testInvalidateRegionBlocksForInProgressPut() throws Exception {
invalidationBlocksForInProgressPutTest(false); invalidationBlocksForInProgressPutTest(false);
} }