File: Issue1972.java

package info (click to toggle)
jython 2.7.3%2Brepack1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 62,820 kB
  • sloc: python: 641,384; java: 306,981; xml: 2,066; sh: 514; ansic: 126; makefile: 77
file content (902 lines) | stat: -rw-r--r-- 30,744 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
// Copyright (c)2013 Jython Developers
package javatests;

import static org.junit.Assert.*;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.PrintStream;
import java.io.UnsupportedEncodingException;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.Properties;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.regex.Pattern;

import org.junit.After;
import org.junit.Test;

/**
 * Tests investigating issues with readline() first raised in Jython Issue #1972. These involve
 * sub-process input and output through the console streams. Although the console streams are used,
 * the JLine console handler is not engaged, as the test {@link #jythonJLineConsole()} verifies. You
 * could run this as a straight JUnit test, or in various debugging configurations, including remote
 * debugging of the subprocess.
 * <p>
 * This test passes in Jython 2.5.2 and 2.5.4rc1. The test {@link #jythonReadline()} fails with
 * Jython 2.5.3.
 * <p>
 * The bulk of this program is designed to be run as JUnit tests, but it also has a
 * {@link #main(String[])} method that echoes <code>System.in</code> onto <code>System.out</code>
 * either as byte data (characters effectively) or as hexadecimal. The early tests run this as a
 * subprocess to establish exactly what bytes, in particular exactly what line endings, are received
 * and emitted by a simple Java subprocess. The later tests run Jython as the subprocess, executing
 * various command line programs and interactive console commands.
 * <p>
 * This was developed on Windows. It tries to abstract away the particular choice of line separator,
 * so it will run on other platforms, but it hasn't been tested that this was successful.
 */
public class Issue1972 {

    /** Set to non-zero port number to enable subprocess debugging in selected tests. */
    static int DEBUG_PORT = 0; // 8000 or 0

    /** Control the amount of output to the console: 0, 1 or 2. */
    static int VERBOSE = 0;

    /** Lines in stdout (as regular expressions) to ignore when checking subprocess output. */
    static String[] STDOUT_IGNORE = {"Listening for transport dt_socket"};

    /** Lines in stderr (as regular expressions) to ignore when checking subprocess output. */
    static String[] STDERR_IGNORE = {"Jython 2", "\\*sys-package-mgr"};

    /**
     * Extra JVM options used when debugging is enabled. <code>DEBUG_PORT</code> will be substituted
     * for the <code>%d</code> marker in a <code>String.format</code> call. The debugger must attach
     * to the application after it is launched by this test programme.
     * */
    static final String DEBUG_OPTS =
            "-agentlib:jdwp=transport=dt_socket,server=y,address=%d,suspend=y";

    /** Subprocess created by {@link #setProcJava(String...)} */
    private Process proc = null;

    /** The <code>stdin</code> of the subprocess as a writable stream. */
    private OutputStream toProc;

    /** A queue handling the <code>stdout</code> of the subprocess. */
    private LineQueue inFromProc;
    /** A queue handling the <code>stderr</code> of the subprocess. */
    private LineQueue errFromProc;

    @After
    public void afterEachTest() {
        if (proc != null) {
            proc.destroy();
        }
        inFromProc = errFromProc = null;
    }

    static final Properties props = System.getProperties();
    static final String lineSeparator = props.getProperty("line.separator");
    static final String pythonHome = props.getProperty("python.home");

    /**
     * Check that on this system we know how to launch and read the error output from a subprocess.
     *
     * @throws IOException
     */
    @Test
    public void readStderr() throws Exception {
        announceTest(VERBOSE, "readStderr");

        // Run java -version, which outputs on System.err
        setProcJava("-version");
        proc.waitFor();

        // Dump to console
        outputAsHexDump(VERBOSE, inFromProc, errFromProc);

        assertEquals("Unexpected text in stdout", 0, inFromProc.size());
        assertTrue("No text output to stderr", errFromProc.size() > 0);
        String res = errFromProc.asStrings().get(0);
        assertTrue("stderr should mention version", res.contains("version"));
    }

    /**
     * Check that on this system we know how to launch and read standard output from a subprocess.
     *
     * @throws IOException
     */
    @Test
    public void readStdout() throws Exception {
        announceTest(VERBOSE, "readStdout");

        // Run the main of this class
        setProcJava(this.getClass().getName());
        proc.waitFor();

        outputAsHexDump(VERBOSE, inFromProc, errFromProc);

        checkErrFromProc();
        checkInFromProc("Hello");
    }

    /**
     * Check that on this system we know how to launch, write to and read from a subprocess.
     *
     * @throws IOException
     */
    @Test
    public void echoStdin() throws Exception {
        announceTest(VERBOSE, "echoStdin");

        // Run the main of this class as an echo programme
        setProcJava(this.getClass().getName(), "echo");

        writeToProc("spam");
        writeToProc("spam\r");
        writeToProc("spam\r\n");
        toProc.close();
        proc.waitFor();

        outputAsHexDump(VERBOSE, inFromProc, errFromProc);

        checkErrFromProc();
        checkInFromProc(false, "Hello\\r\\n", "spamspam\\r", "spam\\r\\n");
    }

    /**
     * Check that on this system line endings are received as expected by a subprocess.
     * <p>
     * <b>Observation from Windows 7 x64:</b> data is written to the subprocess once
     * <code>flush()</code> is called on the output stream. It can be read from
     * <code>System.in</code> in the subprocess, which of course writes hex to
     * <code>System.out</code> but that data is not received back in the parent process until
     * <code>System.out.println()</code> is called in the subprocess.
     *
     * @throws IOException
     */
    @Test
    public void echoStdinAsHex() throws Exception {
        announceTest(VERBOSE, "echoStdinAsHex");

        // Run the main of this class as an echo programme
        setProcJava(this.getClass().getName(), "hex");

        writeToProc("a\r");
        writeToProc("b\n");
        writeToProc("c\r\n");
        toProc.close();
        proc.waitFor();

        outputAsStrings(VERBOSE, inFromProc, errFromProc);

        checkErrFromProc();
        checkInFromProc("Hello", " 61", " 0d", " 62", " 0a", " 63", " 0d", " 0a");
    }

    /**
     * Test reading back from Jython subprocess with program on command-line.
     *
     * @throws Exception
     */
    @Test
    public void jythonSubprocess() throws Exception {
        announceTest(VERBOSE, "jythonSubprocess");

        // Run Jython hello programme
        setProcJava("org.python.util.jython", "-c", "print 'Hello'");
        proc.waitFor();

        outputAsHexDump(VERBOSE, inFromProc, errFromProc);

        checkErrFromProc();
        checkInFromProc("Hello");
    }

    /**
     * Discover what is handling the "console" when the program is on the command line only.
     *
     * @throws Exception
     */
    @Test
    public void jythonNonInteractive() throws Exception {
        announceTest(VERBOSE, "jythonNonInteractiveConsole");

        // Run Jython enquiry about console as -c program
        setProcJava("org.python.util.jython", "-c",
                "import sys; print type(sys._jy_console).__name__; print sys.stdin.isatty()");
        proc.waitFor();

        outputAsStrings(VERBOSE, inFromProc, errFromProc);

        checkErrFromProc();
        checkInFromProc("PlainConsole", "False");
    }

    /**
     * Discover what is handling the "console" when the program is entered interactively at the
     * Jython prompt.
     *
     * @throws Exception
     */
    @Test
    public void jythonInteractive() throws Exception {
        announceTest(VERBOSE, "jythonInteractiveConsole");

        // Run Jython with simple actions at the command prompt
        setProcJava(    //
                "-Dpython.home=" + pythonHome, //
                "org.python.util.jython");

        writeToProc("12+3\n");
        writeToProc("import sys\n");
        writeToProc("print type(sys._jy_console).__name__\n");
        writeToProc("print sys.stdin.isatty()\n");
        toProc.close();
        proc.waitFor();

        outputAsStrings(VERBOSE, inFromProc, errFromProc);

        checkErrFromProc("");   // stderr produces one empty line. Why?
        checkInFromProc("15", "PlainConsole", "False");
    }

    /**
     * Discover what is handling the "console" when the program is entered interactively at the
     * Jython prompt, and we try to force use of JLine (which fails).
     *
     * @throws Exception
     */
    @Test
    public void jythonJLineConsole() throws Exception {
        announceTest(VERBOSE, "jythonJLineConsole");

        // Run Jython with simple actions at the command prompt
        setProcJava(    //
                "-Dpython.console=org.python.util.JLineConsole", //
                "-Dpython.home=" + pythonHome, //
                "org.python.util.jython");

        writeToProc("12+3\n");
        writeToProc("import sys\n");
        writeToProc("print type(sys._jy_console).__name__\n");
        writeToProc("print sys.stdin.isatty()\n");
        toProc.close();
        proc.waitFor();

        outputAsStrings(VERBOSE, inFromProc, errFromProc);

        checkErrFromProc("");   // stderr produces one empty line. Why?

        // We can specify JLineConsole, but isatty() is not fooled.
        checkInFromProc("15", "PlainConsole", "False");
    }

