Skip to content

Commit 8a7ff65

Browse files
author
Alex Menkov
committedApr 29, 2020
8242522: Minor LingeredApp improvements
Reviewed-by: lmesnik, cjplummer
1 parent 560da25 commit 8a7ff65

File tree

5 files changed

+78
-65
lines changed

5 files changed

+78
-65
lines changed
 

‎test/hotspot/jtreg/serviceability/attach/AttachNegativePidTest.java

+13-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -40,15 +40,20 @@
4040
public class AttachNegativePidTest {
4141

4242
public static void main(String... args) throws Exception {
43-
LingeredApp app = LingeredApp.startApp();
44-
String strPID = Long.toString(-1 * app.getPid());
43+
LingeredApp app = null;
4544
try {
46-
VirtualMachine.attach(strPID);
47-
} catch (AttachNotSupportedException anse) {
48-
// Passed
49-
return;
45+
app = LingeredApp.startApp();
46+
String strPID = Long.toString(-1 * app.getPid());
47+
try {
48+
VirtualMachine.attach(strPID);
49+
} catch (AttachNotSupportedException anse) {
50+
// Passed
51+
return;
52+
}
53+
throw new RuntimeException("There is no expected AttachNotSupportedException for " + strPID);
54+
} finally {
55+
LingeredApp.stopApp(app);
5056
}
51-
throw new RuntimeException("There is no expected AttachNotSupportedException for " + strPID);
5257
}
5358

5459
}

