com.facebook.presto.tests.cli.PrestoCliLauncher Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.facebook.presto.tests.cli;
import com.facebook.presto.cli.Presto;
import com.google.common.collect.ImmutableList;
import com.google.inject.Inject;
import com.google.inject.name.Named;
import io.prestodb.tempto.ProductTest;
import java.io.File;
import java.io.IOException;
import java.util.List;
import static com.google.common.io.Resources.getResource;
import static com.google.common.io.Resources.readLines;
import static java.nio.charset.StandardCharsets.UTF_8;
import static java.util.Arrays.asList;
public class PrestoCliLauncher
extends ProductTest
{
protected static final long TIMEOUT = 300 * 1000; // 30 secs per test
protected static final String EXIT_COMMAND = "exit";
protected final List nationTableInteractiveLines;
protected final List nationTableBatchLines;
private static final String CLASSPATH = System.getProperty("java.class.path");
private static final String JAVA_BIN = System.getProperty("java.home") + File.separator + "bin" + File.separator + "java";
@Inject
@Named("databases.presto.host")
protected String serverHost;
@Inject
@Named("databases.presto.server_address")
protected String serverAddress;
protected PrestoCliProcess presto;
protected PrestoCliLauncher()
throws IOException
{
nationTableInteractiveLines = readLines(getResource("com/facebook/presto/tests/cli/interactive_query.results"), UTF_8);
nationTableBatchLines = readLines(getResource("com/facebook/presto/tests/cli/batch_query.results"), UTF_8);
}
protected void stopPresto()
throws InterruptedException
{
if (presto != null) {
presto.getProcessInput().println(EXIT_COMMAND);
presto.waitForWithTimeoutAndKill();
}
}
protected void launchPrestoCli(String... arguments)
throws IOException
{
launchPrestoCli(asList(arguments));
}
protected void launchPrestoCli(List arguments)
throws IOException
{
presto = new PrestoCliProcess(getProcessBuilder(arguments).start());
}
protected ProcessBuilder getProcessBuilder(List arguments)
{
return new ProcessBuilder(ImmutableList.builder()
.add(JAVA_BIN, "-cp", CLASSPATH, Presto.class.getCanonicalName())
.addAll(arguments)
.build());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy