blob: dc506ad16bbf37d732804fce4a28a464976ba639 [file] [log] [blame]
package com.gemstone.gemfire.distributed;
import static org.junit.Assert.*;
import java.util.concurrent.Callable;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.rules.ErrorCollector;
import org.junit.rules.TemporaryFolder;
import com.gemstone.gemfire.distributed.AbstractLauncher.Status;
import com.gemstone.gemfire.distributed.ServerLauncher.ServerState;
import com.gemstone.gemfire.distributed.internal.DistributionConfig;
import com.gemstone.gemfire.internal.AvailablePortHelper;
import com.gemstone.gemfire.internal.cache.AbstractBridgeServer;
/**
* @author Kirk Lund
* @since 8.0
*/
public abstract class AbstractServerLauncherJUnitTestCase extends AbstractLauncherJUnitTestCase {
protected volatile int serverPort;
protected volatile ServerLauncher launcher;
@Rule
public ErrorCollector errorCollector= new ErrorCollector();
@Rule
public TemporaryFolder temporaryFolder = new TemporaryFolder();
@Before
public final void setUpServerLauncherTest() throws Exception {
System.setProperty("gemfire." + DistributionConfig.MCAST_PORT_NAME, Integer.toString(0));
final int port = AvailablePortHelper.getRandomAvailableTCPPort();
System.setProperty(AbstractBridgeServer.TEST_OVERRIDE_DEFAULT_PORT_PROPERTY, String.valueOf(port));
this.serverPort = port;
}
@After
public final void tearDownServerLauncherTest() throws Exception {
this.serverPort = 0;
if (this.launcher != null) {
this.launcher.stop();
this.launcher = null;
}
}
protected void waitForServerToStart(final ServerLauncher launcher, int timeout, int interval, boolean throwOnTimeout) throws Exception {
assertEventuallyTrue("waiting for local Server to start: " + launcher.status(), new Callable<Boolean>() {
@Override
public Boolean call() throws Exception {
try {
final ServerState serverState = launcher.status();
assertNotNull(serverState);
return Status.ONLINE.equals(serverState.getStatus());
}
catch (RuntimeException e) {
return false;
}
}
}, timeout, interval);
}
protected void waitForServerToStart(final ServerLauncher launcher, boolean throwOnTimeout) throws Exception {
waitForServerToStart(launcher, TIMEOUT_MILLISECONDS, INTERVAL_MILLISECONDS, throwOnTimeout);
}
protected void waitForServerToStart(final ServerLauncher launcher, int timeout, boolean throwOnTimeout) throws Exception {
waitForServerToStart(launcher, timeout, INTERVAL_MILLISECONDS, throwOnTimeout);
}
protected void waitForServerToStart(final ServerLauncher launcher) throws Exception {
waitForServerToStart(launcher, TIMEOUT_MILLISECONDS, INTERVAL_MILLISECONDS, true);
}
}