Skip to content

Commit

Permalink
8240604: Rewrite sun/management/jmxremote/bootstrap/CustomLauncherTes…
Browse files Browse the repository at this point in the history
…t.java test to make binaries from source file

Reviewed-by: iignatyev
  • Loading branch information
Alexander Scherbatiy committed Mar 19, 2020
1 parent cc9470e commit cd7d175
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 236 deletions.
5 changes: 4 additions & 1 deletion make/test/JtregNativeJdk.gmk
Expand Up @@ -55,7 +55,7 @@ BUILD_JDK_JTREG_EXECUTABLES_CFLAGS_exeJliLaunchTest := \

# Platform specific setup
ifeq ($(call isTargetOs, windows), true)
BUILD_JDK_JTREG_EXCLUDE += libDirectIO.c libInheritedChannel.c
BUILD_JDK_JTREG_EXCLUDE += libDirectIO.c libInheritedChannel.c exelauncher.c

WIN_LIB_JAVA := $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib
BUILD_JDK_JTREG_LIBRARIES_LIBS_libstringPlatformChars := $(WIN_LIB_JAVA)
Expand All @@ -69,14 +69,17 @@ else
BUILD_JDK_JTREG_EXCLUDE += exerevokeall.c
ifeq ($(call isTargetOs, linux), true)
BUILD_JDK_JTREG_LIBRARIES_LIBS_libInheritedChannel := -ljava
BUILD_JDK_JTREG_EXECUTABLES_LIBS_exelauncher := -ldl
else ifeq ($(call isTargetOs, solaris), true)
BUILD_JDK_JTREG_LIBRARIES_LIBS_libInheritedChannel := -ljava -lsocket -lnsl
BUILD_JDK_JTREG_EXECUTABLES_LIBS_exelauncher := -lthread -ldl
endif
BUILD_JDK_JTREG_EXECUTABLES_LIBS_exeJliLaunchTest := -ljli
BUILD_JDK_JTREG_EXECUTABLES_LIBS_exeCallerAccessTest := -ljvm
endif

ifeq ($(call isTargetOs, macosx), true)
BUILD_JDK_JTREG_EXCLUDE += exelauncher.c
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libTestMainKeyWindow := -ObjC
BUILD_JDK_JTREG_LIBRARIES_LIBS_libTestMainKeyWindow := -framework JavaVM \
-framework Cocoa -framework JavaNativeFoundation
Expand Down
174 changes: 22 additions & 152 deletions test/jdk/sun/management/jmxremote/bootstrap/CustomLauncherTest.java
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 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
Expand All @@ -21,22 +21,16 @@
* questions.
*/

import java.io.File;
import java.io.IOException;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
import jdk.test.lib.Utils;
import jdk.test.lib.Platform;
import jdk.test.lib.process.ProcessTools;

import java.nio.file.Files;
import java.nio.file.LinkOption;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
import java.nio.file.attribute.PosixFilePermission;
import java.util.HashSet;
import java.util.Set;
import java.nio.file.Paths;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicReference;

import jdk.test.lib.process.ProcessTools;

