use of io.pravega.test.system.framework.Environment in project pravega by pravega.
the class ReadTxnWriteScaleWithFailoverTest method initialize.
@Environment
public static void initialize() throws MarathonException, ExecutionException {
URI zkUri = startZookeeperInstance();
startBookkeeperInstances(zkUri);
URI controllerUri = startPravegaControllerInstances(zkUri, 3);
startPravegaSegmentStoreInstances(zkUri, controllerUri, 3);
}
use of io.pravega.test.system.framework.Environment in project pravega by pravega.
the class ReaderCheckpointTest method initialize.
@Environment
public static void initialize() {
URI zkUri = startZookeeperInstance();
startBookkeeperInstances(zkUri);
URI controllerUri = ensureControllerRunning(zkUri);
ensureSegmentStoreRunning(zkUri, controllerUri);
}
use of io.pravega.test.system.framework.Environment in project pravega by pravega.
the class SingleSubscriberUpdateRetentionStreamCutTest method initialize.
/**
* This is used to setup the various services required by the system test framework.
*
* @throws MarathonException when error in setup
*/
@Environment
public static void initialize() throws MarathonException {
URI zkUri = startZookeeperInstance();
startBookkeeperInstances(zkUri);
URI controllerUri = ensureControllerRunning(zkUri);
ensureSegmentStoreRunning(zkUri, controllerUri);
}
use of io.pravega.test.system.framework.Environment in project pravega by pravega.
the class MetadataScalabilityTest method initialize.
@Environment
public static void initialize() {
URI zkUri = startZookeeperInstance();
startBookkeeperInstances(zkUri);
URI controllerUri = ensureControllerRunning(zkUri);
ensureSegmentStoreRunning(zkUri, controllerUri);
}
use of io.pravega.test.system.framework.Environment in project pravega by pravega.
the class PravegaControllerTest method initialize.
/**
* This is used to setup the various services required by the system test framework.
*
* @throws MarathonException if error in setup
*/
@Environment
public static void initialize() throws MarathonException {
Service zk = Utils.createZookeeperService();
if (!zk.isRunning()) {
zk.start(true);
}
Service con = Utils.createPravegaControllerService(zk.getServiceDetails().get(0));
if (!con.isRunning()) {
con.start(true);
}
}
Aggregations