    /**
     * Test writing to and reading back from Jython subprocess with echo program on command-line.
     *
     * @throws Exception
     */
    @Test
    public void jythonReadline() throws Exception {
        announceTest(VERBOSE, "jythonReadline");

        // Run Jython simple readline programme
        setProcJava( //
                "-Dpython.console=org.python.util.JLineConsole", //
                "-Dpython.home=" + pythonHome, //
                "org.python.util.jython", //
                "-c", //
                "import sys; sys.stdout.write(sys.stdin.readline()); sys.stdout.flush();" //
        );

        // Discard first output (banner or debugging sign-on)
        inFromProc.clear();
        errFromProc.clear();

        // Force lines in until something comes out or it breaks
        String spamString = "spam" + lineSeparator;
        byte[] spam = (spamString).getBytes();
        int count, limit = 9000;
        for (count = 0; count <= limit; count += spam.length) {
            toProc.write(spam);
            toProc.flush();
            // Give the sub-process a chance the first time and the last
            if (count == 0 || count + spam.length > limit) {
                Thread.sleep(10000);
            }
            // If anything came back, we're done
            if (inFromProc.size() > 0) {
                break;
            }
            if (errFromProc.size() > 0) {
                break;
            }
        }

        if (VERBOSE >= 1) {
            System.out.println(String.format("  count = %4d", count));
        }

        toProc.close();
        proc.waitFor();
        outputAsHexDump(VERBOSE, inFromProc, errFromProc);

        assertTrue("Subprocess did not respond promptly to first line", count == 0);
        checkInFromProc("spam");
    }

    /**
     * A main program that certain tests in the module will use as a subprocess. If an argument is
     * given it means:
     * <table>
     * <tr>
     * <td>"echo"</td>
     * <td>echo the characters received as text</td>
     * </tr>
     * <tr>
     * <td>"hex"</td>
     * <td>echo the characters as hexadecimal</td>
     * </tr>
     * </table>
     *
     * @param args
     * @throws IOException
     */
    public static void main(String args[]) throws IOException {

        System.out.println("Hello");

        if (args.length > 0) {
            String arg = args[0];

            if ("echo".equals(arg)) {
                int c;
                while ((c = System.in.read()) != -1) {
                    System.out.write(c);
                    System.out.flush();
                }

            } else if ("hex".equals(arg)) {
                int c;
                while ((c = System.in.read()) != -1) {
                    System.out.printf(" %02x", c);
                    System.out.println();
                }

            } else {
                System.err.println("Huh?");
            }
        }

    }

    /**
     * Invoke the java command with the given arguments. The class path will be the same as this
     * programme's class path (as in the property <code>java.class.path</code>).
     *
     * @param args further arguments to the program run
     * @return the running process
     * @throws IOException
     */
    static Process startJavaProcess(String... args) throws IOException {

        // Prepare arguments for the java command
        String javaClassPath = props.getProperty("java.class.path");

        List<String> cmd = new ArrayList<String>();
        cmd.add("java");
        cmd.add("-classpath");
        cmd.add(javaClassPath);
        if (DEBUG_PORT > 0) {
            cmd.add(String.format(DEBUG_OPTS, DEBUG_PORT));
        }
        for (String arg : args) {
            cmd.add(arg);
        }

        // Create the factory for the external process with the given command
        ProcessBuilder pb = new ProcessBuilder();
        pb.command(cmd);

        // If you want to check environment variables, it looks like this:
        /*
         * Map<String, String> env = pb.environment(); for (Map.Entry<String, String> entry :
         * env.entrySet()) { System.out.println(entry); }
         */

        // Actually create the external process and return the Java object representing it
        return pb.start();
    }

    /**
     * Invoke the java command with the given arguments. The class path will be the same as this
     * programme's class path (as in the property <code>java.class.path</code>). After the call,
     * {@link #proc} references the running process and {@link #inFromProc} and {@link #errFromProc}
     * are handling the <code>stdout</code> and <code>stderr</code> of the subprocess.
     *
     * @param args further arguments to the program run
     * @throws IOException
     */
    private void setProcJava(String... args) throws IOException {
        proc = startJavaProcess(args);
        inFromProc = new LineQueue(proc.getInputStream());
        errFromProc = new LineQueue(proc.getErrorStream());
        toProc = proc.getOutputStream();
    }

