langtools/test/jdk/jshell/CommandCompletionTest.java
author rfield
Thu, 20 Oct 2016 12:53:11 -0700
changeset 41635 cb3d04878117
parent 40765 6f9556cf4404
child 42265 b36ad5a64e75
permissions -rw-r--r--
8163840: jshell tool: provide way to display configuration settings Reviewed-by: jlahoda
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33362
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
     1
/*
36494
4175f47b2a50 8148316: jshell tool: Configurable output format
rfield
parents: 35359
diff changeset
     2
 * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
33362
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
     4
 *
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
     7
 * published by the Free Software Foundation.
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
     8
 *
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    13
 * accompanied this code).
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    14
 *
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    18
 *
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    21
 * questions.
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    22
 */
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    23
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    24
/*
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    25
 * @test
40765
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
    26
 * @bug 8144095 8164825
33362
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    27
 * @summary Test Command Completion
35359
f04501964016 8148147: Sync up @modules from jigsaw/jake
alanb
parents: 34570
diff changeset
    28
 * @modules jdk.compiler/com.sun.tools.javac.api
f04501964016 8148147: Sync up @modules from jigsaw/jake
alanb
parents: 34570
diff changeset
    29
 *          jdk.compiler/com.sun.tools.javac.main
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 36494
diff changeset
    30
 *          jdk.jdeps/com.sun.tools.javap
35359
f04501964016 8148147: Sync up @modules from jigsaw/jake
alanb
parents: 34570
diff changeset
    31
 *          jdk.jshell/jdk.internal.jshell.tool
33362
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    32
 * @library /tools/lib
36778
e04318f39f92 8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents: 36526
diff changeset
    33
 * @build toolbox.ToolBox toolbox.JarTask toolbox.JavacTask
e04318f39f92 8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents: 36526
diff changeset
    34
 * @build ReplToolTesting TestingInputStream Compiler
33362
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    35
 * @run testng CommandCompletionTest
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    36
 */
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    37
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    38
import java.io.IOException;
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    39
import java.nio.file.FileSystems;
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    40
import java.nio.file.Files;
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    41
import java.nio.file.Path;
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    42
import java.nio.file.Paths;
40765
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
    43
