1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
|
/*
* Copyright (c) 2015, 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.
*
* 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.
*/
/**
* @test
* @bug 8027634
* @summary Argument parsing from file
* @modules jdk.compiler
* jdk.zipfs
* @build TestHelper
* @run main ArgsFileTest
*/
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class ArgsFileTest extends TestHelper {
private static File testJar = null;
private static Map<String, String> env = new HashMap<>();
static void init() throws IOException {
if (testJar != null) {
return;
}
testJar = new File("test.jar");
StringBuilder tsrc = new StringBuilder();
tsrc.append("public static void main(String... args) {\n");
tsrc.append(" for (String x : args) {\n");
tsrc.append(" System.out.println(x);\n");
tsrc.append(" }\n");
tsrc.append("}\n");
createJar(testJar, new File("Foo"), tsrc.toString());
env.put(JLDEBUG_KEY, "true");
}
private File createArgFile(String fname, List<String> lines) throws IOException {
File argFile = new File(fname);
argFile.delete();
createAFile(argFile, lines);
return argFile;
}
private void verifyOptions(List<String> args, TestResult tr) {
if (args.isEmpty()) {
return;
}
int i = 1;
for (String x : args) {
tr.matches(".*argv\\[" + i + "\\] = " + Pattern.quote(x) + ".*");
i++;
}
if (! tr.testStatus) {
System.out.println(tr);
throw new RuntimeException("test fails");
}
}
private void verifyUserArgs(List<String> args, TestResult tr, int index) {
if (javaCmd != TestHelper.javaCmd) {
tr.contains("\tFirst application arg index: 1");
} else {
tr.contains("\tFirst application arg index: " + index);
for (String arg: args) {
tr.matches("^" + Pattern.quote(arg) + "$");
}
}
if (! tr.testStatus) {
System.out.println(tr);
throw new RuntimeException("test fails");
}
}
@Test
public void expandAll() throws IOException {
List<String> lines = new ArrayList<>();
lines.add("-Xmx32m");
lines.add("-Xint");
File argFile1 = createArgFile("argFile1", lines);
lines = new ArrayList<>();
lines.add("-jar");
lines.add("test.jar");
lines.add("uarg1 @uarg2 @@uarg3 -uarg4 uarg5");
File argFile2 = createArgFile("argFile2", lines);
TestResult tr = doExec(env, javaCmd, "@argFile1", "@argFile2");
List<String> appArgs = new ArrayList<>();
appArgs.add("uarg1");
appArgs.add("@uarg2");
appArgs.add("@@uarg3");
appArgs.add("-uarg4");
appArgs.add("uarg5");
List<String> options = new ArrayList<>();
options.add("-Xmx32m");
options.add("-Xint");
options.add("-jar");
options.add("test.jar");
options.addAll(appArgs);
verifyOptions(options, tr);
verifyUserArgs(appArgs, tr, 5);
argFile1.delete();
argFile2.delete();
File cpFile = createArgFile("cpFile", Arrays.asList("-cp", "test.jar"));
List<String> appCmd = new ArrayList<>();
appCmd.add("Foo");
appCmd.addAll(appArgs);
File appFile = createArgFile("appFile", appCmd);
tr = doExec(env, javaCmd, "@cpFile", "@appFile");
verifyOptions(Arrays.asList("-cp", "test.jar", "Foo",
"uarg1", "@uarg2", "@@uarg3", "-uarg4", "uarg5"), tr);
verifyUserArgs(appArgs, tr, 4);
cpFile.delete();
appFile.delete();
}
@Test
public void escapeArg() throws IOException {
List<String> lines = new ArrayList<>();
lines.add("-Xmx32m");
lines.add("-Xint");
File argFile1 = createArgFile("argFile1", lines);
TestResult tr = doExec(env, javaCmd, "-cp", "@@arg", "-cp", "@",
"-cp", "@@@cp", "@argFile1", "@@@@Main@@@@", "-version");
List<String> options = new ArrayList<>();
options.add("-cp");
options.add("@arg");
options.add("-cp");
options.add("@");
options.add("-cp");
options.add("@@cp");
options.add("-Xmx32m");
options.add("-Xint");
options.add("@@@Main@@@@");
options.add("-version");
verifyOptions(options, tr);
verifyUserArgs(Collections.emptyList(), tr, options.size());
argFile1.delete();
}
@Test
public void killSwitch() throws IOException {
List<String> lines = new ArrayList<>();
lines.add("-Xmx32m");
lines.add("-Xint");
File argFile1 = createArgFile("argFile1", lines);
lines = new ArrayList<>();
lines.add("-jar");
lines.add("test.jar");
lines.add("uarg1 @uarg2 @@uarg3 -uarg4 uarg5");
File argFile2 = createArgFile("argFile2", lines);
File argKill = createArgFile("argKill",
Collections.singletonList("--disable-@files"));
TestResult tr = doExec(env, javaCmd, "@argFile1", "--disable-@files", "@argFile2");
List<String> options = new ArrayList<>();
options.add("-Xmx32m");
options.add("-Xint");
options.add("--disable-@files");
options.add("@argFile2");
verifyOptions(options, tr);
// Main class is @argFile2
verifyUserArgs(Collections.emptyList(), tr, 5);
// Specify in file is same as specify inline
tr = doExec(env, javaCmd, "@argFile1", "@argKill", "@argFile2");
verifyOptions(options, tr);
// Main class is @argFile2
verifyUserArgs(Collections.emptyList(), tr, 5);
// multiple is fine, once on is on.
tr = doExec(env, javaCmd, "@argKill", "@argFile1", "--disable-@files", "@argFile2");
options = Arrays.asList("--disable-@files", "@argFile1",
"--disable-@files", "@argFile2");
verifyOptions(options, tr);
verifyUserArgs(Collections.emptyList(), tr, 3);
// after main class, becoming an user application argument
tr = doExec(env, javaCmd, "@argFile2", "@argKill");
options = Arrays.asList("-jar", "test.jar", "uarg1", "@uarg2", "@@uarg3",
"-uarg4", "uarg5", "@argKill");
verifyOptions(options, tr);
verifyUserArgs(Arrays.asList("uarg1", "@uarg2", "@@uarg3",
"-uarg4", "uarg5", "@argKill"), tr, 3);
argFile1.delete();
argFile2.delete();
argKill.delete();
}
@Test
public void userApplication() throws IOException {
List<String> lines = new ArrayList<>();
lines.add("-Xmx32m");
lines.add("-Xint");
File vmArgs = createArgFile("vmArgs", lines);
File jarOpt = createArgFile("jarOpt", Arrays.asList("-jar"));
File cpOpt = createArgFile("cpOpt", Arrays.asList("-cp"));
File jarArg = createArgFile("jarArg", Arrays.asList("test.jar"));
File userArgs = createArgFile("userArgs", Arrays.asList("-opt", "arg", "--longopt"));
TestResult tr = doExec(env, javaCmd,
"@vmArgs", "@jarOpt", "test.jar", "-opt", "arg", "--longopt");
verifyOptions(Arrays.asList(
"-Xmx32m", "-Xint", "-jar", "test.jar", "-opt", "arg", "--longopt"), tr);
verifyUserArgs(Arrays.asList("-opt", "arg", "--longopt"), tr, 5);
tr = doExec(env, javaCmd, "@jarOpt", "@jarArg", "@vmArgs");
verifyOptions(Arrays.asList("-jar", "test.jar", "@vmArgs"), tr);
verifyUserArgs(Arrays.asList("@vmArgs"), tr, 3);
tr = doExec(env, javaCmd, "-cp", "@jarArg", "@vmArgs", "Foo", "@userArgs");
verifyOptions(Arrays.asList("-cp", "test.jar", "-Xmx32m", "-Xint",
"Foo", "@userArgs"), tr);
verifyUserArgs(Arrays.asList("@userArgs"), tr, 6);
tr = doExec(env, javaCmd, "@cpOpt", "@jarArg", "@vmArgs", "Foo", "@userArgs");
verifyOptions(Arrays.asList("-cp", "test.jar", "-Xmx32m", "-Xint",
"Foo", "@userArgs"), tr);
verifyUserArgs(Arrays.asList("@userArgs"), tr, 6);
tr = doExec(env, javaCmd, "@cpOpt", "test.jar", "@vmArgs", "Foo", "@userArgs");
verifyOptions(Arrays.asList("-cp", "test.jar", "-Xmx32m", "-Xint",
"Foo", "@userArgs"), tr);
verifyUserArgs(Arrays.asList("@userArgs"), tr, 6);
vmArgs.delete();
jarOpt.delete();
cpOpt.delete();
jarArg.delete();
userArgs.delete();
}
// test with missing file
@Test
public void missingFileNegativeTest() throws IOException {
TestResult tr = doExec(javaCmd, "@" + "missing.cmd");
tr.checkNegative();
tr.contains("Error: could not open `missing.cmd'");
if (!tr.testStatus) {
System.out.println(tr);
throw new RuntimeException("test fails");
}
}
public static void main(String... args) throws Exception {
init();
ArgsFileTest a = new ArgsFileTest();
a.run(args);
if (testExitValue > 0) {
System.out.println("Total of " + testExitValue + " failed");
System.exit(1);
} else {
System.out.println("All tests pass");
}
}
}
|