    /**
     * Write this string into the <code>stdin</code> of the subprocess. The platform default
     * encoding will be used.
     *
     * @param s to write
     * @throws IOException
     */
    private void writeToProc(String s) throws IOException {
        toProc.write(s.getBytes());
        toProc.flush();
    }

    /**
     * Check lines of {@link #queue} against expected text. Lines from the subprocess, after the
     * {@link #escape(byte[])} transormation has been applied, are expected to be equal to the
     * strings supplied, optionally after {@link #escapedSeparator} has been added to the expected
     * strings.
     *
     * @param message identifies the queue in error message
     * @param addSeparator if true, system-defined line separator expected
     * @param queue to be compared
     * @param toIgnore patterns defining lines to ignore while processing
     * @param expected lines of text (given without line separators)
     */
    private void checkFromProc(String message, boolean addSeparator, LineQueue queue,
            List<Pattern> toIgnore, String... expected) {

        if (addSeparator) {
            // Each expected string must be treated as if the lineSeparator were appended
            String escapedSeparator = "";
            try {
                escapedSeparator = escape(lineSeparator.getBytes("US-ASCII"));
            } catch (UnsupportedEncodingException e) {
                fail("Could not encode line separator as ASCII"); // Never happens
            }
            // ... so append one
            for (int i = 0; i < expected.length; i++) {
                expected[i] += escapedSeparator;
            }
        }

        // Get the escaped form of the byte buffers in the queue
        List<String> results = queue.asStrings();

        // Count through the results, comparing what we can't ignore to what was expected
        int count = 0;
        for (String r : results) {
            if (!beginsWithAnyOf(r, toIgnore)) {
                if (count < expected.length) {
                    // Check the line against the expected text
                    assertEquals(message, expected[count++], r);
                } else {
                    // Extra line will be a failure but continue to count
                    count++;
                }
            }
        }
        // Check number of lines we can't ignore against the number expected
        assertEquals(message, expected.length, count);
    }

    /** Compiled regular expressions for the lines to ignore (on stdout). */
    private static List<Pattern> stdoutIgnore;

    /** Compiled regular expressions for the lines to ignore (on stderr). */
    private static List<Pattern> stderrIgnore;

    /** If not already done, compile the regular expressions we need. */
    private static void compileToIgnore() {
        if (stdoutIgnore == null || stderrIgnore == null) {
            // Compile the lines to ignore to Pattern objects
            stdoutIgnore = compileAll(STDOUT_IGNORE);
            stderrIgnore = compileAll(STDERR_IGNORE);
        }
    }

    /** If not already done, compile one set of regular expressions to patterns. */
    private static List<Pattern> compileAll(String[] regex) {
        List<Pattern> result = new LinkedList<Pattern>();
        if (regex != null) {
            for (String s : regex) {
                Pattern p = Pattern.compile(s);
                result.add(p);
            }
        }
        return result;
    }

    /**
     * Compute whether a string begins with any of a set of strings.
     *
     * @param s the string in question
     * @param patterns to check against
     * @return
     */
    private static boolean beginsWithAnyOf(String s, List<Pattern> patterns) {
        for (Pattern p : patterns) {
            if (p.matcher(s).lookingAt()) {
                return true;
            }
        }
        return false;
    }

    /**
     * Check lines of {@link #inFromProc} against expected text.
     *
     * @param addSeparator if true, system-defined line separator expected
     * @param expected lines of text (given without line separators)
     */
    private void checkInFromProc(boolean addSeparator, String... expected) {
        compileToIgnore();        // Make sure we have the matcher patterns
        checkFromProc("subprocess stdout", addSeparator, inFromProc, stdoutIgnore, expected);
    }

    /**
     * Check lines of {@link #inFromProc} against expected text. Lines from the subprocess are
     * expected to be equal to those supplied after {@link #escapedSeparator} has been added.
     *
     * @param expected lines of text (given without line separators)
     */
    private void checkInFromProc(String... expected) {
        checkInFromProc(true, expected);
    }

    /**
     * Check lines of {@link #errFromProc} against expected text.
     *
     * @param addSeparator if true, system-defined line separator expected
     * @param expected lines of text (given without line separators)
     */
    private void checkErrFromProc(boolean addSeparator, String... expected) {
        compileToIgnore();        // Make sure we have the matcher patterns
        checkFromProc("subprocess stderr", addSeparator, errFromProc, stderrIgnore, expected);
    }

