/*
 * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */
package org.graalvm.compiler.test;

import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Formatter;
import java.util.List;
import java.util.Map;
import java.util.function.Predicate;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.graalvm.compiler.serviceprovider.JavaVersionUtil;
import org.graalvm.util.CollectionsUtil;
import org.junit.Assume;

Utility methods for spawning a VM in a subprocess during unit tests.
/** * Utility methods for spawning a VM in a subprocess during unit tests. */
public final class SubprocessUtil {
The name of the boolean system property that can be set to preserve temporary files created as arguments files passed to the java launcher.
See Also:
  • https://docs.oracle.com/javase/9/tools/java.htm#JSWOR-GUID-4856361B-8BFD-4964-AE84-121F5F6CF111
/** * The name of the boolean system property that can be set to preserve temporary files created * as arguments files passed to the java launcher. * * @see "https://docs.oracle.com/javase/9/tools/java.htm#JSWOR-GUID-4856361B-8BFD-4964-AE84-121F5F6CF111" */
public static final String KEEP_TEMPORARY_ARGUMENT_FILES_PROPERTY_NAME = "test." + SubprocessUtil.class.getSimpleName() + ".keepTempArgumentFiles"; private SubprocessUtil() { }
Gets the command line for the current process.
Returns:the command line arguments for the current process or null if they are not available
/** * Gets the command line for the current process. * * @return the command line arguments for the current process or {@code null} if they are not * available */
public static List<String> getProcessCommandLine() { String processArgsFile = System.getenv().get("MX_SUBPROCESS_COMMAND_FILE"); if (processArgsFile != null) { try { return Files.readAllLines(new File(processArgsFile).toPath()); } catch (IOException e) { } } else { Assume.assumeTrue("Process command line unavailable", false); } return null; }
Pattern for a single shell command argument that does not need to quoted.
/** * Pattern for a single shell command argument that does not need to quoted. */
private static final Pattern SAFE_SHELL_ARG = Pattern.compile("[A-Za-z0-9@%_\\-\\+=:,\\./]+");
Reliably quote a string as a single shell command argument.
/** * Reliably quote a string as a single shell command argument. */
public static String quoteShellArg(String arg) { if (arg.isEmpty()) { return "\"\""; } Matcher m = SAFE_SHELL_ARG.matcher(arg); if (m.matches()) { return arg; } // See http://stackoverflow.com/a/1250279 return "'" + arg.replace("'", "'\"'\"'") + "'"; }
Returns a new copy args with debugger arguments removed.
/** * Returns a new copy {@code args} with debugger arguments removed. */
public static List<String> withoutDebuggerArguments(List<String> args) { List<String> result = new ArrayList<>(args.size()); for (String arg : args) { if (!(arg.equals("-Xdebug") || arg.startsWith("-Xrunjdwp:"))) { result.add(arg); } } return result; }
Gets the command line options to do the same package opening and exporting specified by the --open-packages option to the mx unittest command. Properties defined in com.oracle.mxtool.junit.MxJUnitWrapper.
/** * Gets the command line options to do the same package opening and exporting specified by the * {@code --open-packages} option to the {@code mx unittest} command. * * Properties defined in {@code com.oracle.mxtool.junit.MxJUnitWrapper}. */
public static List<String> getPackageOpeningOptions() { List<String> result = new ArrayList<>(); String[] actions = {"opens", "exports"}; for (String action : actions) { String opens = System.getProperty("com.oracle.mxtool.junit." + action); if (opens != null && !opens.isEmpty()) { for (String value : opens.split(System.lineSeparator())) { result.add("--add-" + action + "=" + value); } } } return result; }
Gets the command line used to start the current Java VM, including all VM arguments, but not including the main class or any Java arguments. This can be used to spawn an identical VM, but running different Java code.
/** * Gets the command line used to start the current Java VM, including all VM arguments, but not * including the main class or any Java arguments. This can be used to spawn an identical VM, * but running different Java code. */
public static List<String> getVMCommandLine() { List<String> args = getProcessCommandLine(); if (args == null) { return null; } else { int index = findMainClassIndex(args); return args.subList(0, index); } }
Detects whether a Java agent matching agentPredicate is specified in the VM arguments.
Params:
  • agentPredicate – a predicate that is given the value of a -javaagent VM argument
/** * Detects whether a Java agent matching {@code agentPredicate} is specified in the VM * arguments. * * @param agentPredicate a predicate that is given the value of a {@code -javaagent} VM argument */
public static boolean isJavaAgentAttached(Predicate<String> agentPredicate) { return SubprocessUtil.getVMCommandLine().stream().// filter(args -> args.startsWith("-javaagent:")).// map(s -> s.substring("-javaagent:".length())).// anyMatch(agentPredicate); }
Detects whether a Java agent is specified in the VM arguments.
/** * Detects whether a Java agent is specified in the VM arguments. */
public static boolean isJavaAgentAttached() { return isJavaAgentAttached(javaAgentValue -> true); }
Detects whether the JaCoCo Java agent is specified in the VM arguments.
/** * Detects whether the JaCoCo Java agent is specified in the VM arguments. */
public static boolean isJaCoCoAttached() { return isJavaAgentAttached(s -> s.toLowerCase().contains("jacoco")); }
The details of a subprocess execution.
/** * The details of a subprocess execution. */
public static class Subprocess {
The command line of the subprocess.
/** * The command line of the subprocess. */
public final List<String> command;
Exit code of the subprocess.
/** * Exit code of the subprocess. */
public final int exitCode;
Output from the subprocess broken into lines.
/** * Output from the subprocess broken into lines. */
public final List<String> output;
Explicit environment variables.
/** * Explicit environment variables. */
private Map<String, String> env; public Subprocess(List<String> command, Map<String, String> env, int exitCode, List<String> output) { this.command = command; this.env = env; this.exitCode = exitCode; this.output = output; } public static final String DASHES_DELIMITER = "-------------------------------------------------------";
Returns the command followed by the output as a string.
Params:
  • delimiter – if non-null, the returned string has this value as a prefix and suffix
/** * Returns the command followed by the output as a string. * * @param delimiter if non-null, the returned string has this value as a prefix and suffix */
public String toString(String delimiter) { Formatter msg = new Formatter(); if (delimiter != null) { msg.format("%s%n", delimiter); } if (env != null && !env.isEmpty()) { msg.format("env"); for (Map.Entry<String, String> e : env.entrySet()) { msg.format(" %s=%s", e.getKey(), quoteShellArg(e.getValue())); } msg.format("\\%n"); } msg.format("%s%n", CollectionsUtil.mapAndJoin(command, e -> quoteShellArg(String.valueOf(e)), " ")); for (String line : output) { msg.format("%s%n", line); } if (delimiter != null) { msg.format("%s%n", delimiter); } return msg.toString(); }
Returns the command followed by the output as a string delimited by "-------------------------------------------------------".
/** * Returns the command followed by the output as a string delimited by * {@value #DASHES_DELIMITER}. */
@Override public String toString() { return toString(DASHES_DELIMITER); } }
A sentinel value which when present in the vmArgs parameter for any of the java(...) methods in this class is replaced with a temporary argument file containing the contents of getPackageOpeningOptions. The argument file is preserved if the KEEP_TEMPORARY_ARGUMENT_FILES_PROPERTY_NAME system property is true.
/** * A sentinel value which when present in the {@code vmArgs} parameter for any of the * {@code java(...)} methods in this class is replaced with a temporary argument file containing * the contents of {@link #getPackageOpeningOptions}. The argument file is preserved if the * {@link #KEEP_TEMPORARY_ARGUMENT_FILES_PROPERTY_NAME} system property is true. */
public static final String PACKAGE_OPENING_OPTIONS = ";:PACKAGE_OPENING_OPTIONS_IN_TEMPORARY_ARGUMENTS_FILE:;";
Executes a Java subprocess.
Params:
  • vmArgs – the VM arguments
  • mainClassAndArgs – the main class and its arguments
/** * Executes a Java subprocess. * * @param vmArgs the VM arguments * @param mainClassAndArgs the main class and its arguments */
public static Subprocess java(List<String> vmArgs, String... mainClassAndArgs) throws IOException, InterruptedException { return java(vmArgs, Arrays.asList(mainClassAndArgs)); }
Executes a Java subprocess.
Params:
  • vmArgs – the VM arguments
  • mainClassAndArgs – the main class and its arguments
/** * Executes a Java subprocess. * * @param vmArgs the VM arguments * @param mainClassAndArgs the main class and its arguments */
public static Subprocess java(List<String> vmArgs, List<String> mainClassAndArgs) throws IOException, InterruptedException { return javaHelper(vmArgs, null, mainClassAndArgs); }
Executes a Java subprocess.
Params:
  • vmArgs – the VM arguments
  • env – the environment variables
  • mainClassAndArgs – the main class and its arguments
/** * Executes a Java subprocess. * * @param vmArgs the VM arguments * @param env the environment variables * @param mainClassAndArgs the main class and its arguments */
public static Subprocess java(List<String> vmArgs, Map<String, String> env, String... mainClassAndArgs) throws IOException, InterruptedException { return java(vmArgs, env, Arrays.asList(mainClassAndArgs)); }
Executes a Java subprocess.
Params:
  • vmArgs – the VM arguments
  • env – the environment variables
  • mainClassAndArgs – the main class and its arguments
/** * Executes a Java subprocess. * * @param vmArgs the VM arguments * @param env the environment variables * @param mainClassAndArgs the main class and its arguments */
public static Subprocess java(List<String> vmArgs, Map<String, String> env, List<String> mainClassAndArgs) throws IOException, InterruptedException { return javaHelper(vmArgs, env, mainClassAndArgs); }
Executes a Java subprocess.
Params:
  • vmArgs – the VM arguments
  • env – the environment variables
  • mainClassAndArgs – the main class and its arguments
/** * Executes a Java subprocess. * * @param vmArgs the VM arguments * @param env the environment variables * @param mainClassAndArgs the main class and its arguments */
private static Subprocess javaHelper(List<String> vmArgs, Map<String, String> env, List<String> mainClassAndArgs) throws IOException, InterruptedException { List<String> command = new ArrayList<>(vmArgs.size()); Path packageOpeningOptionsArgumentsFile = null; for (String vmArg : vmArgs) { if (vmArg == PACKAGE_OPENING_OPTIONS) { if (packageOpeningOptionsArgumentsFile == null) { List<String> packageOpeningOptions = getPackageOpeningOptions(); if (!packageOpeningOptions.isEmpty()) { packageOpeningOptionsArgumentsFile = Files.createTempFile(Paths.get("."), "package-opening-options-arguments-file", ".txt").toAbsolutePath(); Files.write(packageOpeningOptionsArgumentsFile, packageOpeningOptions); command.add("@" + packageOpeningOptionsArgumentsFile); } } } else { command.add(vmArg); } } command.addAll(mainClassAndArgs); ProcessBuilder processBuilder = new ProcessBuilder(command); if (env != null) { Map<String, String> processBuilderEnv = processBuilder.environment(); processBuilderEnv.putAll(env); } processBuilder.redirectErrorStream(true); try { Process process = processBuilder.start(); BufferedReader stdout = new BufferedReader(new InputStreamReader(process.getInputStream())); String line; List<String> output = new ArrayList<>(); while ((line = stdout.readLine()) != null) { output.add(line); } return new Subprocess(command, env, process.waitFor(), output); } finally { if (packageOpeningOptionsArgumentsFile != null) { if (!Boolean.getBoolean(KEEP_TEMPORARY_ARGUMENT_FILES_PROPERTY_NAME)) { Files.delete(packageOpeningOptionsArgumentsFile); } } } } private static final boolean isJava8OrEarlier = JavaVersionUtil.JAVA_SPEC <= 8; private static boolean hasArg(String optionName) { if (optionName.equals("-cp") || optionName.equals("-classpath")) { return true; } if (!isJava8OrEarlier) { if (optionName.equals("--version") || optionName.equals("--show-version") || optionName.equals("--dry-run") || optionName.equals("--disable-@files") || optionName.equals("--dry-run") || optionName.equals("--help") || optionName.equals("--help-extra")) { return false; } if (optionName.startsWith("--")) { return optionName.indexOf('=') == -1; } } return false; } private static int findMainClassIndex(List<String> commandLine) { int i = 1; // Skip the java executable while (i < commandLine.size()) { String s = commandLine.get(i); if (s.charAt(0) != '-') { // https://bugs.openjdk.java.net/browse/JDK-8027634 if (isJava8OrEarlier || s.charAt(0) != '@') { return i; } i++; } else if (hasArg(s)) { i += 2; } else { i++; } } throw new InternalError(); } }