import java.util.Arrays;
33362
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    44
import java.util.Collections;
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    45
import java.util.List;
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    46
import java.util.function.Predicate;
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    47
import java.util.stream.Collectors;
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    48
import java.util.stream.Stream;
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    49
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    50
import org.testng.annotations.Test;
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    51
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    52
@Test
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    53
public class CommandCompletionTest extends ReplToolTesting {
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    54
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    55
    public void testCommand() {
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    56
        assertCompletion("/deb|", false);
41635
cb3d04878117 8163840: jshell tool: provide way to display configuration settings
rfield
parents: 40765
diff changeset
    57
        assertCompletion("/re|", false, "/reload ", "/reset ");
33362
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    58
        assertCompletion("/h|", false, "/help ", "/history ");
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    59
    }
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    60
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    61
    public void testList() {
40588
b5c32bfa9710 8160089: jshell tool: use new double-dash long-form command-line options
rfield
parents: 38531
diff changeset
    62
        test(false, new String[] {"--no-startup"},
34570
8a8f52a733dd 8144095: jshell tool: normalize command parameter handling
rfield
parents: 34475
diff changeset
    63
                a -> assertCompletion(a, "/l|", false, "/list "),
38520
17e72b872ffd 8157185: jshell tool: ambiguous format -- distinguished arguments should be options
rfield
parents: 38514
diff changeset
    64
                a -> assertCompletion(a, "/list |", false, "-all ", "-history ", "-start "),
17e72b872ffd 8157185: jshell tool: ambiguous format -- distinguished arguments should be options
rfield
parents: 38514
diff changeset
    65
                a -> assertCompletion(a, "/list -h|", false, "-history "),
34570
8a8f52a733dd 8144095: jshell tool: normalize command parameter handling
rfield
parents: 34475
diff changeset
    66
                a -> assertCompletion(a, "/list q|", false),
8a8f52a733dd 8144095: jshell tool: normalize command parameter handling
rfield
parents: 34475
diff changeset
    67
                a -> assertVariable(a, "int", "xray"),
38520
17e72b872ffd 8157185: jshell tool: ambiguous format -- distinguished arguments should be options
rfield
parents: 38514
diff changeset
    68
                a -> assertCompletion(a, "/list |", false, "-all ", "-history ", "-start ", "1", "xray"),
34570
8a8f52a733dd 8144095: jshell tool: normalize command parameter handling
rfield
parents: 34475
diff changeset
    69
                a -> assertCompletion(a, "/list x|", false, "xray")
8a8f52a733dd 8144095: jshell tool: normalize command parameter handling
rfield
parents: 34475
diff changeset
    70
        );
33362
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    71
    }
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    72
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    73
    public void testDrop() {
40588
b5c32bfa9710 8160089: jshell tool: use new double-dash long-form command-line options
rfield
parents: 38531
diff changeset
    74
        test(false, new String[] {"--no-startup"},
34570
8a8f52a733dd 8144095: jshell tool: normalize command parameter handling
rfield
parents: 34475
diff changeset
    75
                a -> assertCompletion(a, "/d|", false, "/drop "),
33362
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    76
                a -> assertClass(a, "class cTest {}", "class", "cTest"),
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    77
                a -> assertMethod(a, "int mTest() { return 0; }", "()I", "mTest"),
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    78
                a -> assertVariable(a, "int", "fTest"),
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    79
                a -> assertCompletion(a, "/drop |", false, "1", "2", "3", "cTest", "fTest", "mTest"),
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    80
                a -> assertCompletion(a, "/drop f|", false, "fTest")
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    81
        );
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    82
    }
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    83
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    84
    public void testEdit() {
40588
b5c32bfa9710 8160089: jshell tool: use new double-dash long-form command-line options
rfield
parents: 38531
diff changeset
    85
        test(false, new String[]{"--no-startup"},
34570
8a8f52a733dd 8144095: jshell tool: normalize command parameter handling
rfield
parents: 34475
diff changeset
    86
                a -> assertCompletion(a, "/e|", false, "/edit ", "/exit "),
8a8f52a733dd 8144095: jshell tool: normalize command parameter handling
rfield
parents: 34475
diff changeset
    87
                a -> assertCompletion(a, "/ed|", false, "/edit "),
33362
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    88
                a -> assertClass(a, "class cTest {}", "class", "cTest"),
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    89
                a -> assertMethod(a, "int mTest() { return 0; }", "()I", "mTest"),
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    90
                a -> assertVariable(a, "int", "fTest"),
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    91
                a -> assertCompletion(a, "/edit |", false, "1", "2", "3", "cTest", "fTest", "mTest"),
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    92
                a -> assertCompletion(a, "/edit f|", false, "fTest")
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    93
        );
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    94
    }
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    95
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    96
    public void testOpen() throws IOException {
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    97
        Compiler compiler = new Compiler();
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    98
        assertCompletion("/o|", false, "/open ");
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
    99
        List<String> p1 = listFiles(Paths.get(""));
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   100
        FileSystems.getDefault().getRootDirectories().forEach(s -> p1.add(s.toString()));
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   101
        Collections.sort(p1);
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   102
        assertCompletion("/open |", false, p1.toArray(new String[p1.size()]));
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   103
        Path classDir = compiler.getClassDir();
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   104
        List<String> p2 = listFiles(classDir);
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   105
        assertCompletion("/open " + classDir + "/|", false, p2.toArray(new String[p2.size()]));
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   106
    }
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   107
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   108
    public void testSave() throws IOException {
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   109
        Compiler compiler = new Compiler();
36494
4175f47b2a50 8148316: jshell tool: Configurable output format
rfield
parents: 35359
diff changeset
   110
        assertCompletion("/s|", false, "/save ", "/set ");
33362
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   111
        List<String> p1 = listFiles(Paths.get(""));
38520
17e72b872ffd 8157185: jshell tool: ambiguous format -- distinguished arguments should be options
rfield
parents: 38514
diff changeset
   112
        Collections.addAll(p1, "-all ", "-history ", "-start ");
33362
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   113
        FileSystems.getDefault().getRootDirectories().forEach(s -> p1.add(s.toString()));
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   114
        Collections.sort(p1);
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   115
        assertCompletion("/save |", false, p1.toArray(new String[p1.size()]));
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   116
        Path classDir = compiler.getClassDir();
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   117
        List<String> p2 = listFiles(classDir);
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   118
        assertCompletion("/save " + classDir + "/|",
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   119
                false, p2.toArray(new String[p2.size()]));
38520
17e72b872ffd 8157185: jshell tool: ambiguous format -- distinguished arguments should be options
rfield
parents: 38514
diff changeset
   120
        assertCompletion("/save -all " + classDir + "/|",
33362
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   121
                false, p2.toArray(new String[p2.size()]));
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   122
    }
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   123
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   124
    public void testClassPath() throws IOException {
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   125
        assertCompletion("/classp|", false, "/classpath ");
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   126
        Compiler compiler = new Compiler();
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   127
        Path outDir = compiler.getPath("testClasspathCompletion");
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   128
        Files.createDirectories(outDir);
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   129
        Files.createDirectories(outDir.resolve("dir"));
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   130
        createIfNeeded(outDir.resolve("test.jar"));
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   131
        createIfNeeded(outDir.resolve("test.zip"));
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   132
        compiler.compile(outDir, "package pkg; public class A { public String toString() { return \"A\"; } }");
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   133
        String jarName = "test.jar";
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   134
        compiler.jar(outDir, jarName, "pkg/A.class");
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   135
        compiler.getPath(outDir).resolve(jarName);
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   136
        List<String> paths = listFiles(outDir, CLASSPATH_FILTER);
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   137
        assertCompletion("/classpath " + outDir + "/|", false, paths.toArray(new String[paths.size()]));
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   138
    }
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   139
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   140
    public void testUserHome() throws IOException {
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   141
        List<String> completions;
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   142
        Path home = Paths.get(System.getProperty("user.home"));
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   143
        try (Stream<Path> content = Files.list(home)) {
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   144
            completions = content.filter(CLASSPATH_FILTER)
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   145
                                 .map(file -> file.getFileName().toString() + (Files.isDirectory(file) ? "/" : ""))
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   146
                                 .sorted()
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   147
                                 .collect(Collectors.toList());
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   148
        }
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   149
        assertCompletion("/classpath ~/|", false, completions.toArray(new String[completions.size()]));
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   150
    }
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   151
40765
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   152
    public void testSet() throws IOException {
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   153
        List<String> p1 = listFiles(Paths.get(""));
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   154
        FileSystems.getDefault().getRootDirectories().forEach(s -> p1.add(s.toString()));
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   155
        Collections.sort(p1);
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   156
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   157
        String[] modes = {"concise ", "normal ", "silent ", "verbose "};
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   158
        String[] options = {"-command", "-delete", "-quiet"};
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   159
        String[] modesWithOptions = Stream.concat(Arrays.stream(options), Arrays.stream(modes)).sorted().toArray(String[]::new);
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   160
        test(false, new String[] {"--no-startup"},
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   161
                a -> assertCompletion(a, "/se|", false, "/set "),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   162
                a -> assertCompletion(a, "/set |", false, "editor ", "feedback ", "format ", "mode ", "prompt ", "start ", "truncation "),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   163
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   164
                // /set editor
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   165
                a -> assertCompletion(a, "/set e|", false, "editor "),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   166
                a -> assertCompletion(a, "/set editor |", false, p1.toArray(new String[p1.size()])),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   167
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   168
                // /set feedback
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   169
                a -> assertCompletion(a, "/set fe|", false, "feedback "),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   170
                a -> assertCompletion(a, "/set fe |", false, modes),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   171
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   172
                // /set format
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   173
                a -> assertCompletion(a, "/set fo|", false, "format "),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   174
                a -> assertCompletion(a, "/set fo |", false, modes),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   175
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   176
                // /set mode
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   177
                a -> assertCompletion(a, "/set mo|", false, "mode "),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   178
                a -> assertCompletion(a, "/set mo |", false),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   179
                a -> assertCompletion(a, "/set mo newmode |", false, modesWithOptions),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   180
                a -> assertCompletion(a, "/set mo newmode -|", false, options),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   181
                a -> assertCompletion(a, "/set mo newmode -command |", false),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   182
                a -> assertCompletion(a, "/set mo newmode normal |", false, options),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   183
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   184
                // /set prompt
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   185
                a -> assertCompletion(a, "/set pro|", false, "prompt "),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   186
                a -> assertCompletion(a, "/set pro |", false, modes),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   187
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   188
                // /set start
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   189
                a -> assertCompletion(a, "/set st|", false, "start "),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   190
                a -> assertCompletion(a, "/set st |", false, p1.toArray(new String[p1.size()])),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   191
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   192
                // /set truncation
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   193
                a -> assertCompletion(a, "/set tr|", false, "truncation "),
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   194
                a -> assertCompletion(a, "/set tr |", false, modes)
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   195
        );
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   196
    }
6f9556cf4404 8164825: jshell tool: Completion for subcommand
shinyafox
parents: 40588
diff changeset
   197
33362
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   198
    private void createIfNeeded(Path file) throws IOException {
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   199
        if (!Files.exists(file))
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   200
            Files.createFile(file);
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   201
    }
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   202
    private List<String> listFiles(Path path) throws IOException {
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   203
        return listFiles(path, ACCEPT_ALL);
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   204
    }
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   205
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   206
    private List<String> listFiles(Path path, Predicate<? super Path> filter) throws IOException {
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   207
        try (Stream<Path> stream = Files.list(path)) {
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   208
            return stream.filter(filter)
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   209
                         .map(p -> p.getFileName().toString() + (Files.isDirectory(p) ? "/" : ""))
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   210
                         .sorted()
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   211
                         .collect(Collectors.toList());
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   212
        }
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   213
    }
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   214
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   215
    private static final Predicate<? super Path> ACCEPT_ALL =
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   216
            (file) -> !file.endsWith(".") && !file.endsWith("..");
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   217
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   218
    private static final Predicate<? super Path> CLASSPATH_FILTER =
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   219
            (file) -> ACCEPT_ALL.test(file) &&
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   220
                    (Files.isDirectory(file) ||
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   221
                     file.getFileName().toString().endsWith(".jar") ||
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   222
                     file.getFileName().toString().endsWith(".zip"));
65ec6de1d6b4 8134254: JShell API/tool: REPL for Java into JDK9
jlahoda
parents:
diff changeset
   223
}