    /**
     * Check lines of {@link #errFromProc} against expected text. Lines from the subprocess are
     * expected to be equal to those supplied after {@link #escapedSeparator} has been added.
     *
     * @param expected lines of text (given without line separators)
     */
    private void checkErrFromProc(String... expected) {
        checkErrFromProc(true, expected);
    }

    /**
     * Brevity for announcing tests on the console when that is used to dump values.
     *
     * @param verbose if <1 suppress output
     * @param name of test
     */
    static void announceTest(int verbose, String name) {
        if (verbose >= 1) {
            System.out.println(String.format("------- Test: %-40s -------", name));
        }
    }

    /**
     * Output is System.out the formatted strings representing lines from a subprocess stdout.
     *
     * @param verbose if <2 suppress output
     * @param inFromProc lines received from the stdout of a subprocess
     */
    static void outputAsStrings(int verbose, LineQueue inFromProc) {
        if (verbose >= 2) {
            outputStreams(inFromProc.asStrings(), null);
        }
    }

    /**
     * Output is System.out the formatted strings representing lines from a subprocess stdout, and
     * if there are any, from stderr.
     *
     * @param verbose if <2 suppress output
     * @param inFromProc lines received from the stdout of a subprocess
     * @param errFromProc lines received from the stderr of a subprocess
     */
    static void outputAsStrings(int verbose, LineQueue inFromProc, LineQueue errFromProc) {
        if (verbose >= 2) {
            outputStreams(inFromProc.asStrings(), errFromProc.asStrings());
        }
    }

    /**
     * Output is System.out a hex dump of lines from a subprocess stdout.
     *
     * @param verbose if <2 suppress output
     * @param inFromProc lines received from the stdout of a subprocess
     */
    static void outputAsHexDump(int verbose, LineQueue inFromProc) {
        if (verbose >= 2) {
            outputStreams(inFromProc.asHexDump(), null);
        }
    }

    /**
     * Output is System.out a hex dump of lines from a subprocess stdout, and if there are any, from
     * stderr.
     *
     * @param verbose if <2 suppress output
     * @param inFromProc lines received from the stdout of a subprocess
     * @param errFromProc lines received from the stderr of a subprocess
     */
    static void outputAsHexDump(int verbose, LineQueue inFromProc, LineQueue errFromProc) {
        if (verbose >= 2) {
            outputStreams(inFromProc.asHexDump(), errFromProc.asHexDump());
        }
    }

    /**
     * Output is System.out the formatted strings representing lines from a subprocess stdout, and
     * if there are any, from stderr.
     *
     * @param stdout to output labelled "Output stream:"
     * @param stderr to output labelled "Error stream:" unless an empty list or null
     */
    private static void outputStreams(List<String> stdout, List<String> stderr) {

        PrintStream out = System.out;

        out.println("Output stream:");
        for (String line : stdout) {
            out.println(line);
        }

        if (stderr != null && stderr.size() > 0) {
            out.println("Error stream:");
            for (String line : stderr) {
                out.println(line);
            }
        }
    }

    private static final String ESC_CHARS = "\r\n\t\\\b\f";
    private static final String[] ESC_STRINGS = {"\\r", "\\n", "\\t", "\\\\", "\\b", "\\f"};

    /**
     * Helper to format one line of string output hex-escaping non-ASCII characters.
     *
     * @param sb to overwrite with the line of dump output
     * @param bb from which to take the bytes
     */
    private static void stringDump(StringBuilder sb, ByteBuffer bb) {

        // Reset the string buffer
        sb.setLength(0);
        int n = bb.remaining();

        for (int i = 0; i < n; i++) {
            // Read byte as character code (old-style ascii mindset at work here)
            char c = (char)(0xff & bb.get());

            // Check for C-style escape characters
            int j = ESC_CHARS.indexOf(c);
            if (j >= 0) {
                // Use replacement escape sequence
                sb.append(ESC_STRINGS[j]);

            } else if (c < ' ' || c > 126) {
                // Some non-printing character that doesn't have an escape
                sb.append(String.format("\\x%02x", c));

            } else {
                // A safe character
                sb.append(c);
            }
        }

    }

    /**
     * Convert bytes (interpreted as ASCII) to String where the non-ascii characters are escaped.
     *
     * @param b
     * @return
     */
    public static String escape(byte[] b) {
        StringBuilder sb = new StringBuilder(100);
        ByteBuffer bb = ByteBuffer.wrap(b);
        stringDump(sb, bb);
        return sb.toString();
    }

