ToolBasicTest.java revision 4167:9bd0f08b517a
1/*
2 * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24/*
25 * @test
26 * @bug 8143037 8142447 8144095 8140265 8144906 8146138 8147887 8147886 8148316 8148317 8143955 8157953 8080347 8154714 8166649 8167643 8170162 8172102 8165405 8174796 8174797 8175304 8167554 8180508
27 * @summary Tests for Basic tests for REPL tool
28 * @modules jdk.compiler/com.sun.tools.javac.api
29 *          jdk.compiler/com.sun.tools.javac.main
30 *          jdk.jdeps/com.sun.tools.javap
31 *          jdk.jshell/jdk.internal.jshell.tool
32 * @library /tools/lib
33 * @build toolbox.ToolBox toolbox.JarTask toolbox.JavacTask
34 * @build KullaTesting TestingInputStream Compiler
35 * @run testng/timeout=600 ToolBasicTest
36 */
37
38import java.io.File;
39import java.io.IOException;
40import java.io.PrintWriter;
41import java.io.StringWriter;
42import java.nio.file.Files;
43import java.nio.file.Path;
44import java.nio.file.Paths;
45import java.util.ArrayList;
46import java.util.Arrays;
47import java.util.List;
48import java.util.Locale;
49import java.util.Scanner;
50import java.util.function.BiFunction;
51import java.util.function.Consumer;
52import java.util.function.Function;
53import java.util.stream.Collectors;
54import java.util.stream.Stream;
55
56import org.testng.annotations.Test;
57
58import static org.testng.Assert.assertEquals;
59import static org.testng.Assert.assertTrue;
60import static org.testng.Assert.fail;
61
62@Test
63public class ToolBasicTest extends ReplToolTesting {
64
65    public void elideStartUpFromList() {
66        test(
67                (a) -> assertCommandOutputContains(a, "123", "==> 123"),
68                (a) -> assertCommandCheckOutput(a, "/list", (s) -> {
69                    int cnt;
70                    try (Scanner scanner = new Scanner(s)) {
71                        cnt = 0;
72                        while (scanner.hasNextLine()) {
73                            String line = scanner.nextLine();
74                            if (!line.trim().isEmpty()) {
75                                ++cnt;
76                            }
77                        }
78                    }
79                    assertEquals(cnt, 1, "Expected only one listed line");
80                })
81        );
82    }
83
84    public void elideStartUpFromSave() throws IOException {
85        Compiler compiler = new Compiler();
86        Path path = compiler.getPath("myfile");
87        test(
88                (a) -> assertCommandOutputContains(a, "123", "==> 123"),
89                (a) -> assertCommand(a, "/save " + path.toString(), "")
90        );
91        try (Stream<String> lines = Files.lines(path)) {
92            assertEquals(lines.count(), 1, "Expected only one saved line");
93        }
94    }
95
96    public void testInterrupt() {
97        ReplTest interrupt = (a) -> assertCommand(a, "\u0003", "");
98        for (String s : new String[] { "", "\u0003" }) {
99            test(false, new String[]{"--no-startup"},
100                    (a) -> assertCommand(a, "int a = 2 +" + s, ""),
101                    interrupt,
102                    (a) -> assertCommand(a, "int a\u0003", ""),
103                    (a) -> assertCommand(a, "int a = 2 + 2\u0003", ""),
104                    (a) -> assertCommandCheckOutput(a, "/vars", assertVariables()),
105                    (a) -> evaluateExpression(a, "int", "2", "2"),
106                    (a) -> assertCommandCheckOutput(a, "/vars", assertVariables()),
107                    (a) -> assertCommand(a, "void f() {", ""),
108                    (a) -> assertCommand(a, "int q = 10;" + s, ""),
109                    interrupt,
110                    (a) -> assertCommand(a, "void f() {}\u0003", ""),
111                    (a) -> assertCommandCheckOutput(a, "/methods", assertMethods()),
112                    (a) -> assertMethod(a, "int f() { return 0; }", "()int", "f"),
113                    (a) -> assertCommandCheckOutput(a, "/methods", assertMethods()),
114                    (a) -> assertCommand(a, "class A {" + s, ""),
115                    interrupt,
116                    (a) -> assertCommand(a, "class A {}\u0003", ""),
117                    (a) -> assertCommandCheckOutput(a, "/types", assertClasses()),
118                    (a) -> assertClass(a, "interface A {}", "interface", "A"),
119                    (a) -> assertCommandCheckOutput(a, "/types", assertClasses()),
120                    (a) -> assertCommand(a, "import java.util.stream." + s, ""),
121                    interrupt,
122                    (a) -> assertCommand(a, "import java.util.stream.\u0003", ""),
123                    (a) -> assertCommandCheckOutput(a, "/imports", assertImports()),
124                    (a) -> assertImport(a, "import java.util.stream.Stream", "", "java.util.stream.Stream"),
125                    (a) -> assertCommandCheckOutput(a, "/imports", assertImports())
126            );
127        }
128    }
129
130    private final Object lock = new Object();
131    private PrintWriter out;
132    private boolean isStopped;
133    private Thread t;
134    private void assertStop(boolean after, String cmd, String output) {
135        if (!after) {
136            isStopped = false;
137            StringWriter writer = new StringWriter();
138            out = new PrintWriter(writer);
139            setCommandInput(cmd + "\n");
140            t = new Thread(() -> {
141                try {
142                    // no chance to know whether cmd is being evaluated
143                    Thread.sleep(5000);
144                } catch (InterruptedException ignored) {
145                }
146                int i = 1;
147                int n = 30;
148                synchronized (lock) {
149                    do {
150                        setCommandInput("\u0003");
151                        if (!isStopped) {
152                            out.println("Not stopped. Try again: " + i);
153                            try {
154                                lock.wait(1000);
155                            } catch (InterruptedException ignored) {
156                            }
157                        }
158                    } while (i++ < n && !isStopped);
159                    if (!isStopped) {
160                        System.err.println(writer.toString());
161                        fail("Evaluation was not stopped: '" + cmd + "'");
162                    }
163                }
164            });
165            t.start();
166        } else {
167            synchronized (lock)  {
168                out.println("Evaluation was stopped successfully: '" + cmd + "'");
169                isStopped = true;
170                lock.notify();
171            }
172            try {
173                t.join();
174                t = null;
175            } catch (InterruptedException ignored) {
176            }
177            assertOutput(getCommandOutput(), "", "command");
178            assertOutput(getCommandErrorOutput(), "", "command error");
179            assertOutput(getUserOutput().trim(), output, "user");
180            assertOutput(getUserErrorOutput(), "", "user error");
181        }
182    }
183
184    public void testStop() {
185        test(
186                (a) -> assertStop(a, "while (true) {}", ""),
187                (a) -> assertStop(a, "while (true) { try { Thread.sleep(100); } catch (InterruptedException ex) { } }", "")
188        );
189    }
190
191    public void testRerun() {
192        test(false, new String[] {"--no-startup"},
193                (a) -> assertCommand(a, "/0", "|  No snippet with id: 0"),
194                (a) -> assertCommand(a, "/5", "|  No snippet with id: 5")
195        );
196        String[] codes = new String[] {
197                "int a = 0;", // var
198                "class A {}", // class
199                "void f() {}", // method
200                "bool b;", // active failed
201                "void g() { h(); }", // active corralled
202        };
203        List<ReplTest> tests = new ArrayList<>();
204        for (String s : codes) {
205            tests.add((a) -> assertCommand(a, s, null));
206        }
207        // Test /1 through /5 -- assure references are correct
208        for (int i = 0; i < codes.length; ++i) {
209            final int finalI = i;
210            Consumer<String> check = (s) -> {
211                String[] ss = s.split("\n");
212                assertEquals(ss[0], codes[finalI]);
213                assertTrue(ss.length > 1, s);
214            };
215            tests.add((a) -> assertCommandCheckOutput(a, "/" + (finalI + 1), check));
216        }
217        // Test /-1 ... note that the snippets added by history must be stepped over
218        for (int i = 0; i < codes.length; ++i) {
219            final int finalI = i;
220            Consumer<String> check = (s) -> {
221                String[] ss = s.split("\n");
222                assertEquals(ss[0], codes[codes.length - finalI - 1]);
223                assertTrue(ss.length > 1, s);
224            };
225            tests.add((a) -> assertCommandCheckOutput(a, "/-" + (2 * finalI + 1), check));
226        }
227        tests.add((a) -> assertCommandCheckOutput(a, "/!", assertStartsWith("int a = 0;")));
228        test(false, new String[]{"--no-startup"},
229                tests.toArray(new ReplTest[tests.size()]));
230    }
231
232    public void test8142447() {
233        Function<String, BiFunction<String, Integer, ReplTest>> assertRerun = cmd -> (code, assertionCount) ->
234                (a) -> assertCommandCheckOutput(a, cmd, s -> {
235                            String[] ss = s.split("\n");
236                            assertEquals(ss[0], code);
237                            loadVariable(a, "int", "assertionCount", Integer.toString(assertionCount), Integer.toString(assertionCount));
238                        });
239        ReplTest assertVariables = (a) -> assertCommandCheckOutput(a, "/v", assertVariables());
240
241        Compiler compiler = new Compiler();
242        Path startup = compiler.getPath("StartupFileOption/startup.txt");
243        compiler.writeToFile(startup, "int assertionCount = 0;\n" + // id: s1
244                "void add(int n) { assertionCount += n; }");
245        test(new String[]{"--startup", startup.toString()},
246                (a) -> assertCommand(a, "add(1)", ""), // id: 1
247                (a) -> assertCommandCheckOutput(a, "add(ONE)", s -> assertEquals(s.split("\n")[0], "|  Error:")), // id: e1
248                (a) -> assertVariable(a, "int", "ONE", "1", "1"),
249                assertRerun.apply("/1").apply("add(1)", 2), assertVariables,
250                assertRerun.apply("/e1").apply("add(ONE)", 3), assertVariables,
251                assertRerun.apply("/s1").apply("int assertionCount = 0;", 0), assertVariables
252        );
253
254        test(false, new String[] {"--no-startup"},
255                (a) -> assertCommand(a, "/s1", "|  No snippet with id: s1"),
256                (a) -> assertCommand(a, "/1", "|  No snippet with id: 1"),
257                (a) -> assertCommand(a, "/e1", "|  No snippet with id: e1")
258        );
259    }
260
261    public void testClasspathDirectory() {
262        Compiler compiler = new Compiler();
263        Path outDir = Paths.get("testClasspathDirectory");
264        compiler.compile(outDir, "package pkg; public class A { public String toString() { return \"A\"; } }");
265        Path classpath = compiler.getPath(outDir);
266        test(
267                (a) -> assertCommand(a, "/env --class-path " + classpath,
268                        "|  Setting new options and restoring state."),
269                (a) -> evaluateExpression(a, "pkg.A", "new pkg.A();", "A")
270        );
271        test(new String[] { "--class-path", classpath.toString() },
272                (a) -> evaluateExpression(a, "pkg.A", "new pkg.A();", "A")
273        );
274    }
275
276    public void testEnvInStartUp() {
277        Compiler compiler = new Compiler();
278        Path outDir = Paths.get("testClasspathDirectory");
279        compiler.compile(outDir, "package pkg; public class A { public String toString() { return \"A\"; } }");
280        Path classpath = compiler.getPath(outDir);
281        Path sup = compiler.getPath("startup.jsh");
282        compiler.writeToFile(sup,
283                "int xxx;\n" +
284                "/env -class-path " + classpath + "\n" +
285                "int aaa = 735;\n"
286        );
287        test(
288                (a) -> assertCommand(a, "/set start -retain " + sup, ""),
289                (a) -> assertCommand(a, "/reset",
290                        "|  Resetting state."),
291                (a) -> evaluateExpression(a, "pkg.A", "new pkg.A();", "A"),
292                (a) -> assertCommand(a, "aaa", "aaa ==> 735")
293        );
294        test(
295                (a) -> assertCommandOutputContains(a, "/env", "--class-path"),
296                (a) -> assertCommandOutputContains(a, "xxx", "cannot find symbol", "variable xxx"),
297                (a) -> evaluateExpression(a, "pkg.A", "new pkg.A();", "A"),
298                (a) -> assertCommand(a, "aaa", "aaa ==> 735")
299        );
300    }
301
302    private String makeSimpleJar() {
303        Compiler compiler = new Compiler();
304        Path outDir = Paths.get("testClasspathJar");
305        compiler.compile(outDir, "package pkg; public class A { public String toString() { return \"A\"; } }");
306        String jarName = "test.jar";
307        compiler.jar(outDir, jarName, "pkg/A.class");
308        return compiler.getPath(outDir).resolve(jarName).toString();
309    }
310
311    public void testClasspathJar() {
312        String jarPath = makeSimpleJar();
313        test(
314                (a) -> assertCommand(a, "/env --class-path " + jarPath,
315                        "|  Setting new options and restoring state."),
316                (a) -> evaluateExpression(a, "pkg.A", "new pkg.A();", "A")
317        );
318        test(new String[] { "--class-path", jarPath },
319                (a) -> evaluateExpression(a, "pkg.A", "new pkg.A();", "A")
320        );
321    }
322
323    public void testClasspathUserHomeExpansion() {
324        String jarPath = makeSimpleJar();
325        String tilde = "~" + File.separator;
326        test(
327                (a) -> assertCommand(a, "/env --class-path " + tilde + "forblato",
328                        "|  File '" + System.getProperty("user.home") + File.separator
329                                + "forblato' for '--class-path' is not found."),
330                (a) -> assertCommand(a, "/env --class-path " + jarPath + File.pathSeparator
331                                                            + tilde + "forblato",
332                        "|  File '" + System.getProperty("user.home") + File.separator
333                                + "forblato' for '--class-path' is not found.")
334        );
335    }
336
337    public void testBadClasspath() {
338        String jarPath = makeSimpleJar();
339        Compiler compiler = new Compiler();
340        Path t1 = compiler.getPath("whatever/thing.zip");
341        compiler.writeToFile(t1, "");
342        Path t2 = compiler.getPath("whatever/thing.jmod");
343        compiler.writeToFile(t2, "");
344        test(
345                (a) -> assertCommand(a, "/env --class-path " + t1.toString(),
346                        "|  Invalid '--class-path' argument: " + t1.toString()),
347                (a) -> assertCommand(a, "/env --class-path " + jarPath + File.pathSeparator + t1.toString(),
348                        "|  Invalid '--class-path' argument: " + t1.toString()),
349                (a) -> assertCommand(a, "/env --class-path " + t2.toString(),
350                        "|  Invalid '--class-path' argument: " + t2.toString())
351        );
352    }
353
354    public void testModulePath() {
355        Compiler compiler = new Compiler();
356        Path modsDir = Paths.get("mods");
357        Path outDir = Paths.get("mods", "org.astro");
358        compiler.compile(outDir, "package org.astro; public class World { public static String name() { return \"world\"; } }");
359        compiler.compile(outDir, "module org.astro { exports org.astro; }");
360        Path modsPath = compiler.getPath(modsDir);
361        test(new String[] { "--module-path", modsPath.toString(), "--add-modules", "org.astro" },
362                (a) -> assertCommand(a, "import org.astro.World;", ""),
363                (a) -> evaluateExpression(a, "String",
364                        "String.format(\"Greetings %s!\", World.name());",
365                        "\"Greetings world!\"")
366        );
367    }
368
369    public void testModulePathUserHomeExpansion() {
370        String tilde = "~" + File.separatorChar;
371        test(
372                (a) -> assertCommand(a, "/env --module-path " + tilde + "snardugol",
373                        "|  File '" + System.getProperty("user.home")
374                                + File.separatorChar + "snardugol' for '--module-path' is not found.")
375        );
376    }
377
378    public void testBadModulePath() {
379        Compiler compiler = new Compiler();
380        Path t1 = compiler.getPath("whatever/thing.zip");
381        compiler.writeToFile(t1, "");
382        test(
383                (a) -> assertCommand(a, "/env --module-path " + t1.toString(),
384                        "|  Invalid '--module-path' argument: " + t1.toString())
385        );
386    }
387
388    public void testStartupFileOption() {
389        Compiler compiler = new Compiler();
390        Path startup = compiler.getPath("StartupFileOption/startup.txt");
391        compiler.writeToFile(startup, "class A { public String toString() { return \"A\"; } }");
392        test(new String[]{"--startup", startup.toString()},
393                (a) -> evaluateExpression(a, "A", "new A()", "A")
394        );
395        test(new String[]{"--no-startup"},
396                (a) -> assertCommandCheckOutput(a, "Pattern.compile(\"x+\")", assertStartsWith("|  Error:\n|  cannot find symbol"))
397        );
398        test(
399                (a) -> assertCommand(a, "Pattern.compile(\"x+\")", "$1 ==> x+", "", null, "", "")
400        );
401    }
402
403    public void testLoadingFromArgs() {
404        Compiler compiler = new Compiler();
405        Path path = compiler.getPath("loading.repl");
406        compiler.writeToFile(path, "int a = 10; double x = 20; double a = 10;");
407        test(new String[] { path.toString() },
408                (a) -> assertCommand(a, "x", "x ==> 20.0"),
409                (a) -> assertCommand(a, "a", "a ==> 10.0")
410        );
411        Path unknown = compiler.getPath("UNKNOWN.jar");
412        test(Locale.ROOT, true, new String[]{unknown.toString()},
413                "|  File '" + unknown
414                + "' for 'jshell' is not found.");
415    }
416
417    public void testReset() {
418        test(
419                (a) -> assertReset(a, "/res"),
420                (a) -> assertCommandCheckOutput(a, "/methods", assertMethods()),
421                (a) -> assertVariable(a, "int", "x"),
422                (a) -> assertCommandCheckOutput(a, "/vars", assertVariables()),
423                (a) -> assertMethod(a, "void f() { }", "()void", "f"),
424                (a) -> assertCommandCheckOutput(a, "/methods", assertMethods()),
425                (a) -> assertClass(a, "class A { }", "class", "A"),
426                (a) -> assertCommandCheckOutput(a, "/types", assertClasses()),
427                (a) -> assertImport(a, "import java.util.stream.*;", "", "java.util.stream.*"),
428                (a) -> assertCommandCheckOutput(a, "/imports", assertImports()),
429                (a) -> assertReset(a, "/reset"),
430                (a) -> assertCommandCheckOutput(a, "/vars", assertVariables()),
431                (a) -> assertCommandCheckOutput(a, "/methods", assertMethods()),
432                (a) -> assertCommandCheckOutput(a, "/types", assertClasses()),
433                (a) -> assertCommandCheckOutput(a, "/imports", assertImports())
434        );
435    }
436
437    public void testOpen() {
438        Compiler compiler = new Compiler();
439        Path path = compiler.getPath("testOpen.repl");
440        compiler.writeToFile(path,
441                "int a = 10;\ndouble x = 20;\ndouble a = 10;\n" +
442                        "class A { public String toString() { return \"A\"; } }\nimport java.util.stream.*;");
443        for (String s : new String[]{"/o", "/open"}) {
444            test(
445                    (a) -> assertCommand(a, s + " " + path.toString(), ""),
446                    (a) -> assertCommand(a, "a", "a ==> 10.0"),
447                    (a) -> evaluateExpression(a, "A", "new A();", "A"),
448                    (a) -> evaluateExpression(a, "long", "Stream.of(\"A\").count();", "1"),
449                    (a) -> {
450                        loadVariable(a, "double", "x", "20.0", "20.0");
451                        loadVariable(a, "double", "a", "10.0", "10.0");
452                        loadVariable(a, "A", "$7", "new A();", "A");
453                        loadVariable(a, "long", "$8", "Stream.of(\"A\").count();", "1");
454                        loadClass(a, "class A { public String toString() { return \"A\"; } }",
455                                "class", "A");
456                        loadImport(a, "import java.util.stream.*;", "", "java.util.stream.*");
457                        assertCommandCheckOutput(a, "/types", assertClasses());
458                    },
459                    (a) -> assertCommandCheckOutput(a, "/methods", assertMethods()),
460                    (a) -> assertCommandCheckOutput(a, "/vars", assertVariables()),
461                    (a) -> assertCommandCheckOutput(a, "/imports", assertImports())
462            );
463            Path unknown = compiler.getPath("UNKNOWN.repl");
464            test(
465                    (a) -> assertCommand(a, s + " " + unknown,
466                            "|  File '" + unknown + "' for '/open' is not found.")
467            );
468        }
469    }
470
471    public void testOpenResource() {
472        test(
473                (a) -> assertCommand(a, "/open PRINTING", ""),
474                (a) -> assertCommandOutputContains(a, "/list",
475                        "void println", "System.out.printf"),
476                (a) -> assertCommand(a, "printf(\"%4.2f\", Math.PI)",
477                        "", "", null, "3.14", "")
478        );
479    }
480
481    public void testSave() throws IOException {
482        Compiler compiler = new Compiler();
483        Path path = compiler.getPath("testSave.repl");
484        {
485            List<String> list = Arrays.asList(
486                    "int a;",
487                    "class A { public String toString() { return \"A\"; } }"
488            );
489            test(
490                    (a) -> assertVariable(a, "int", "a"),
491                    (a) -> assertCommand(a, "()", null, null, null, "", ""),
492                    (a) -> assertClass(a, "class A { public String toString() { return \"A\"; } }", "class", "A"),
493                    (a) -> assertCommand(a, "/save " + path.toString(), "")
494            );
495            assertEquals(Files.readAllLines(path), list);
496        }
497        {
498            List<String> output = new ArrayList<>();
499            test(
500                    (a) -> assertCommand(a, "int a;", null),
501                    (a) -> assertCommand(a, "()", null, null, null, "", ""),
502                    (a) -> assertClass(a, "class A { public String toString() { return \"A\"; } }", "class", "A"),
503                    (a) -> assertCommandCheckOutput(a, "/list -all", (out) ->
504                                    output.addAll(Stream.of(out.split("\n"))
505                            .filter(str -> !str.isEmpty())
506                            .map(str -> str.substring(str.indexOf(':') + 2))
507                            .filter(str -> !str.startsWith("/"))
508                            .collect(Collectors.toList()))),
509                    (a) -> assertCommand(a, "/save -all " + path.toString(), "")
510            );
511            assertEquals(Files.readAllLines(path), output);
512        }
513        {
514            List<String> output = new ArrayList<>();
515            test(
516                    (a) -> assertCommand(a, "int a;", null),
517                    (a) -> assertCommand(a, "int b;", null),
518                    (a) -> assertCommand(a, "int c;", null),
519                    (a) -> assertClass(a, "class A { public String toString() { return \"A\"; } }", "class", "A"),
520                    (a) -> assertCommandCheckOutput(a, "/list b c a A", (out) ->
521                                    output.addAll(Stream.of(out.split("\n"))
522                            .filter(str -> !str.isEmpty())
523                            .map(str -> str.substring(str.indexOf(':') + 2))
524                            .filter(str -> !str.startsWith("/"))
525                            .collect(Collectors.toList()))),
526                    (a) -> assertCommand(a, "/save 2-3 1 4 " + path.toString(), "")
527            );
528            assertEquals(Files.readAllLines(path), output);
529        }
530        {
531            List<String> output = new ArrayList<>();
532            test(
533                    (a) -> assertVariable(a, "int", "a"),
534                    (a) -> assertCommand(a, "()", null, null, null, "", ""),
535                    (a) -> assertClass(a, "class A { public String toString() { return \"A\"; } }", "class", "A"),
536                    (a) -> assertCommandCheckOutput(a, "/history", (out) ->
537                                output.addAll(Stream.of(out.split("\n"))
538                            .filter(str -> !str.isEmpty())
539                            .collect(Collectors.toList()))),
540                    (a) -> assertCommand(a, "/save -history " + path.toString(), "")
541            );
542            output.add("/save -history " + path.toString());
543            assertEquals(Files.readAllLines(path), output);
544        }
545    }
546
547    public void testStartRetain() {
548        Compiler compiler = new Compiler();
549        Path startUpFile = compiler.getPath("startUp.txt");
550        test(
551                (a) -> assertVariable(a, "int", "a"),
552                (a) -> assertVariable(a, "double", "b", "10", "10.0"),
553                (a) -> assertMethod(a, "void f() {}", "()V", "f"),
554                (a) -> assertImport(a, "import java.util.stream.*;", "", "java.util.stream.*"),
555                (a) -> assertCommand(a, "/save " + startUpFile.toString(), null),
556                (a) -> assertCommand(a, "/set start -retain " + startUpFile.toString(), null)
557        );
558        Path unknown = compiler.getPath("UNKNOWN");
559        test(
560                (a) -> assertCommandOutputStartsWith(a, "/set start -retain " + unknown.toString(),
561                        "|  File '" + unknown + "' for '/set start' is not found.")
562        );
563        test(false, new String[0],
564                (a) -> {
565                    loadVariable(a, "int", "a");
566                    loadVariable(a, "double", "b", "10.0", "10.0");
567                    loadMethod(a, "void f() {}", "()void", "f");
568                    loadImport(a, "import java.util.stream.*;", "", "java.util.stream.*");
569                    assertCommandCheckOutput(a, "/types", assertClasses());
570                },
571                (a) -> assertCommandCheckOutput(a, "/vars", assertVariables()),
572                (a) -> assertCommandCheckOutput(a, "/methods", assertMethods()),
573                (a) -> assertCommandCheckOutput(a, "/imports", assertImports())
574        );
575    }
576
577    public void testStartSave() throws IOException {
578        Compiler compiler = new Compiler();
579        Path startSave = compiler.getPath("startSave.txt");
580        test(a -> assertCommand(a, "/save -start " + startSave.toString(), null));
581        List<String> lines = Files.lines(startSave)
582                .filter(s -> !s.isEmpty())
583                .collect(Collectors.toList());
584        assertEquals(lines, START_UP);
585    }
586
587    public void testConstrainedUpdates() {
588        test(
589                a -> assertClass(a, "class XYZZY { }", "class", "XYZZY"),
590                a -> assertVariable(a, "XYZZY", "xyzzy"),
591                a -> assertCommandCheckOutput(a, "import java.util.stream.*",
592                        (out) -> assertTrue(out.trim().isEmpty(), "Expected no output, got: " + out))
593        );
594    }
595
596    public void testRemoteExit() {
597        test(
598                a -> assertVariable(a, "int", "x"),
599                a -> assertCommandCheckOutput(a, "/vars", assertVariables()),
600                a -> assertCommandOutputContains(a, "System.exit(5);", "terminated"),
601                a -> assertCommandCheckOutput(a, "/vars", s ->
602                        assertTrue(s.trim().isEmpty(), s)),
603                a -> assertMethod(a, "void f() { }", "()void", "f"),
604                a -> assertCommandCheckOutput(a, "/methods", assertMethods())
605        );
606    }
607
608    public void testFeedbackNegative() {
609        test(a -> assertCommandCheckOutput(a, "/set feedback aaaa",
610                assertStartsWith("|  Does not match any current feedback mode")));
611    }
612
613    public void testFeedbackSilent() {
614        for (String off : new String[]{"s", "silent"}) {
615            test(
616                    a -> assertCommand(a, "/set feedback " + off, ""),
617                    a -> assertCommand(a, "int a", ""),
618                    a -> assertCommand(a, "void f() {}", ""),
619                    a -> assertCommandCheckOutput(a, "aaaa", assertStartsWith("|  Error:")),
620                    a -> assertCommandCheckOutput(a, "static void f() {}", assertStartsWith("|  Warning:"))
621            );
622        }
623    }
624
625    public void testFeedbackNormal() {
626        Compiler compiler = new Compiler();
627        Path testNormalFile = compiler.getPath("testConciseNormal");
628        String[] sources = new String[] {"int a", "void f() {}", "class A {}", "a = 10"};
629        String[] sources2 = new String[] {"int a //again", "void f() {int y = 4;}", "class A {} //again", "a = 10"};
630        String[] output = new String[] {
631                "a ==> 0",
632                "|  created method f()",
633                "|  created class A",
634                "a ==> 10"
635        };
636        compiler.writeToFile(testNormalFile, sources2);
637        for (String feedback : new String[]{"/set fe", "/set feedback"}) {
638            for (String feedbackState : new String[]{"n", "normal"}) {
639                test(
640                        a -> assertCommand(a, feedback + " " + feedbackState, "|  Feedback mode: normal"),
641                        a -> assertCommand(a, sources[0], output[0]),
642                        a -> assertCommand(a, sources[1], output[1]),
643                        a -> assertCommand(a, sources[2], output[2]),
644                        a -> assertCommand(a, sources[3], output[3]),
645                        a -> assertCommand(a, "/o " + testNormalFile.toString(), "")
646                );
647            }
648        }
649    }
650
651    public void testVarsWithNotActive() {
652        test(
653                a -> assertVariable(a, "Blath", "x"),
654                a -> assertCommandOutputContains(a, "/var -all", "(not-active)")
655        );
656    }
657
658    public void testHistoryReference() {
659        test(false, new String[]{"--no-startup"},
660                a -> assertCommand(a, "System.err.println(1)", "", "", null, "", "1\n"),
661                a -> assertCommand(a, "System.err.println(2)", "", "", null, "", "2\n"),
662                a -> assertCommand(a, "/-2", "System.err.println(1)", "", null, "", "1\n"),
663                a -> assertCommand(a, "/history",
664                                                    "/debug 0\n" +
665                                                    "System.err.println(1)\n" +
666                                                    "System.err.println(2)\n" +
667                                                    "System.err.println(1)\n" +
668                                                    "/history\n"),
669                a -> assertCommand(a, "/-2", "System.err.println(2)", "", null, "", "2\n"),
670                a -> assertCommand(a, "/!", "System.err.println(2)", "", null, "", "2\n"),
671                a -> assertCommand(a, "/2", "System.err.println(2)", "", null, "", "2\n"),
672                a -> assertCommand(a, "/1", "System.err.println(1)", "", null, "", "1\n")
673        );
674    }
675
676    public void testRerunIdRange() {
677        Compiler compiler = new Compiler();
678        Path startup = compiler.getPath("rangeStartup");
679        String[] startupSources = new String[] {
680            "boolean go = false",
681            "void println(String s) { if (go) System.out.println(s); }",
682            "void println(int i) { if (go) System.out.println(i); }",
683            "println(\"s4\")",
684            "println(\"s5\")",
685            "println(\"s6\")"
686        };
687        String[] sources = new String[] {
688            "frog",
689            "go = true",
690            "println(2)",
691            "println(3)",
692            "println(4)",
693            "querty"
694        };
695        compiler.writeToFile(startup, startupSources);
696        test(false, new String[]{"--startup", startup.toString()},
697                a -> assertCommandOutputStartsWith(a, sources[0], "|  Error:"),
698                a -> assertCommand(a, sources[1], "go ==> true", "", null, "", ""),
699                a -> assertCommand(a, sources[2], "", "", null, "2\n", ""),
700                a -> assertCommand(a, sources[3], "", "", null, "3\n", ""),
701                a -> assertCommand(a, sources[4], "", "", null, "4\n", ""),
702                a -> assertCommandOutputStartsWith(a, sources[5], "|  Error:"),
703                a -> assertCommand(a, "/3", "println(3)", "", null, "3\n", ""),
704                a -> assertCommand(a, "/s4", "println(\"s4\")", "", null, "s4\n", ""),
705                a -> assertCommandOutputStartsWith(a, "/e1", "frog\n|  Error:"),
706                a -> assertCommand(a, "/2-4",
707                        "println(2)\nprintln(3)\nprintln(4)",
708                        "", null, "2\n3\n4\n", ""),
709                a -> assertCommand(a, "/s4-s6",
710                        startupSources[3] + "\n" +startupSources[4] + "\n" +startupSources[5],
711                        "", null, "s4\ns5\ns6\n", ""),
712                a -> assertCommand(a, "/s4-4", null,
713                        "", null, "s4\ns5\ns6\n2\n3\n4\n", ""),
714                a -> assertCommandCheckOutput(a, "/e1-e2",
715                        s -> {
716                            assertTrue(s.trim().startsWith("frog\n|  Error:"),
717                                    "Output: \'" + s + "' does not start with: " + "|  Error:");
718                            assertTrue(s.trim().lastIndexOf("|  Error:") > 10,
719                                    "Output: \'" + s + "' does not have second: " + "|  Error:");
720                        }),
721                a -> assertCommand(a, "/4  s4 2",
722                        "println(4)\nprintln(\"s4\")\nprintln(2)",
723                        "", null, "4\ns4\n2\n", ""),
724                a -> assertCommand(a, "/s5 2-4 3",
725                        "println(\"s5\")\nprintln(2)\nprintln(3)\nprintln(4)\nprintln(3)",
726                        "", null, "s5\n2\n3\n4\n3\n", ""),
727                a -> assertCommand(a, "/2 ff", "|  No such snippet: ff"),
728                a -> assertCommand(a, "/4-2", "|  End of snippet range less than start: 4 - 2"),
729                a -> assertCommand(a, "/s5-s3", "|  End of snippet range less than start: s5 - s3"),
730                a -> assertCommand(a, "/4-s5", "|  End of snippet range less than start: 4 - s5")
731        );
732    }
733
734    @Test(enabled = false) // TODO 8158197
735    public void testHeadlessEditPad() {
736        String prevHeadless = System.getProperty("java.awt.headless");
737        try {
738            System.setProperty("java.awt.headless", "true");
739            test(
740                (a) -> assertCommandOutputStartsWith(a, "/edit printf", "|  Cannot launch editor -- unexpected exception:")
741            );
742        } finally {
743            System.setProperty("java.awt.headless", prevHeadless==null? "false" : prevHeadless);
744        }
745    }
746
747    public void testAddExports() {
748        test(false, new String[]{"--no-startup"},
749                a -> assertCommandOutputStartsWith(a, "import jdk.internal.misc.VM;", "|  Error:")
750        );
751        test(false, new String[]{"--no-startup",
752            "-R--add-exports", "-Rjava.base/jdk.internal.misc=ALL-UNNAMED",
753            "-C--add-exports", "-Cjava.base/jdk.internal.misc=ALL-UNNAMED"},
754                a -> assertImport(a, "import jdk.internal.misc.VM;", "", "jdk.internal.misc.VM"),
755                a -> assertCommand(a, "System.err.println(VM.isBooted())", "", "", null, "", "true\n")
756        );
757        test(false, new String[]{"--no-startup", "--add-exports", "java.base/jdk.internal.misc"},
758                a -> assertImport(a, "import jdk.internal.misc.VM;", "", "jdk.internal.misc.VM"),
759                a -> assertCommand(a, "System.err.println(VM.isBooted())", "", "", null, "", "true\n")
760        );
761    }
762
763}
764