/**
* @test
* @bug 6434402 8004926
Expand All @@ -47,80 +41,35 @@
* jdk.attach
* jdk.management.agent/jdk.internal.agent
*
* @requires (os.family == "linux" | os.family == "solaris")
* @build TestManager TestApplication CustomLauncherTest
* @run main/othervm CustomLauncherTest
* @run main/othervm/native CustomLauncherTest
*/
public class CustomLauncherTest {
private static final String TEST_CLASSPATH = System.getProperty("test.class.path");
private static final String TEST_JDK = System.getProperty("test.jdk");
private static final String WORK_DIR = System.getProperty("user.dir");

private static final String TEST_SRC = System.getProperty("test.src");
private static final String OSNAME = System.getProperty("os.name");
private static final String ARCH;
static {
// magic with os.arch
String osarch = System.getProperty("os.arch");
switch (osarch) {
case "i386":
case "i486":
case "i586":
case "i686":
case "i786":
case "i886":
case "i986": {
ARCH = "i586";
break;
}
case "x86_64":
case "amd64": {
ARCH = "amd64";
break;
}
case "sparc":
ARCH = "sparcv9";
break;
default: {
ARCH = osarch;
}
}
}
public static final String TEST_NATIVE_PATH = System.getProperty("test.nativepath");

public static void main(String[] args) throws Exception {
if (TEST_CLASSPATH == null || TEST_CLASSPATH.isEmpty()) {
if (".".equals(Utils.TEST_CLASS_PATH)) {
System.out.println("Test is designed to be run from jtreg only");
return;
}

if (getPlatform() == null) {
System.out.println("Test not designed to run on this operating " +
"system (" + OSNAME + "), skipping...");
return;
}

final FileSystem FS = FileSystems.getDefault();

Path libjvmPath = findLibjvm(FS);
if (libjvmPath == null) {
throw new Error("Unable to locate 'libjvm.so' in " + TEST_JDK);
}

Path libjvm = Platform.jvmLibDir().resolve("libjvm.so");
Process serverPrc = null, clientPrc = null;

try {
String[] launcher = getLauncher();

if (launcher == null) return; // launcher not available for the tested platform; skip
String launcher = getLauncher();

System.out.println("Starting custom launcher:");
System.out.println("=========================");
System.out.println(" launcher : " + launcher[0]);
System.out.println(" libjvm : " + libjvmPath.toString());
System.out.println(" classpath : " + TEST_CLASSPATH);
System.out.println(" launcher : " + launcher);
System.out.println(" libjvm : " + libjvm);
System.out.println(" classpath : " + Utils.TEST_CLASS_PATH);
ProcessBuilder server = new ProcessBuilder(
launcher[1],
libjvmPath.toString(),
TEST_CLASSPATH,
launcher,
libjvm.toString(),
Utils.TEST_CLASS_PATH,
"TestApplication"
);

Expand Down Expand Up @@ -148,7 +97,7 @@ public static void main(String[] args) throws Exception {

ProcessBuilder client = ProcessTools.createJavaProcessBuilder(
"-cp",
TEST_CLASSPATH,
Utils.TEST_CLASS_PATH,
"--add-exports", "jdk.management.agent/jdk.internal.agent=ALL-UNNAMED",
"TestManager",
String.valueOf(serverPrc.pid()),
Expand Down Expand Up @@ -182,87 +131,8 @@ public static void main(String[] args) throws Exception {
}
}

private static Path findLibjvm(FileSystem FS) {
Path libjvmPath = findLibjvm(FS.getPath(TEST_JDK, "lib"));
return libjvmPath;
}

private static Path findLibjvm(Path libPath) {
// libjvm.so -> server/libjvm.so -> client/libjvm.so
Path libjvmPath = libPath.resolve("libjvm.so");
if (isFileOk(libjvmPath)) {
return libjvmPath;
}
libjvmPath = libPath.resolve("server/libjvm.so");
if (isFileOk(libjvmPath)) {
return libjvmPath;
}
libjvmPath = libPath.resolve("client/libjvm.so");
if (isFileOk(libPath)) {
return libjvmPath;
}

return null;
}

private static boolean isFileOk(Path path) {
return Files.isRegularFile(path) && Files.isReadable(path);
}

private static String getPlatform() {
String platform = null;
switch (OSNAME.toLowerCase()) {
case "linux": {
platform = "linux";
break;
}
case "sunos": {
platform = "solaris";
break;
}
default: {
platform = null;
}
}

return platform;
}

private static String[] getLauncher() throws IOException {
String platform = getPlatform();
if (platform == null) {
return null;
}

String launcher = TEST_SRC + File.separator + platform + "-" + ARCH +
File.separator + "launcher";

final FileSystem FS = FileSystems.getDefault();
Path launcherPath = FS.getPath(launcher);

final boolean hasLauncher = Files.isRegularFile(launcherPath, LinkOption.NOFOLLOW_LINKS)&&
Files.isReadable(launcherPath);
if (!hasLauncher) {
System.out.println("Launcher [" + launcher + "] does not exist. Skipping the test.");
return null;
}

// It is impossible to store an executable file in the source control
// We need to copy the launcher to the working directory
// and set the executable flag
Path localLauncherPath = FS.getPath(WORK_DIR, "launcher");
Files.copy(launcherPath, localLauncherPath,
StandardCopyOption.REPLACE_EXISTING);
if (!Files.isExecutable(localLauncherPath)) {
Set<PosixFilePermission> perms = new HashSet<>(
Files.getPosixFilePermissions(
localLauncherPath,
LinkOption.NOFOLLOW_LINKS
)
);
perms.add(PosixFilePermission.OWNER_EXECUTE);
Files.setPosixFilePermissions(localLauncherPath, perms);
}
return new String[] {launcher, localLauncherPath.toAbsolutePath().toString()};
private static String getLauncher() {
Path launcherPath = Paths.get(TEST_NATIVE_PATH, "launcher");
return launcherPath.toAbsolutePath().toString();
}
}
80 changes: 0 additions & 80 deletions test/jdk/sun/management/jmxremote/bootstrap/Makefile

This file was deleted.

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2006, 2007, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2006, 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
Expand All @@ -22,11 +22,11 @@
*/

/*
* A minature launcher for use by CustomLauncherTest.sh. It sets
* A miniature launcher for use by CustomLauncherTest.java test. It sets
* up the absolute minimal execution environment.
*/
#include <stdlib.h>
#include <strings.h>
#include <string.h>
#include <dlfcn.h>

#include "jni.h"
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit cd7d175

Please sign in to comment.