package org.infinispan.profiling; import org.infinispan.notifications.Listener; import org.infinispan.notifications.cachemanagerlistener.annotation.ViewChanged; import org.infinispan.notifications.cachemanagerlistener.event.ViewChangedEvent; import org.infinispan.test.TestingUtil; import org.testng.annotations.Test; @Test(groups = "profiling", testName = "profiling.TestProfileSlave") public class TestProfileSlave extends AbstractProfileTest { public static void main(String[] args) throws Exception { TestProfileSlave pst = new TestProfileSlave(); pst.startedInCmdLine = true; String mode = args[0]; try { pst.testWith(mode); } finally { pst.destroyAfterMethod(); pst.destroyAfterClass(); } } public void testReplSync() throws Exception { testWith(REPL_SYNC_CACHE_NAME); } public void testReplAsync() throws Exception { testWith(REPL_ASYNC_CACHE_NAME); } public void testDistSync() throws Exception { testWith(DIST_SYNC_CACHE_NAME); } public void testDistAsync() throws Exception { testWith(DIST_ASYNC_CACHE_NAME); } public void testDistSyncL1() throws Exception { testWith(DIST_SYNC_L1_CACHE_NAME); } public void testDistAsyncL1() throws Exception { testWith(DIST_ASYNC_L1_CACHE_NAME); } private void waitForTest() throws Exception { Thread t = new Thread("CompletionThread") { @Override public void run() { try { while (true) Thread.sleep(10000); } catch (Exception e) { } } }; // attach a view change listener cacheManager.addListener(new ShutdownHook(t)); t.setDaemon(true); t.start(); try { t.join(); } catch (InterruptedException ie) { // move on... } } private void doTest() { // trigger for JProfiler } protected void testWith(String cachename) throws Exception { log.warnf("Starting slave, cache name = %s", cachename); initTest(); cache = cacheManager.getCache(cachename); System.out.println("Waiting for members to join."); TestingUtil.blockUntilViewReceived(cache, 2, 120000, true); System.out.println("Cluster ready, cache mode is " + cache.getCacheConfiguration().clustering().cacheMode()); System.out.println("Waiting for test completion. Hit CTRL-C when done."); doTest(); waitForTest(); } @Listener public static final class ShutdownHook { final Thread completionThread; public ShutdownHook(Thread completionThread) { this.completionThread = completionThread; } @ViewChanged public void viewChanged(ViewChangedEvent vce) { System.out.println("Saw view change event " + vce); // if the new view ONLY contains me, die! if (vce.getOldMembers().size() > vce.getNewMembers().size() && vce.getNewMembers().size() == 1 && vce.getNewMembers().contains(vce.getLocalAddress())) { completionThread.interrupt(); } } } }