23
23
24
24
package jdk .test .lib .apps ;
25
25
26
- import java .io .BufferedReader ;
27
26
import java .io .ByteArrayOutputStream ;
28
27
import java .io .IOException ;
29
- import java .io .StringReader ;
30
28
import java .nio .file .Files ;
31
29
import java .nio .file .NoSuchFileException ;
32
30
import java .nio .file .Path ;
40
38
import java .util .Map ;
41
39
import java .util .stream .Collectors ;
42
40
import java .util .UUID ;
41
+
42
+ import jdk .test .lib .JDKToolFinder ;
43
43
import jdk .test .lib .Utils ;
44
44
import jdk .test .lib .process .OutputBuffer ;
45
45
import jdk .test .lib .process .StreamPumper ;
49
49
* to make further attach actions reliable across supported platforms
50
50
51
51
* 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);
53
62
* // do something
54
- * a.stopApp();
63
+ * a.stopApp(); // LingeredApp.stopApp(a) can be used as well
55
64
*
56
65
* or fine grained control
57
66
*
63
72
* a.deleteLock();
64
73
* a.waitAppTerminate();
65
74
*
66
- * Then you can work with app output and process object
75
+ * After app termination (stopApp/waitAppTermination) its output is available
67
76
*
68
77
* output = a.getAppOutput();
69
- * process = a.getProcess();
70
78
*
71
79
*/
72
80
public class LingeredApp {
@@ -144,7 +152,7 @@ public OutputBuffer getOutput() {
144
152
throw new RuntimeException ("Process is still alive. Can't get its output." );
145
153
}
146
154
if (output == null ) {
147
- output = OutputBuffer .of (stdoutBuffer .toString (), stderrBuffer .toString ());
155
+ output = OutputBuffer .of (stdoutBuffer .toString (), stderrBuffer .toString (), appProcess . exitValue () );
148
156
}
149
157
return output ;
150
158
}
@@ -168,18 +176,6 @@ private void startOutputPumpers() {
168
176
errPumperThread .start ();
169
177
}
170
178
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
-
183
179
/* Make sure all part of the app use the same method to get dates,
184
180
as different methods could produce different results
185
181
*/
@@ -241,14 +237,16 @@ public void waitAppTerminate() {
241
237
* The app touches the lock file when it's started
242
238
* wait while it happens. Caller have to delete lock on wait error.
243
239
*
244
- * @param timeout
240
+ * @param timeout timeout in seconds
245
241
* @throws java.io.IOException
246
242
*/
247
243
public void waitAppReady (long timeout ) throws IOException {
244
+ // adjust timeout for timeout_factor and convert to ms
245
+ timeout = Utils .adjustTimeout (timeout ) * 1000 ;
248
246
long here = epoch ();
249
247
while (true ) {
250
248
long epoch = epoch ();
251
- if (epoch - here > ( timeout * 1000 ) ) {
249
+ if (epoch - here > timeout ) {
252
250
throw new IOException ("App waiting timeout" );
253
251
}
254
252
@@ -271,30 +269,20 @@ public void waitAppReady(long timeout) throws IOException {
271
269
}
272
270
}
273
271
272
+ /**
273
+ * Waits the application to start with the default timeout.
274
+ */
275
+ public void waitAppReady () throws IOException {
276
+ waitAppReady (appWaitTime );
277
+ }
278
+
274
279
/**
275
280
* Analyze an environment and prepare a command line to
276
281
* run the app, app name should be added explicitly
277
282
*/
278
283
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" ));
298
286
Collections .addAll (cmd , vmArguments );
299
287
300
288
// Make sure we set correct classpath to run the app
@@ -318,12 +306,9 @@ protected void runAddAppName(List<String> cmd) {
318
306
*/
319
307
public void printCommandLine (List <String > cmd ) {
320
308
// 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: [" , "]" )));
327
312
}
328
313
329
314
/**
@@ -357,7 +342,7 @@ private void finishApp() {
357
342
" LingeredApp stderr: [" + output .getStderr () + "]\n " +
358
343
" LingeredApp exitValue = " + appProcess .exitValue ();
359
344
360
- System .err .println (msg );
345
+ System .out .println (msg );
361
346
}
362
347
}
363
348
@@ -398,7 +383,7 @@ public static void startAppExactJvmOpts(LingeredApp theApp, String... jvmOpts) t
398
383
theApp .createLock ();
399
384
try {
400
385
theApp .runAppExactJvmOpts (jvmOpts );
401
- theApp .waitAppReady (appWaitTime );
386
+ theApp .waitAppReady ();
402
387
} catch (Exception ex ) {
403
388
theApp .deleteLock ();
404
389
throw ex ;
@@ -428,7 +413,7 @@ public static LingeredApp startApp(String... additionalJvmOpts) throws IOExcepti
428
413
try {
429
414
startApp (a , additionalJvmOpts );
430
415
} catch (Exception ex ) {
431
- System .err .println ("LingeredApp failed to start: " + ex );
416
+ System .out .println ("LingeredApp failed to start: " + ex );
432
417
a .finishApp ();
433
418
throw ex ;
434
419
}
0 commit comments