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
|
/*
* Copyright (c) 2014, 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 8067437
* @summary Verify Multiple JRE version support has been removed.
* @modules jdk.compiler
* jdk.zipfs
* @build TestHelper
* @run main MultipleJRERemoved
*/
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.file.Files;
import java.util.*;
import java.util.jar.Attributes;
import java.util.jar.JarOutputStream;
import java.util.jar.Manifest;
import java.util.regex.Pattern;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import java.util.zip.ZipEntry;
public class MultipleJRERemoved extends TestHelper {
public static final String VERSION_JAR = "version.jar";
public static final String PRINT_VERSION_CLASS = "PrintVersion";
private final File javaFile = new File(PRINT_VERSION_CLASS + ".java");
private final File clsFile = new File(PRINT_VERSION_CLASS + ".class");
private MultipleJRERemoved() {
}
/**
* @param args the command line arguments
* @throws java.io.FileNotFoundException
*/
public static void main(String[] args) throws Exception {
MultipleJRERemoved a = new MultipleJRERemoved();
a.run(args);
}
/**
* Check all combinations of flags: "-version:", "-jre-restrict-search", "-jre-no-restrict-search". Test expects to see errors.
*/
@Test
public void allFlagCombinations() throws IOException {
final Pattern newLine = Pattern.compile("\n");
createJar(Collections.emptyMap());
for (Flag flag1 : Flag.values()) {
for (Flag flag2 : Flag.values()) {
for (Flag flag3 : Flag.values()) {
List<Flag> flags = Stream.of(flag1, flag2, flag3)
.filter(f -> !Flag.EMPTY.equals(f))
.collect(Collectors.toList());
if (flags.size() == 0) continue;
List<String> flagValues = flags.stream()
.map(Flag::value)
.collect(Collectors.toList());
List<String> errorMessages = flags.stream()
.map(Flag::errorMessage)
.flatMap(newLine::splitAsStream)
.collect(Collectors.toList());
List<String> jarCmd = new ArrayList<>();
jarCmd.add(javaCmd);
jarCmd.addAll(flagValues);
jarCmd.add("-jar");
jarCmd.add("version.jar");
check(jarCmd, errorMessages);
List<String> cmd = new ArrayList<>();
cmd.add(javaCmd);
cmd.addAll(flagValues);
cmd.add(PRINT_VERSION_CLASS);
check(cmd, errorMessages);
}
}
}
}
private void check(List<String> cmd, List<String> errorMessages) {
TestResult tr = doExec(cmd.toArray(new String[cmd.size()]));
tr.checkNegative();
tr.isNotZeroOutput();
errorMessages.forEach(tr::contains);
if (!tr.testStatus) {
System.out.println(tr);
throw new RuntimeException("test case: failed\n" + cmd);
}
}
/**
* Verifies that java -help output doesn't contain information about "mJRE" flags.
*/
@Test
public void javaHelp() {
TestResult tr = doExec(javaCmd, "-help");
tr.checkPositive();
tr.isNotZeroOutput();
tr.notContains("-version:<value>");
tr.notContains("-jre-restrict-search");
tr.notContains("-jre-no-restrict-search");
tr.notContains("-no-jre-restrict-search"); //it's not a typo in flag name.
if (!tr.testStatus) {
System.out.println(tr);
throw new RuntimeException("Failed. java -help output contains obsolete flags.\n");
}
}
/**
* Verifies that java -jar version.jar output ignores "mJRE" manifest directives.
*/
@Test
public void manifestDirectives() throws IOException {
Map<String, String> manifest = new TreeMap<>();
manifest.put("JRE-Version", "1.8");
manifest.put("JRE-Restrict-Search", "1.8");
createJar(manifest);
TestResult tr = doExec(javaCmd, "-jar", VERSION_JAR);
tr.checkPositive();
tr.contains(System.getProperty("java.version"));
if (!tr.testStatus) {
System.out.println(tr);
throw new RuntimeException("Failed.\n");
}
}
private void emitFile() throws IOException {
List<String> scr = new ArrayList<>();
scr.add("public class PrintVersion {");
scr.add(" public static void main(String... args) {");
scr.add(" System.out.println(System.getProperty(\"java.version\"));");
scr.add(" }");
scr.add("}");
createFile(javaFile, scr);
compile(javaFile.getName());
}
private void createJar(Map<String, String> manifestAttributes) throws IOException {
emitFile();
Manifest manifest = new Manifest();
final Attributes mainAttributes = manifest.getMainAttributes();
mainAttributes.putValue("Manifest-Version", "1.0");
mainAttributes.putValue("Main-Class", PRINT_VERSION_CLASS);
manifestAttributes.forEach(mainAttributes::putValue);
try (JarOutputStream jar = new JarOutputStream(new FileOutputStream(VERSION_JAR), manifest)) {
jar.putNextEntry(new ZipEntry(PRINT_VERSION_CLASS + ".class"));
jar.write(Files.readAllBytes(clsFile.toPath()));
jar.closeEntry();
} finally {
javaFile.delete();
}
}
private enum Flag {
EMPTY("", ""),
VERSION("-version:1.9", "Error: Specifying an alternate JDK/JRE version is no longer supported.\n" +
"The use of the flag '-version:' is no longer valid.\n" +
"Please download and execute the appropriate version."),
JRE_RESTRICT_SEARCH("-jre-restrict-search", "Error: Specifying an alternate JDK/JRE is no longer supported.\n" +
"The related flags -jre-restrict-search | -jre-no-restrict-search are also no longer valid."),
JRE_NO_RESTRICT_SEARCH("-jre-no-restrict-search", "Error: Specifying an alternate JDK/JRE is no longer supported.\n" +
"The related flags -jre-restrict-search | -jre-no-restrict-search are also no longer valid.");
private final String flag;
private final String errorMessage;
Flag(String flag, String errorMessage) {
this.flag = flag;
this.errorMessage = errorMessage;
}
String value() {
return flag;
}
String errorMessage() {
return errorMessage;
}
}
}
|