    /**
     * Wrapper for an InputStream that creates a thread to read it in the background into a queue of
     * ByteBuffer objects. Line endings (\r, \n or \r\n) are preserved. This is used in the tests to
     * see exactly what a subprocess produces, without blocking the subprocess as it writes. The
     * data are available as a hexadecimal dump (a bit like <code>od</code>) and as string, assuming
     * a UTF-8 encoding, or some subset like ASCII.
     */
    static class LineQueue extends LinkedBlockingQueue<ByteBuffer> {

        static final int BUFFER_SIZE = 1024;

        private InputStream in;
        ByteBuffer buf;
        boolean seenCR;

        Thread scribe;

        /**
         * Wrap a stream in the reader and immediately begin reading it.
         *
         * @param in
         */
        LineQueue(InputStream in) {
            this.in = in;

            scribe = new Thread() {

                @Override
                public void run() {
                    try {
                        runScribe();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }

            };
            // Set the scribe thread off filling buffers
            scribe.start();
        }

        /**
         * Scan every byte read from the input and squirrel them away in buffers, one per line,
         * where lines are delimited by \r, \n or \r\n..
         *
         * @throws IOException
         */
        private void runScribe() throws IOException {
            int c;
            newBuffer();

            while ((c = in.read()) != -1) {

                byte b = (byte)c;

                if (c == '\n') {
                    // This is always the end of a line
                    buf.put(b);
                    emitBuffer();
                    newBuffer();

                } else if (seenCR) {
                    // The line ended just before the new character
                    emitBuffer();
                    newBuffer();
                    buf.put(b);

                } else if (c == '\r') {
                    // This may be the end of a line (if next is not '\n')
                    buf.put(b);
                    seenCR = true;

                } else {
                    // Not the end of a line, just accumulate
                    buf.put(b);
                }
            }

            // Emit a partial line if there is one.
            if (buf.position() > 0) {
                emitBuffer();
            }
        }

        private void newBuffer() {
            buf = ByteBuffer.allocate(BUFFER_SIZE);
            seenCR = false;
        }

        private void emitBuffer() {
            buf.flip();
            add(buf);
        }

        /**
         * Return the contents of the queue as a list of escaped strings, interpreting the bytes as
         * ASCII.
         *
         * @return contents as strings
         */
        public List<String> asStrings() {

            // Make strings here:
            StringBuilder sb = new StringBuilder(100);

            // Build a list of decoded buffers
            List<String> list = new LinkedList<String>();
            for (ByteBuffer bb : this) {
                stringDump(sb, bb);
                list.add(sb.toString());
                bb.rewind();
            }
            return list;
        }

        /**
         * Return a hex dump the contents of the object as a list of strings
         *
         * @return dump as strings
         */
        public List<String> asHexDump() {
            final int LEN = 16;
            StringBuilder sb = new StringBuilder(4 * LEN + 20);
            // Build a list of dumped buffer rows
            List<String> list = new LinkedList<String>();
            for (ByteBuffer bb : this) {
                int n;
                while ((n = bb.remaining()) >= LEN) {
                    hexDump(sb, bb, n, LEN);
                    list.add(sb.toString());
                }
                if (n > 0) {
                    hexDump(sb, bb, n, LEN);
                    list.add(sb.toString());
                }
                bb.rewind();
            }
            return list;
        }

        /**
         * Helper to format one line of hex dump output up to a maximum number of bytes.
         *
         * @param sb to overwrite with the line of dump output
         * @param bb from which to take the bytes
         * @param n number of bytes to take (up to <code>len</code>)
         * @param len maximum number of bytes to take
         */
        private static void hexDump(StringBuilder sb, ByteBuffer bb, int n, int len) {

            // Reset the string buffer
            sb.setLength(0);

            // Impose the limit
            if (n > len) {
                n = len;
            }

            // The data on this row of output start here in the ByteBuffer
            bb.mark();
            sb.append(String.format("%4d: ", bb.position()));

            // Output n of them
            for (int i = 0; i < n; i++) {
                sb.append(String.format(" %02x", bb.get()));
            }

            // And make it up to the proper width
            for (int i = n; i < len; i++) {
                sb.append("   ");
            }

            // Now go back to the start of the row and output printable characters
            bb.reset();
            sb.append("|");
            for (int i = 0; i < n; i++) {
                char c = (char)(0xff & bb.get());
                if (c < ' ' || c > 126) {
                    c = '.';
                }
                sb.append(c);
            }
        }
    }

}