/* * Copyright (c) 2009, 2020, 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.
*/
/* * This tests for various things as follows: * Ensures that: * 1. uneccessary execs do not occur * 2. the environment is pristine, users environment variable wrt. * LD_LIBRARY_PATH if set are not modified in any way. * 3. the correct vm is chosen with -server and -client options * 4. the VM on Solaris correctly interprets the LD_LIBRARY_PATH32 * and LD_LIBRARY_PATH64 variables if set by the user, ie. * i. on 32 bit systems: * a. if LD_LIBRARY_PATH32 is set it will override LD_LIBRARY_PATH * b. LD_LIBRARY_PATH64 is ignored if set * ii. on 64 bit systems: * a. if LD_LIBRARY_PATH64 is set it will override LD_LIBRARY_PATH * b. LD_LIBRARY_PATH32 is ignored if set * 5. no extra symlink exists on Solaris ie. * lib/$arch/libjvm.so -> client/libjvm.so * TODO: * a. perhaps we need to add a test to audit all environment variables are * in pristine condition after the launch, there may be a few that the * launcher may add as implementation details. * b. add a pldd for solaris to ensure only one libjvm.so is linked
*/
// Note: these paths need not exist on the filesytem staticfinal String LD_LIBRARY_PATH_VALUE = "/Bridge/On/The/River/Kwai"; staticfinal String LD_LIBRARY_PATH_32_VALUE = "/Lawrence/Of/Arabia"; staticfinal String LD_LIBRARY_PATH_64_VALUE = "/A/Passage/To/India";
if (!tr.isNotZeroOutput()) {
flagError(tr, "Error: No output at all. Did the test execute ?");
}
for (String x : LD_PATH_STRINGS) { if (!tr.contains(x)) { if (IS_EXPANDED_LD_LIBRARY_PATH && x.startsWith(LD_LIBRARY_PATH)) { // AIX does not support the '-rpath' linker options so the // launchers have to prepend the jdk library path to 'LIBPATH'. // The musl library loader requires LD_LIBRARY_PATH to be set in // order to correctly resolve the dependency libjava.so has on libjvm.so.
String libPath = LD_LIBRARY_PATH + "=" +
System.getenv(LD_LIBRARY_PATH) +
System.getProperty("path.separator") + LD_LIBRARY_PATH_VALUE; if (!tr.matches(libPath)) {
flagError(tr, "FAIL: did not get <" + libPath + ">");
}
} else {
flagError(tr, "FAIL: did not get <" + x + ">");
}
}
}
}
/* * ensures that there are no execs as long as we are in the same * data model
*/
@Test void testNoExec() {
Map<String, String> env = new HashMap<>();
env.put(JLDEBUG_KEY, "true");
TestResult tr = doExec(env, javaCmd, "-version"); if (tr.testOutput.contains(EXPECTED_MARKER)) {
flagError(tr, "testNoExec: found warning <" + EXPECTED_MARKER + "> the process execing ?");
}
}
/* * This test ensures that LD_LIBRARY_PATH* values are interpreted by the VM * and the expected java.library.path behaviour. * For Generic platforms (All *nixes): * * All LD_LIBRARY_PATH variable should be on java.library.path
*/
@Test void testJavaLibraryPath() {
TestResult tr;
Map<String, String> env = new HashMap<>();
for (String x : LD_PATH_STRINGS) {
String pairs[] = x.split("=");
env.put(pairs[0], pairs[1]);
}
privatevoid verifyJavaLibraryPathGeneric(TestResult tr) { if (!tr.matches("java.library.path=.*" + LD_LIBRARY_PATH_VALUE + ".*")) {
flagError(tr, "testJavaLibraryPath: java.library.path does not contain " +
LD_LIBRARY_PATH_VALUE);
}
}
privatevoid verifyJavaLibraryPathOverride(TestResult tr, boolean is32Bit) { // make sure the 32/64 bit value exists if (!tr.matches("java.library.path=.*" +
(is32Bit ? LD_LIBRARY_PATH_32_VALUE : LD_LIBRARY_PATH_64_VALUE) + ".*")) {
flagError(tr, "verifyJavaLibraryPathOverride: " + " java.library.path does not contain " +
(is32Bit ? LD_LIBRARY_PATH_32_VALUE : LD_LIBRARY_PATH_64_VALUE));
} // make sure the generic value is absent if (!tr.notMatches("java.library.path=.*" + LD_LIBRARY_PATH_VALUE + ".*")) {
flagError(tr, "verifyJavaLibraryPathOverride: " + " java.library.path contains " + LD_LIBRARY_PATH_VALUE);
}
}
/* * ensures we have indeed exec'ed the correct vm of choice if it exists
*/
@Test void testVmSelection() { boolean haveSomeVM = false; if (haveClientVM) {
tryVmOption("-client", ".*Client VM.*");
haveSomeVM = true;
} if (haveServerVM) {
tryVmOption("-server", ".*Server VM.*");
haveSomeVM = true;
} if (!haveSomeVM) {
String msg = "Don't have a known VM";
System.err.println(msg); thrownew RuntimeException(msg);
}
}
privatevoid tryVmOption(String opt, String expected) {
TestResult tr = doExec(javaCmd, opt, "-version"); if (!tr.matches(expected)) {
flagError(tr, "the expected vm " + opt + " did not launch");
}
}
/* * checks to see there is no extra libjvm.so than needed
*/
@Test void testNoSymLink() { if (is64Bit) { return;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.