use of io.pravega.test.system.framework.Environment in project pravega by pravega.
the class MultiReaderWriterWithFailOverTest 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 ReadTxnWriteAutoScaleWithFailoverTest 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 ReadWriteAndScaleWithFailoverTest 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 RetentionTest 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 StreamCutsTest method initialize.
/**
* This is used to setup the 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);
}
Aggregations