jdk-24/test/hotspot/jtreg/serviceability/sa/sadebugd/DebugdConnectTest.java
2021-06-10 17:06:19 +00:00

137 lines
4.6 KiB
Java

/*
* Copyright (c) 2019, 2021, 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 8209790
* @summary Checks ability for connecting to debug server (jstack, jmap, jinfo, jsnap)
* @requires vm.hasSA
* @requires os.family != "windows"
* @modules java.base/jdk.internal.misc
* @library /test/lib
*
* @run driver DebugdConnectTest
*/
import java.io.IOException;
import jdk.test.lib.JDKToolLauncher;
import jdk.test.lib.SA.SATestUtils;
import jdk.test.lib.Utils;
import jdk.test.lib.apps.LingeredApp;
import jdk.test.lib.process.OutputAnalyzer;
public class DebugdConnectTest {
private static OutputAnalyzer runJHSDB(String command, String serverID) throws IOException, InterruptedException {
JDKToolLauncher jhsdbLauncher = JDKToolLauncher.createUsingTestJDK("jhsdb");
jhsdbLauncher.addVMArgs(Utils.getFilteredTestJavaOpts("-showversion", "-Xcomp"));
jhsdbLauncher.addToolArg(command);
jhsdbLauncher.addToolArg("--connect");
if (serverID != null) {
jhsdbLauncher.addToolArg(serverID + "@localhost");
} else {
jhsdbLauncher.addToolArg("localhost");
}
Process jhsdb = (SATestUtils.createProcessBuilder(jhsdbLauncher)).start();
OutputAnalyzer out = new OutputAnalyzer(jhsdb);
jhsdb.waitFor();
System.out.println(out.getStdout());
System.err.println(out.getStderr());
return out;
}
private static void runJSTACK(String serverID) throws IOException, InterruptedException {
OutputAnalyzer out = runJHSDB("jstack", serverID);
out.shouldContain("LingeredApp");
out.stderrShouldBeEmptyIgnoreDeprecatedWarnings();
out.shouldHaveExitValue(0);
}
private static void runJMAP(String serverID) throws IOException, InterruptedException {
OutputAnalyzer out = runJHSDB("jmap", serverID);
out.shouldContain("JVM version is");
out.stderrShouldBeEmptyIgnoreDeprecatedWarnings();
out.shouldHaveExitValue(0);
}
private static void runJINFO(String serverID) throws IOException, InterruptedException {
OutputAnalyzer out = runJHSDB("jinfo", serverID);
out.shouldContain("Java System Properties:");
out.stderrShouldBeEmptyIgnoreDeprecatedWarnings();
out.shouldHaveExitValue(0);
}
private static void runJSNAP(String serverID) throws IOException, InterruptedException {
OutputAnalyzer out = runJHSDB("jsnap", serverID);
out.shouldContain("java.vm.name=");
out.stderrShouldBeEmptyIgnoreDeprecatedWarnings();
out.shouldHaveExitValue(0);
}
private static void runTests(String serverID, long debuggeePid) throws IOException, InterruptedException {
DebugdUtils debugd = new DebugdUtils();
if (serverID != null) {
debugd.setServerID(serverID);
}
debugd.attach(debuggeePid);
try {
runJSTACK(serverID);
runJMAP(serverID);
runJINFO(serverID);
runJSNAP(serverID);
} finally {
debugd.detach();
}
}
public static void main(String[] args) throws Exception {
SATestUtils.skipIfCannotAttach(); // throws SkippedException if attach not expected to work.
LingeredApp app = null;
try {
app = LingeredApp.startApp();
System.out.println("Started LingeredApp with pid " + app.getPid());
System.out.println("debugd connection test with server id:");
runTests("test", app.getPid());
System.out.println("debugd connection test without server id:");
runTests(null, app.getPid());
} finally {
LingeredApp.stopApp(app);
}
}
}