[jbosscache-commits] JBoss Cache SVN: r6732 - core/trunk/src/test/java/org/jboss/cache/profiling.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Tue Sep 16 06:28:05 EDT 2008


Author: manik.surtani at jboss.com
Date: 2008-09-16 06:28:05 -0400 (Tue, 16 Sep 2008)
New Revision: 6732

Modified:
   core/trunk/src/test/java/org/jboss/cache/profiling/AbstractProfileTest.java
   core/trunk/src/test/java/org/jboss/cache/profiling/ProfileSlaveTest.java
   core/trunk/src/test/java/org/jboss/cache/profiling/ProfileTest.java
Log:
Updated tests

Modified: core/trunk/src/test/java/org/jboss/cache/profiling/AbstractProfileTest.java
===================================================================
--- core/trunk/src/test/java/org/jboss/cache/profiling/AbstractProfileTest.java	2008-09-16 10:19:33 UTC (rev 6731)
+++ core/trunk/src/test/java/org/jboss/cache/profiling/AbstractProfileTest.java	2008-09-16 10:28:05 UTC (rev 6732)
@@ -108,6 +108,6 @@
             "         <pbcast.FLUSH timeout=\"0\"/>\n" +
             "      </jgroupsConfig>";
 
-      return new JGroupsStackParser().parseClusterConfigXml(XmlConfigHelper.stringToElement(tcp));
+      return new JGroupsStackParser().parseClusterConfigXml(XmlConfigHelper.stringToElement(udp));
    }
 }

Modified: core/trunk/src/test/java/org/jboss/cache/profiling/ProfileSlaveTest.java
===================================================================
--- core/trunk/src/test/java/org/jboss/cache/profiling/ProfileSlaveTest.java	2008-09-16 10:19:33 UTC (rev 6731)
+++ core/trunk/src/test/java/org/jboss/cache/profiling/ProfileSlaveTest.java	2008-09-16 10:28:05 UTC (rev 6732)
@@ -37,9 +37,9 @@
       cache.getConfiguration().setNodeLockingScheme(Configuration.NodeLockingScheme.MVCC);
       cache.getConfiguration().setCacheMode(Configuration.CacheMode.REPL_ASYNC);
       cache.getConfiguration().setConcurrencyLevel(500);
-      cache.getConfiguration().setIsolationLevel(IsolationLevel.READ_COMMITTED);
+//      cache.getConfiguration().setIsolationLevel(IsolationLevel.READ_COMMITTED);
       cache.getConfiguration().setClusterConfig(getJGroupsConfig());
-//      cache.getConfiguration().setIsolationLevel(IsolationLevel.REPEATABLE_READ);
+      cache.getConfiguration().setIsolationLevel(IsolationLevel.REPEATABLE_READ);
       cache.start();
       waitForTest();
    }
@@ -80,8 +80,8 @@
       cache.getConfiguration().setBuddyReplicationConfig(brc);
       cache.getConfiguration().setNodeLockingScheme(Configuration.NodeLockingScheme.MVCC);
       cache.getConfiguration().setConcurrencyLevel(500);
-      cache.getConfiguration().setIsolationLevel(IsolationLevel.READ_COMMITTED);
-//      cache.getConfiguration().setIsolationLevel(IsolationLevel.REPEATABLE_READ);      
+//      cache.getConfiguration().setIsolationLevel(IsolationLevel.READ_COMMITTED);
+      cache.getConfiguration().setIsolationLevel(IsolationLevel.REPEATABLE_READ);
       testReplAsync();
    }
 

Modified: core/trunk/src/test/java/org/jboss/cache/profiling/ProfileTest.java
===================================================================
--- core/trunk/src/test/java/org/jboss/cache/profiling/ProfileTest.java	2008-09-16 10:19:33 UTC (rev 6731)
+++ core/trunk/src/test/java/org/jboss/cache/profiling/ProfileTest.java	2008-09-16 10:28:05 UTC (rev 6732)
@@ -37,7 +37,7 @@
    /*
       Test configuration options
     */
-   protected static final long NUM_OPERATIONS = 1000000; // DURATION is replaced with a fixed number of operations instead.
+   protected static final long NUM_OPERATIONS = 500000; // DURATION is replaced with a fixed number of operations instead.
    protected static final int NUM_THREADS = 15;
    protected static final int MAX_RANDOM_SLEEP_MILLIS = 1;
    protected static final int MAX_DEPTH = 3;
@@ -56,8 +56,8 @@
       cache.getConfiguration().setCacheMode(Configuration.CacheMode.LOCAL);
       cache.getConfiguration().setNodeLockingScheme(Configuration.NodeLockingScheme.MVCC);
       cache.getConfiguration().setConcurrencyLevel(500);
-//      cache.getConfiguration().setIsolationLevel(IsolationLevel.READ_COMMITTED);
-      cache.getConfiguration().setIsolationLevel(IsolationLevel.REPEATABLE_READ);
+      cache.getConfiguration().setIsolationLevel(IsolationLevel.READ_COMMITTED);
+//      cache.getConfiguration().setIsolationLevel(IsolationLevel.REPEATABLE_READ);
       runCompleteTest();
    }
 
@@ -82,9 +82,9 @@
       cache.getConfiguration().setNodeLockingScheme(Configuration.NodeLockingScheme.MVCC);
       cache.getConfiguration().setCacheMode(Configuration.CacheMode.REPL_ASYNC);
       cache.getConfiguration().setConcurrencyLevel(500);
-      cache.getConfiguration().setIsolationLevel(IsolationLevel.READ_COMMITTED);
+//      cache.getConfiguration().setIsolationLevel(IsolationLevel.READ_COMMITTED);
       cache.getConfiguration().setClusterConfig(getJGroupsConfig());
-//      cache.getConfiguration().setIsolationLevel(IsolationLevel.REPEATABLE_READ);
+      cache.getConfiguration().setIsolationLevel(IsolationLevel.REPEATABLE_READ);
       runCompleteTest();
    }
 




More information about the jbosscache-commits mailing list