‎test/jdk/sun/tools/jhsdb/heapconfig/TmtoolTestScenario.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ public List<String> getToolOutput() {
6666
* @return STDOUT of test app
6767
*/
6868
public List<String> getAppOutput() {
69-
return theApp.getAppOutput();
69+
return theApp.getOutput().getStdoutAsList();
7070
}
7171

7272
/**
7373
* @return Value of the app output with -XX:+PrintFlagsFinal as a map.
7474
*/
75-
public Map<String, String> parseFlagsFinal() {
76-
List<String> astr = theApp.getAppOutput();
75+
public Map<String, String> parseFlagsFinal() {
76+
List<String> astr = getAppOutput();
7777
Map<String, String> vmMap = new HashMap<String, String>();
7878

7979
for (String line : astr) {

‎test/jdk/sun/tools/jinfo/JInfoTest.java

+12-4
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,12 @@ private static void setFlag() throws Exception {
6868
output.shouldHaveExitValue(0);
6969
documentMatch(output.getStdout(), ".*MinHeapFreeRatio=1.*MinHeapFreeRatio=1.*");
7070
} finally {
71-
JInfoTestLingeredApp.stopApp(app1);
72-
JInfoTestLingeredApp.stopApp(app2);
71+
// LingeredApp.stopApp can throw an exception
72+
try {
73+
JInfoTestLingeredApp.stopApp(app1);
74+
} finally {
75+
JInfoTestLingeredApp.stopApp(app2);
76+
}
7377
}
7478
}
7579

@@ -92,8 +96,12 @@ private static void classNameMatch() throws Exception {
9296
// "Runtime Environment" written once per proc
9397
documentMatch(output.getStdout(), ".*Runtime Environment.*Runtime Environment.*");
9498
} finally {
95-
JInfoTestLingeredApp.stopApp(app1);
96-
JInfoTestLingeredApp.stopApp(app2);
99+
// LingeredApp.stopApp can throw an exception
100+
try {
101+
JInfoTestLingeredApp.stopApp(app1);
102+
} finally {
103+
JInfoTestLingeredApp.stopApp(app2);
104+
}
97105
}
98106
}
99107

‎test/lib/jdk/test/lib/apps/LingeredApp.java

+34-49
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,8 @@
2323

2424
package jdk.test.lib.apps;
2525

26-
import java.io.BufferedReader;
2726
import java.io.ByteArrayOutputStream;
2827
import java.io.IOException;
29-
import java.io.StringReader;
3028
import java.nio.file.Files;
3129
import java.nio.file.NoSuchFileException;
3230
import java.nio.file.Path;
@@ -40,6 +38,8 @@
4038
import java.util.Map;
4139
import java.util.stream.Collectors;
4240
import java.util.UUID;
41+
42+
import jdk.test.lib.JDKToolFinder;
4343
import jdk.test.lib.Utils;
4444
import jdk.test.lib.process.OutputBuffer;
4545
import jdk.test.lib.process.StreamPumper;
@@ -49,9 +49,18 @@
4949
* to make further attach actions reliable across supported platforms
5050
5151
* Caller example:
52-
* SmartTestApp a = SmartTestApp.startApp(cmd);
52+
*
53+
* LingeredApp a = LingeredApp.startApp(cmd);
54+
* // do something.
55+
* // a.getPid(). a.getProcess(), a.getProcessStdout() are available.
56+
* LingeredApp.stopApp(a);
57+
*
58+
* for use custom LingeredApp (class SmartTestApp extends LingeredApp):
59+
*
60+
* SmartTestApp = new SmartTestApp();
61+
* LingeredApp.startApp(a, cmd);
5362
* // do something
54-
* a.stopApp();
63+
* a.stopApp(); // LingeredApp.stopApp(a) can be used as well
5564
*
5665
* or fine grained control
5766
*
@@ -63,10 +72,9 @@
6372
* a.deleteLock();
6473
* a.waitAppTerminate();
6574
*
66-
* Then you can work with app output and process object
75+
* After app termination (stopApp/waitAppTermination) its output is available
6776
*
6877
* output = a.getAppOutput();
69-
* process = a.getProcess();
7078
*
7179
*/
7280
public class LingeredApp {
@@ -144,7 +152,7 @@ public OutputBuffer getOutput() {
144152
throw new RuntimeException("Process is still alive. Can't get its output.");
145153
}
146154
if (output == null) {
147-
output = OutputBuffer.of(stdoutBuffer.toString(), stderrBuffer.toString());
155+
output = OutputBuffer.of(stdoutBuffer.toString(), stderrBuffer.toString(), appProcess.exitValue());
148156
}
149157
return output;
150158
}
@@ -168,18 +176,6 @@ private void startOutputPumpers() {
168176
errPumperThread.start();
169177
}
170178

171-
/**
172-
*
173-
* @return application output as List. Empty List if application produced no output
174-
*/
175-
public List<String> getAppOutput() {
176-
if (appProcess.isAlive()) {
177-
throw new RuntimeException("Process is still alive. Can't get its output.");
178-
}
179-
BufferedReader bufReader = new BufferedReader(new StringReader(output.getStdout()));
180-
return bufReader.lines().collect(Collectors.toList());
181-
}
182-
183179
/* Make sure all part of the app use the same method to get dates,
184180
as different methods could produce different results
185181
*/
@@ -241,14 +237,16 @@ public void waitAppTerminate() {
241237
* The app touches the lock file when it's started
242238
* wait while it happens. Caller have to delete lock on wait error.
243239
*
244-
* @param timeout
240+
* @param timeout timeout in seconds
245241
* @throws java.io.IOException
246242
*/
247243
public void waitAppReady(long timeout) throws IOException {
244+
// adjust timeout for timeout_factor and convert to ms
245+
timeout = Utils.adjustTimeout(timeout) * 1000;
248246
long here = epoch();
249247
while (true) {
250248
long epoch = epoch();
251-
if (epoch - here > (timeout * 1000)) {
249+
if (epoch - here > timeout) {
252250
throw new IOException("App waiting timeout");
253251
}
254252

@@ -271,30 +269,20 @@ public void waitAppReady(long timeout) throws IOException {
271269
}
272270
}
273271

272+
/**
273+
* Waits the application to start with the default timeout.
274+
*/
275+
public void waitAppReady() throws IOException {
276+
waitAppReady(appWaitTime);
277+
}
278+
274279
/**
275280
* Analyze an environment and prepare a command line to
276281
* run the app, app name should be added explicitly
277282
*/
278283
private List<String> runAppPrepare(String[] vmArguments) {
279-
// We should always use testjava or throw an exception,
280-
// so we can't use JDKToolFinder.getJDKTool("java");
281-
// that falls back to compile java on error
282-
String jdkPath = System.getProperty("test.jdk");
283-
if (jdkPath == null) {
284-
// we are not under jtreg, try env
285-
Map<String, String> env = System.getenv();
286-
jdkPath = env.get("TESTJAVA");
287-
}
288-
289-
if (jdkPath == null) {
290-
throw new RuntimeException("Can't determine jdk path neither test.jdk property no TESTJAVA env are set");
291-
}
292-
293-
String osname = System.getProperty("os.name");
294-
String javapath = jdkPath + ((osname.startsWith("window")) ? "/bin/java.exe" : "/bin/java");
295-
296-
List<String> cmd = new ArrayList<String>();
297-
cmd.add(javapath);
284+
List<String> cmd = new ArrayList<>();
285+
cmd.add(JDKToolFinder.getTestJDKTool("java"));
298286
Collections.addAll(cmd, vmArguments);
299287

300288
// Make sure we set correct classpath to run the app
@@ -318,12 +306,9 @@ protected void runAddAppName(List<String> cmd) {
318306
*/
319307
public void printCommandLine(List<String> cmd) {
320308
// A bit of verbosity
321-
StringBuilder cmdLine = new StringBuilder();
322-
for (String strCmd : cmd) {
323-
cmdLine.append("'").append(strCmd).append("' ");
324-
}
325-
326-
System.err.println("Command line: [" + cmdLine.toString() + "]");
309+
System.out.println(cmd.stream()
310+
.map(s -> "'" + s + "'")
311+
.collect(Collectors.joining(" ", "Command line: [", "]")));
327312
}
328313

329314
/**
@@ -357,7 +342,7 @@ private void finishApp() {
357342
" LingeredApp stderr: [" + output.getStderr() + "]\n" +
358343
" LingeredApp exitValue = " + appProcess.exitValue();
359344

360-
System.err.println(msg);
345+
System.out.println(msg);
361346
}
362347
}
363348

@@ -398,7 +383,7 @@ public static void startAppExactJvmOpts(LingeredApp theApp, String... jvmOpts) t
398383
theApp.createLock();
399384
try {
400385
theApp.runAppExactJvmOpts(jvmOpts);
401-
theApp.waitAppReady(appWaitTime);
386+
theApp.waitAppReady();
402387
} catch (Exception ex) {
403388
theApp.deleteLock();
404389
throw ex;
@@ -428,7 +413,7 @@ public static LingeredApp startApp(String... additionalJvmOpts) throws IOExcepti
428413
try {
429414
startApp(a, additionalJvmOpts);
430415
} catch (Exception ex) {
431-
System.err.println("LingeredApp failed to start: " + ex);
416+
System.out.println("LingeredApp failed to start: " + ex);
432417
a.finishApp();
433418
throw ex;
434419
}

‎test/lib/jdk/test/lib/process/OutputBuffer.java

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,13 +23,17 @@
2323

2424
package jdk.test.lib.process;
2525

26+
import java.io.BufferedReader;
2627
import java.io.ByteArrayOutputStream;
2728
import java.io.InputStream;
29+
import java.io.StringReader;
2830
import java.nio.charset.Charset;
2931
import java.time.Instant;
32+
import java.util.List;
3033
import java.util.concurrent.CancellationException;
3134
import java.util.concurrent.ExecutionException;
3235
import java.util.concurrent.Future;
36+
import java.util.stream.Collectors;
3337

3438
public interface OutputBuffer {
3539
public static class OutputBufferException extends RuntimeException {
@@ -46,6 +50,17 @@ public OutputBufferException(Throwable cause) {
4650
* @return stdout result
4751
*/
4852
public String getStdout();
53+
54+
/**
55+
* Returns the stdout as a list.
56+
* Empty List if application produced no output.
57+
*/
58+
default public List<String> getStdoutAsList() {
59+
return new BufferedReader(new StringReader(getStdout()))
60+
.lines()
61+
.collect(Collectors.toList());
62+
}
63+
4964
/**
5065
* Returns the stderr result
5166
*

0 commit comments

Comments
 (0)
Please sign in to comment.