author | rfield |
Mon, 06 Mar 2017 08:57:41 -0800 | |
changeset 44065 | d0a8a4c41c85 |
parent 43856 | fcdebb803c62 |
child 45215 | c9477e22877f |
permissions | -rw-r--r-- |
33362 | 1 |
/* |
36494 | 2 |
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. |
33362 | 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 |
|
44065
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
26 |
* @bug 8143037 8142447 8144095 8140265 8144906 8146138 8147887 8147886 8148316 8148317 8143955 8157953 8080347 8154714 8166649 8167643 8170162 8172102 8165405 8174796 8174797 8175304 |
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36718
diff
changeset
|
27 |
* @summary Tests for Basic tests for REPL tool |
37389 | 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 |
|
34570
8a8f52a733dd
8144095: jshell tool: normalize command parameter handling
rfield
parents:
34481
diff
changeset
|
32 |
* @library /tools/lib |
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36718
diff
changeset
|
33 |
* @build toolbox.ToolBox toolbox.JarTask toolbox.JavacTask |
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36718
diff
changeset
|
34 |
* @build KullaTesting TestingInputStream Compiler |
35002 | 35 |
* @run testng/timeout=600 ToolBasicTest |
33362 | 36 |
*/ |
37 |
||
43856
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
38 |
import java.io.File; |
33362 | 39 |
import java.io.IOException; |
40 |
import java.io.PrintWriter; |
|
41 |
import java.io.StringWriter; |
|
42 |
import java.nio.file.Files; |
|
43 |
import java.nio.file.Path; |
|
44 |
import java.nio.file.Paths; |
|
45 |
import java.util.ArrayList; |
|
46 |
import java.util.Arrays; |
|
47 |
import java.util.List; |
|
36990 | 48 |
import java.util.Locale; |
33362 | 49 |
import java.util.Scanner; |
34477
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
50 |
import java.util.function.BiFunction; |
33362 | 51 |
import java.util.function.Consumer; |
34477
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
52 |
import java.util.function.Function; |
33362 | 53 |
import java.util.stream.Collectors; |
54 |
import java.util.stream.Stream; |
|
55 |
||
56 |
import org.testng.annotations.Test; |
|
57 |
||
58 |
import static org.testng.Assert.assertEquals; |
|
59 |
import static org.testng.Assert.assertTrue; |
|
60 |
import static org.testng.Assert.fail; |
|
61 |
||
62 |
@Test |
|
63 |
public class ToolBasicTest extends ReplToolTesting { |
|
64 |
||
65 |
public void elideStartUpFromList() { |
|
66 |
test( |
|
38613 | 67 |
(a) -> assertCommandOutputContains(a, "123", "==> 123"), |
33362 | 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( |
|
38613 | 88 |
(a) -> assertCommandOutputContains(a, "123", "==> 123"), |
33362 | 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" }) { |
|
40588
b5c32bfa9710
8160089: jshell tool: use new double-dash long-form command-line options
rfield
parents:
40516
diff
changeset
|
99 |
test(false, new String[]{"--no-startup"}, |
33362 | 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", ""), |
|
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
104 |
(a) -> assertCommandCheckOutput(a, "/vars", assertVariables()), |
33362 | 105 |
(a) -> evaluateExpression(a, "int", "2", "2"), |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
106 |
(a) -> assertCommandCheckOutput(a, "/vars", assertVariables()), |
33362 | 107 |
(a) -> assertCommand(a, "void f() {", ""), |
108 |
(a) -> assertCommand(a, "int q = 10;" + s, ""), |
|
109 |
interrupt, |
|
110 |
(a) -> assertCommand(a, "void f() {}\u0003", ""), |
|
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
111 |
(a) -> assertCommandCheckOutput(a, "/methods", assertMethods()), |
33362 | 112 |
(a) -> assertMethod(a, "int f() { return 0; }", "()int", "f"), |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
113 |
(a) -> assertCommandCheckOutput(a, "/methods", assertMethods()), |
33362 | 114 |
(a) -> assertCommand(a, "class A {" + s, ""), |
115 |
interrupt, |
|
116 |
(a) -> assertCommand(a, "class A {}\u0003", ""), |
|
38514
f7df9ab653b0
8153920: jshell tool: allow a parameter on the /vars /methods /classes commands
rfield
parents:
37389
diff
changeset
|
117 |
(a) -> assertCommandCheckOutput(a, "/types", assertClasses()), |
33362 | 118 |
(a) -> assertClass(a, "interface A {}", "interface", "A"), |
38514
f7df9ab653b0
8153920: jshell tool: allow a parameter on the /vars /methods /classes commands
rfield
parents:
37389
diff
changeset
|
119 |
(a) -> assertCommandCheckOutput(a, "/types", assertClasses()), |
33714
8064f484590e
8142384: JShell tool: New command: /imports, /i which show the list of imported packages or classes, etc...
shinyafox
parents:
33362
diff
changeset
|
120 |
(a) -> assertCommand(a, "import java.util.stream." + s, ""), |
8064f484590e
8142384: JShell tool: New command: /imports, /i which show the list of imported packages or classes, etc...
shinyafox
parents:
33362
diff
changeset
|
121 |
interrupt, |
8064f484590e
8142384: JShell tool: New command: /imports, /i which show the list of imported packages or classes, etc...
shinyafox
parents:
33362
diff
changeset
|
122 |
(a) -> assertCommand(a, "import java.util.stream.\u0003", ""), |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
123 |
(a) -> assertCommandCheckOutput(a, "/imports", assertImports()), |
33714
8064f484590e
8142384: JShell tool: New command: /imports, /i which show the list of imported packages or classes, etc...
shinyafox
parents:
33362
diff
changeset
|
124 |
(a) -> assertImport(a, "import java.util.stream.Stream", "", "java.util.stream.Stream"), |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
125 |
(a) -> assertCommandCheckOutput(a, "/imports", assertImports()) |
33362 | 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"); |
|
37389 | 179 |
assertOutput(getUserOutput().trim(), output, "user"); |
33362 | 180 |
assertOutput(getUserErrorOutput(), "", "user error"); |
181 |
} |
|
182 |
} |
|
183 |
||
184 |
public void testStop() { |
|
185 |
test( |
|
38613 | 186 |
(a) -> assertStop(a, "while (true) {}", ""), |
187 |
(a) -> assertStop(a, "while (true) { try { Thread.sleep(100); } catch (InterruptedException ex) { } }", "") |
|
33362 | 188 |
); |
189 |
} |
|
190 |
||
191 |
public void testRerun() { |
|
40588
b5c32bfa9710
8160089: jshell tool: use new double-dash long-form command-line options
rfield
parents:
40516
diff
changeset
|
192 |
test(false, new String[] {"--no-startup"}, |
37389 | 193 |
(a) -> assertCommand(a, "/0", "| No such command or snippet id: /0\n| Type /help for help."), |
194 |
(a) -> assertCommand(a, "/5", "| No such command or snippet id: /5\n| Type /help for help.") |
|
33362 | 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 |
} |
|
38613 | 207 |
// Test /1 through /5 -- assure references are correct |
33362 | 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 |
} |
|
38613 | 217 |
// Test /-1 ... note that the snippets added by history must be stepped over |
33362 | 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 |
}; |
|
38613 | 225 |
tests.add((a) -> assertCommandCheckOutput(a, "/-" + (2 * finalI + 1), check)); |
33362 | 226 |
} |
38613 | 227 |
tests.add((a) -> assertCommandCheckOutput(a, "/!", assertStartsWith("int a = 0;"))); |
40588
b5c32bfa9710
8160089: jshell tool: use new double-dash long-form command-line options
rfield
parents:
40516
diff
changeset
|
228 |
test(false, new String[]{"--no-startup"}, |
33362 | 229 |
tests.toArray(new ReplTest[tests.size()])); |
230 |
} |
|
231 |
||
34477
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
232 |
public void test8142447() { |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
233 |
Function<String, BiFunction<String, Integer, ReplTest>> assertRerun = cmd -> (code, assertionCount) -> |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
234 |
(a) -> assertCommandCheckOutput(a, cmd, s -> { |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
235 |
String[] ss = s.split("\n"); |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
236 |
assertEquals(ss[0], code); |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
237 |
loadVariable(a, "int", "assertionCount", Integer.toString(assertionCount), Integer.toString(assertionCount)); |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
238 |
}); |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
239 |
ReplTest assertVariables = (a) -> assertCommandCheckOutput(a, "/v", assertVariables()); |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
240 |
|
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
241 |
Compiler compiler = new Compiler(); |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
242 |
Path startup = compiler.getPath("StartupFileOption/startup.txt"); |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
243 |
compiler.writeToFile(startup, "int assertionCount = 0;\n" + // id: s1 |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
244 |
"void add(int n) { assertionCount += n; }"); |
40588
b5c32bfa9710
8160089: jshell tool: use new double-dash long-form command-line options
rfield
parents:
40516
diff
changeset
|
245 |
test(new String[]{"--startup", startup.toString()}, |
34477
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
246 |
(a) -> assertCommand(a, "add(1)", ""), // id: 1 |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
247 |
(a) -> assertCommandCheckOutput(a, "add(ONE)", s -> assertEquals(s.split("\n")[0], "| Error:")), // id: e1 |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
248 |
(a) -> assertVariable(a, "int", "ONE", "1", "1"), |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
249 |
assertRerun.apply("/1").apply("add(1)", 2), assertVariables, |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
250 |
assertRerun.apply("/e1").apply("add(ONE)", 3), assertVariables, |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
251 |
assertRerun.apply("/s1").apply("int assertionCount = 0;", 0), assertVariables |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
252 |
); |
64001b0533a2
8142447: JShell tool: Command change: re-run n-th command should be re-run by id
rfield
parents:
34475
diff
changeset
|
253 |
|
40588
b5c32bfa9710
8160089: jshell tool: use new double-dash long-form command-line options
rfield
parents:
40516
diff
changeset
|
254 |
test(false, new String[] {"--no-startup"}, |
37389 | 255 |
(a) -> assertCommand(a, "/s1", "| No such command or snippet id: /s1\n| Type /help for help."), |
256 |
(a) -> assertCommand(a, "/1", "| No such command or snippet id: /1\n| Type /help for help."), |
|
257 |
(a) -> assertCommand(a, "/e1", "| No such command or snippet id: /e1\n| Type /help for help.") |
|
33714
8064f484590e
8142384: JShell tool: New command: /imports, /i which show the list of imported packages or classes, etc...
shinyafox
parents:
33362
diff
changeset
|
258 |
); |
8064f484590e
8142384: JShell tool: New command: /imports, /i which show the list of imported packages or classes, etc...
shinyafox
parents:
33362
diff
changeset
|
259 |
} |
8064f484590e
8142384: JShell tool: New command: /imports, /i which show the list of imported packages or classes, etc...
shinyafox
parents:
33362
diff
changeset
|
260 |
|
33362 | 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( |
|
43038 | 267 |
(a) -> assertCommand(a, "/env --class-path " + classpath, |
268 |
"| Setting new options and restoring state."), |
|
37389 | 269 |
(a) -> evaluateExpression(a, "pkg.A", "new pkg.A();", "A") |
33362 | 270 |
); |
40588
b5c32bfa9710
8160089: jshell tool: use new double-dash long-form command-line options
rfield
parents:
40516
diff
changeset
|
271 |
test(new String[] { "--class-path", classpath.toString() }, |
37389 | 272 |
(a) -> evaluateExpression(a, "pkg.A", "new pkg.A();", "A") |
33362 | 273 |
); |
274 |
} |
|
275 |
||
44065
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
276 |
public void testEnvInStartUp() { |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
277 |
Compiler compiler = new Compiler(); |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
278 |
Path outDir = Paths.get("testClasspathDirectory"); |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
279 |
compiler.compile(outDir, "package pkg; public class A { public String toString() { return \"A\"; } }"); |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
280 |
Path classpath = compiler.getPath(outDir); |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
281 |
Path sup = compiler.getPath("startup.jsh"); |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
282 |
compiler.writeToFile(sup, |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
283 |
"int xxx;\n" + |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
284 |
"/env -class-path " + classpath + "\n" + |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
285 |
"int aaa = 735;\n" |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
286 |
); |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
287 |
test( |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
288 |
(a) -> assertCommand(a, "/set start -retain " + sup, ""), |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
289 |
(a) -> assertCommand(a, "/reset", |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
290 |
"| Resetting state."), |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
291 |
(a) -> evaluateExpression(a, "pkg.A", "new pkg.A();", "A"), |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
292 |
(a) -> assertCommand(a, "aaa", "aaa ==> 735") |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
293 |
); |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
294 |
test( |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
295 |
(a) -> assertCommandOutputContains(a, "/env", "--class-path"), |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
296 |
(a) -> assertCommandOutputContains(a, "xxx", "cannot find symbol", "variable xxx"), |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
297 |
(a) -> evaluateExpression(a, "pkg.A", "new pkg.A();", "A"), |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
298 |
(a) -> assertCommand(a, "aaa", "aaa ==> 735") |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
299 |
); |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
300 |
} |
d0a8a4c41c85
8175304: JShell tool: The /reset command hangs after setting a startup script
rfield
parents:
43856
diff
changeset
|
301 |
|
43856
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
302 |
private String makeSimpleJar() { |
33362 | 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"); |
|
43856
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
308 |
return compiler.getPath(outDir).resolve(jarName).toString(); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
309 |
} |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
310 |
|
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
311 |
public void testClasspathJar() { |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
312 |
String jarPath = makeSimpleJar(); |
33362 | 313 |
test( |
43038 | 314 |
(a) -> assertCommand(a, "/env --class-path " + jarPath, |
315 |
"| Setting new options and restoring state."), |
|
37389 | 316 |
(a) -> evaluateExpression(a, "pkg.A", "new pkg.A();", "A") |
33362 | 317 |
); |
43856
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
318 |
test(new String[] { "--class-path", jarPath }, |
37389 | 319 |
(a) -> evaluateExpression(a, "pkg.A", "new pkg.A();", "A") |
33362 | 320 |
); |
321 |
} |
|
322 |
||
43856
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
323 |
public void testClasspathUserHomeExpansion() { |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
324 |
String jarPath = makeSimpleJar(); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
325 |
String tilde = "~" + File.separator; |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
326 |
test( |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
327 |
(a) -> assertCommand(a, "/env --class-path " + tilde + "forblato", |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
328 |
"| File '" + System.getProperty("user.home") + File.separator |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
329 |
+ "forblato' for '--class-path' is not found."), |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
330 |
(a) -> assertCommand(a, "/env --class-path " + jarPath + File.pathSeparator |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
331 |
+ tilde + "forblato", |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
332 |
"| File '" + System.getProperty("user.home") + File.separator |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
333 |
+ "forblato' for '--class-path' is not found.") |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
334 |
); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
335 |
} |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
336 |
|
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
337 |
public void testBadClasspath() { |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
338 |
String jarPath = makeSimpleJar(); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
339 |
Compiler compiler = new Compiler(); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
340 |
Path t1 = compiler.getPath("whatever/thing.zip"); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
341 |
compiler.writeToFile(t1, ""); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
342 |
Path t2 = compiler.getPath("whatever/thing.jmod"); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
343 |
compiler.writeToFile(t2, ""); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
344 |
test( |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
345 |
(a) -> assertCommand(a, "/env --class-path " + t1.toString(), |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
346 |
"| Invalid '--class-path' argument: " + t1.toString()), |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
347 |
(a) -> assertCommand(a, "/env --class-path " + jarPath + File.pathSeparator + t1.toString(), |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
348 |
"| Invalid '--class-path' argument: " + t1.toString()), |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
349 |
(a) -> assertCommand(a, "/env --class-path " + t2.toString(), |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
350 |
"| Invalid '--class-path' argument: " + t2.toString()) |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
351 |
); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
352 |
} |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
353 |
|
41852
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
354 |
public void testModulePath() { |
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
355 |
Compiler compiler = new Compiler(); |
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
356 |
Path modsDir = Paths.get("mods"); |
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
357 |
Path outDir = Paths.get("mods", "org.astro"); |
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
358 |
compiler.compile(outDir, "package org.astro; public class World { public static String name() { return \"world\"; } }"); |
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
359 |
compiler.compile(outDir, "module org.astro { exports org.astro; }"); |
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
360 |
Path modsPath = compiler.getPath(modsDir); |
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
361 |
test(new String[] { "--module-path", modsPath.toString(), "--add-modules", "org.astro" }, |
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
362 |
(a) -> assertCommand(a, "import org.astro.World;", ""), |
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
363 |
(a) -> evaluateExpression(a, "String", |
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
364 |
"String.format(\"Greetings %s!\", World.name());", |
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
365 |
"\"Greetings world!\"") |
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
366 |
); |
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
367 |
} |
448273b190ad
8166649: jshell tool: missing --add-modules and --module-path
rfield
parents:
41635
diff
changeset
|
368 |
|
43856
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
369 |
public void testModulePathUserHomeExpansion() { |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
370 |
String tilde = "~" + File.separatorChar; |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
371 |
test( |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
372 |
(a) -> assertCommand(a, "/env --module-path " + tilde + "snardugol", |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
373 |
"| File '" + System.getProperty("user.home") |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
374 |
+ File.separatorChar + "snardugol' for '--module-path' is not found.") |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
375 |
); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
376 |
} |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
377 |
|
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
378 |
public void testBadModulePath() { |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
379 |
Compiler compiler = new Compiler(); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
380 |
Path t1 = compiler.getPath("whatever/thing.zip"); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
381 |
compiler.writeToFile(t1, ""); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
382 |
test( |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
383 |
(a) -> assertCommand(a, "/env --module-path " + t1.toString(), |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
384 |
"| Invalid '--module-path' argument: " + t1.toString()) |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
385 |
); |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
386 |
} |
fcdebb803c62
8174797: jshell tool: invalid module path crashes tool
rfield
parents:
43038
diff
changeset
|
387 |
|
33362 | 388 |
public void testStartupFileOption() { |
42843
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
389 |
Compiler compiler = new Compiler(); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
390 |
Path startup = compiler.getPath("StartupFileOption/startup.txt"); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
391 |
compiler.writeToFile(startup, "class A { public String toString() { return \"A\"; } }"); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
392 |
test(new String[]{"--startup", startup.toString()}, |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
393 |
(a) -> evaluateExpression(a, "A", "new A()", "A") |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
394 |
); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
395 |
test(new String[]{"--no-startup"}, |
42972
47ca49eee534
8172102: jshell tool: remove print method forwarding to System.out from default startup
rfield
parents:
42843
diff
changeset
|
396 |
(a) -> assertCommandCheckOutput(a, "Pattern.compile(\"x+\")", assertStartsWith("| Error:\n| cannot find symbol")) |
42843
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
397 |
); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
398 |
test( |
42972
47ca49eee534
8172102: jshell tool: remove print method forwarding to System.out from default startup
rfield
parents:
42843
diff
changeset
|
399 |
(a) -> assertCommand(a, "Pattern.compile(\"x+\")", "$1 ==> x+", "", null, "", "") |
42843
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
400 |
); |
33362 | 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() }, |
|
37389 | 408 |
(a) -> assertCommand(a, "x", "x ==> 20.0"), |
409 |
(a) -> assertCommand(a, "a", "a ==> 10.0") |
|
33362 | 410 |
); |
411 |
Path unknown = compiler.getPath("UNKNOWN.jar"); |
|
36990 | 412 |
test(Locale.ROOT, true, new String[]{unknown.toString()}, |
38613 | 413 |
"| File '" + unknown |
414 |
+ "' for 'jshell' is not found."); |
|
33362 | 415 |
} |
416 |
||
417 |
public void testReset() { |
|
418 |
test( |
|
37389 | 419 |
(a) -> assertReset(a, "/res"), |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
420 |
(a) -> assertCommandCheckOutput(a, "/methods", assertMethods()), |
33362 | 421 |
(a) -> assertVariable(a, "int", "x"), |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
422 |
(a) -> assertCommandCheckOutput(a, "/vars", assertVariables()), |
33362 | 423 |
(a) -> assertMethod(a, "void f() { }", "()void", "f"), |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
424 |
(a) -> assertCommandCheckOutput(a, "/methods", assertMethods()), |
33362 | 425 |
(a) -> assertClass(a, "class A { }", "class", "A"), |
38514
f7df9ab653b0
8153920: jshell tool: allow a parameter on the /vars /methods /classes commands
rfield
parents:
37389
diff
changeset
|
426 |
(a) -> assertCommandCheckOutput(a, "/types", assertClasses()), |
33714
8064f484590e
8142384: JShell tool: New command: /imports, /i which show the list of imported packages or classes, etc...
shinyafox
parents:
33362
diff
changeset
|
427 |
(a) -> assertImport(a, "import java.util.stream.*;", "", "java.util.stream.*"), |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
428 |
(a) -> assertCommandCheckOutput(a, "/imports", assertImports()), |
33362 | 429 |
(a) -> assertReset(a, "/reset"), |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
430 |
(a) -> assertCommandCheckOutput(a, "/vars", assertVariables()), |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
431 |
(a) -> assertCommandCheckOutput(a, "/methods", assertMethods()), |
38514
f7df9ab653b0
8153920: jshell tool: allow a parameter on the /vars /methods /classes commands
rfield
parents:
37389
diff
changeset
|
432 |
(a) -> assertCommandCheckOutput(a, "/types", assertClasses()), |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
433 |
(a) -> assertCommandCheckOutput(a, "/imports", assertImports()) |
33362 | 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" + |
|
33714
8064f484590e
8142384: JShell tool: New command: /imports, /i which show the list of imported packages or classes, etc...
shinyafox
parents:
33362
diff
changeset
|
442 |
"class A { public String toString() { return \"A\"; } }\nimport java.util.stream.*;"); |
33362 | 443 |
for (String s : new String[]{"/o", "/open"}) { |
444 |
test( |
|
445 |
(a) -> assertCommand(a, s + " " + path.toString(), ""), |
|
37389 | 446 |
(a) -> assertCommand(a, "a", "a ==> 10.0"), |
447 |
(a) -> evaluateExpression(a, "A", "new A();", "A"), |
|
33714
8064f484590e
8142384: JShell tool: New command: /imports, /i which show the list of imported packages or classes, etc...
shinyafox
parents:
33362
diff
changeset
|
448 |
(a) -> evaluateExpression(a, "long", "Stream.of(\"A\").count();", "1"), |
33362 | 449 |
(a) -> { |
450 |
loadVariable(a, "double", "x", "20.0", "20.0"); |
|
451 |
loadVariable(a, "double", "a", "10.0", "10.0"); |
|
33714
8064f484590e
8142384: JShell tool: New command: /imports, /i which show the list of imported packages or classes, etc...
shinyafox
parents:
33362
diff
changeset
|
452 |
loadVariable(a, "A", "$7", "new A();", "A"); |
8064f484590e
8142384: JShell tool: New command: /imports, /i which show the list of imported packages or classes, etc...
shinyafox
parents:
33362
diff
changeset
|
453 |
loadVariable(a, "long", "$8", "Stream.of(\"A\").count();", "1"); |
33362 | 454 |
loadClass(a, "class A { public String toString() { return \"A\"; } }", |
455 |
"class", "A"); |
|
33714
8064f484590e
8142384: JShell tool: New command: /imports, /i which show the list of imported packages or classes, etc...
shinyafox
parents:
33362
diff
changeset
|
456 |
loadImport(a, "import java.util.stream.*;", "", "java.util.stream.*"); |
38514
f7df9ab653b0
8153920: jshell tool: allow a parameter on the /vars /methods /classes commands
rfield
parents:
37389
diff
changeset
|
457 |
assertCommandCheckOutput(a, "/types", assertClasses()); |
33362 | 458 |
}, |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
459 |
(a) -> assertCommandCheckOutput(a, "/methods", assertMethods()), |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
460 |
(a) -> assertCommandCheckOutput(a, "/vars", assertVariables()), |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
461 |
(a) -> assertCommandCheckOutput(a, "/imports", assertImports()) |
33362 | 462 |
); |
463 |
Path unknown = compiler.getPath("UNKNOWN.repl"); |
|
464 |
test( |
|
465 |
(a) -> assertCommand(a, s + " " + unknown, |
|
37389 | 466 |
"| File '" + unknown + "' for '/open' is not found.") |
33362 | 467 |
); |
468 |
} |
|
469 |
} |
|
470 |
||
42972
47ca49eee534
8172102: jshell tool: remove print method forwarding to System.out from default startup
rfield
parents:
42843
diff
changeset
|
471 |
public void testOpenResource() { |
47ca49eee534
8172102: jshell tool: remove print method forwarding to System.out from default startup
rfield
parents:
42843
diff
changeset
|
472 |
test( |
47ca49eee534
8172102: jshell tool: remove print method forwarding to System.out from default startup
rfield
parents:
42843
diff
changeset
|
473 |
(a) -> assertCommand(a, "/open PRINTING", ""), |
47ca49eee534
8172102: jshell tool: remove print method forwarding to System.out from default startup
rfield
parents:
42843
diff
changeset
|
474 |
(a) -> assertCommandOutputContains(a, "/list", |
47ca49eee534
8172102: jshell tool: remove print method forwarding to System.out from default startup
rfield
parents:
42843
diff
changeset
|
475 |
"void println", "System.out.printf"), |
47ca49eee534
8172102: jshell tool: remove print method forwarding to System.out from default startup
rfield
parents:
42843
diff
changeset
|
476 |
(a) -> assertCommand(a, "printf(\"%4.2f\", Math.PI)", |
47ca49eee534
8172102: jshell tool: remove print method forwarding to System.out from default startup
rfield
parents:
42843
diff
changeset
|
477 |
"", "", null, "3.14", "") |
47ca49eee534
8172102: jshell tool: remove print method forwarding to System.out from default startup
rfield
parents:
42843
diff
changeset
|
478 |
); |
47ca49eee534
8172102: jshell tool: remove print method forwarding to System.out from default startup
rfield
parents:
42843
diff
changeset
|
479 |
} |
47ca49eee534
8172102: jshell tool: remove print method forwarding to System.out from default startup
rfield
parents:
42843
diff
changeset
|
480 |
|
33362 | 481 |
public void testSave() throws IOException { |
482 |
Compiler compiler = new Compiler(); |
|
483 |
Path path = compiler.getPath("testSave.repl"); |
|
484 |
List<String> list = Arrays.asList( |
|
485 |
"int a;", |
|
486 |
"class A { public String toString() { return \"A\"; } }" |
|
487 |
); |
|
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
488 |
test( |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
489 |
(a) -> assertVariable(a, "int", "a"), |
34570
8a8f52a733dd
8144095: jshell tool: normalize command parameter handling
rfield
parents:
34481
diff
changeset
|
490 |
(a) -> assertCommand(a, "()", null, null, null, "", ""), |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
491 |
(a) -> assertClass(a, "class A { public String toString() { return \"A\"; } }", "class", "A"), |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
492 |
(a) -> assertCommand(a, "/save " + path.toString(), "") |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
493 |
); |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
494 |
assertEquals(Files.readAllLines(path), list); |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
495 |
{ |
33362 | 496 |
List<String> output = new ArrayList<>(); |
497 |
test( |
|
498 |
(a) -> assertCommand(a, "int a;", null), |
|
34570
8a8f52a733dd
8144095: jshell tool: normalize command parameter handling
rfield
parents:
34481
diff
changeset
|
499 |
(a) -> assertCommand(a, "()", null, null, null, "", ""), |
33362 | 500 |
(a) -> assertClass(a, "class A { public String toString() { return \"A\"; } }", "class", "A"), |
38520
17e72b872ffd
8157185: jshell tool: ambiguous format -- distinguished arguments should be options
rfield
parents:
38514
diff
changeset
|
501 |
(a) -> assertCommandCheckOutput(a, "/list -all", (out) -> |
33362 | 502 |
output.addAll(Stream.of(out.split("\n")) |
503 |
.filter(str -> !str.isEmpty()) |
|
504 |
.map(str -> str.substring(str.indexOf(':') + 2)) |
|
505 |
.filter(str -> !str.startsWith("/")) |
|
506 |
.collect(Collectors.toList()))), |
|
38520
17e72b872ffd
8157185: jshell tool: ambiguous format -- distinguished arguments should be options
rfield
parents:
38514
diff
changeset
|
507 |
(a) -> assertCommand(a, "/save -all " + path.toString(), "") |
33362 | 508 |
); |
509 |
assertEquals(Files.readAllLines(path), output); |
|
510 |
} |
|
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
511 |
List<String> output = new ArrayList<>(); |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
512 |
test( |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
513 |
(a) -> assertVariable(a, "int", "a"), |
34570
8a8f52a733dd
8144095: jshell tool: normalize command parameter handling
rfield
parents:
34481
diff
changeset
|
514 |
(a) -> assertCommand(a, "()", null, null, null, "", ""), |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
515 |
(a) -> assertClass(a, "class A { public String toString() { return \"A\"; } }", "class", "A"), |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
516 |
(a) -> assertCommandCheckOutput(a, "/history", (out) -> |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
517 |
output.addAll(Stream.of(out.split("\n")) |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
518 |
.filter(str -> !str.isEmpty()) |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
519 |
.collect(Collectors.toList()))), |
38613 | 520 |
(a) -> assertCommand(a, "/save -history " + path.toString(), "") |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
521 |
); |
38613 | 522 |
output.add("/save -history " + path.toString()); |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
523 |
assertEquals(Files.readAllLines(path), output); |
33362 | 524 |
} |
525 |
||
42843
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
526 |
public void testStartRetain() { |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
527 |
Compiler compiler = new Compiler(); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
528 |
Path startUpFile = compiler.getPath("startUp.txt"); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
529 |
test( |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
530 |
(a) -> assertVariable(a, "int", "a"), |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
531 |
(a) -> assertVariable(a, "double", "b", "10", "10.0"), |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
532 |
(a) -> assertMethod(a, "void f() {}", "()V", "f"), |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
533 |
(a) -> assertImport(a, "import java.util.stream.*;", "", "java.util.stream.*"), |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
534 |
(a) -> assertCommand(a, "/save " + startUpFile.toString(), null), |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
535 |
(a) -> assertCommand(a, "/set start -retain " + startUpFile.toString(), null) |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
536 |
); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
537 |
Path unknown = compiler.getPath("UNKNOWN"); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
538 |
test( |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
539 |
(a) -> assertCommandOutputStartsWith(a, "/set start -retain " + unknown.toString(), |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
540 |
"| File '" + unknown + "' for '/set start' is not found.") |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
541 |
); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
542 |
test(false, new String[0], |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
543 |
(a) -> { |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
544 |
loadVariable(a, "int", "a"); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
545 |
loadVariable(a, "double", "b", "10.0", "10.0"); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
546 |
loadMethod(a, "void f() {}", "()void", "f"); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
547 |
loadImport(a, "import java.util.stream.*;", "", "java.util.stream.*"); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
548 |
assertCommandCheckOutput(a, "/types", assertClasses()); |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
549 |
}, |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
550 |
(a) -> assertCommandCheckOutput(a, "/vars", assertVariables()), |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
551 |
(a) -> assertCommandCheckOutput(a, "/methods", assertMethods()), |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
552 |
(a) -> assertCommandCheckOutput(a, "/imports", assertImports()) |
a8d83044a192
8170162: jshell tool: no mechanism to programmatically launch
rfield
parents:
41858
diff
changeset
|
553 |
); |
33362 | 554 |
} |
555 |
||
556 |
public void testStartSave() throws IOException { |
|
557 |
Compiler compiler = new Compiler(); |
|
558 |
Path startSave = compiler.getPath("startSave.txt"); |
|
38520
17e72b872ffd
8157185: jshell tool: ambiguous format -- distinguished arguments should be options
rfield
parents:
38514
diff
changeset
|
559 |
test(a -> assertCommand(a, "/save -start " + startSave.toString(), null)); |
33362 | 560 |
List<String> lines = Files.lines(startSave) |
561 |
.filter(s -> !s.isEmpty()) |
|
562 |
.collect(Collectors.toList()); |
|
34570
8a8f52a733dd
8144095: jshell tool: normalize command parameter handling
rfield
parents:
34481
diff
changeset
|
563 |
assertEquals(lines, START_UP); |
33362 | 564 |
} |
565 |
||
566 |
public void testConstrainedUpdates() { |
|
567 |
test( |
|
568 |
a -> assertClass(a, "class XYZZY { }", "class", "XYZZY"), |
|
569 |
a -> assertVariable(a, "XYZZY", "xyzzy"), |
|
570 |
a -> assertCommandCheckOutput(a, "import java.util.stream.*", |
|
571 |
(out) -> assertTrue(out.trim().isEmpty(), "Expected no output, got: " + out)) |
|
572 |
); |
|
573 |
} |
|
574 |
||
575 |
public void testRemoteExit() { |
|
576 |
test( |
|
577 |
a -> assertVariable(a, "int", "x"), |
|
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
578 |
a -> assertCommandCheckOutput(a, "/vars", assertVariables()), |
36494 | 579 |
a -> assertCommandOutputContains(a, "System.exit(5);", "terminated"), |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
580 |
a -> assertCommandCheckOutput(a, "/vars", s -> |
33362 | 581 |
assertTrue(s.trim().isEmpty(), s)), |
582 |
a -> assertMethod(a, "void f() { }", "()void", "f"), |
|
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
583 |
a -> assertCommandCheckOutput(a, "/methods", assertMethods()) |
33362 | 584 |
); |
585 |
} |
|
586 |
||
587 |
public void testFeedbackNegative() { |
|
36494 | 588 |
test(a -> assertCommandCheckOutput(a, "/set feedback aaaa", |
589 |
assertStartsWith("| Does not match any current feedback mode"))); |
|
33362 | 590 |
} |
591 |
||
37389 | 592 |
public void testFeedbackSilent() { |
593 |
for (String off : new String[]{"s", "silent"}) { |
|
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
594 |
test( |
36494 | 595 |
a -> assertCommand(a, "/set feedback " + off, ""), |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
596 |
a -> assertCommand(a, "int a", ""), |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
597 |
a -> assertCommand(a, "void f() {}", ""), |
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
598 |
a -> assertCommandCheckOutput(a, "aaaa", assertStartsWith("| Error:")), |
41858
5843b57ce3a6
8167643: JShell: silently ignore access modifiers (as semantically irrelevant)
rfield
parents:
41852
diff
changeset
|
599 |
a -> assertCommandCheckOutput(a, "static void f() {}", assertStartsWith("| Warning:")) |
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
600 |
); |
33362 | 601 |
} |
602 |
} |
|
603 |
||
604 |
public void testFeedbackNormal() { |
|
605 |
Compiler compiler = new Compiler(); |
|
606 |
Path testNormalFile = compiler.getPath("testConciseNormal"); |
|
607 |
String[] sources = new String[] {"int a", "void f() {}", "class A {}", "a = 10"}; |
|
608 |
String[] sources2 = new String[] {"int a //again", "void f() {int y = 4;}", "class A {} //again", "a = 10"}; |
|
609 |
String[] output = new String[] { |
|
37389 | 610 |
"a ==> 0", |
611 |
"| created method f()", |
|
612 |
"| created class A", |
|
613 |
"a ==> 10" |
|
33362 | 614 |
}; |
615 |
compiler.writeToFile(testNormalFile, sources2); |
|
37389 | 616 |
for (String feedback : new String[]{"/set fe", "/set feedback"}) { |
617 |
for (String feedbackState : new String[]{"n", "normal"}) { |
|
33362 | 618 |
test( |
37389 | 619 |
a -> assertCommand(a, feedback + " " + feedbackState, "| Feedback mode: normal"), |
33362 | 620 |
a -> assertCommand(a, sources[0], output[0]), |
621 |
a -> assertCommand(a, sources[1], output[1]), |
|
622 |
a -> assertCommand(a, sources[2], output[2]), |
|
623 |
a -> assertCommand(a, sources[3], output[3]), |
|
36494 | 624 |
a -> assertCommand(a, "/o " + testNormalFile.toString(), "") |
33362 | 625 |
); |
626 |
} |
|
627 |
} |
|
628 |
} |
|
629 |
||
40516
9e0e107c39dd
8154374: JShell: setContextClassLoader() for remote Snippet class loader
rfield
parents:
38836
diff
changeset
|
630 |
public void testVarsWithNotActive() { |
9e0e107c39dd
8154374: JShell: setContextClassLoader() for remote Snippet class loader
rfield
parents:
38836
diff
changeset
|
631 |
test( |
9e0e107c39dd
8154374: JShell: setContextClassLoader() for remote Snippet class loader
rfield
parents:
38836
diff
changeset
|
632 |
a -> assertVariable(a, "Blath", "x"), |
9e0e107c39dd
8154374: JShell: setContextClassLoader() for remote Snippet class loader
rfield
parents:
38836
diff
changeset
|
633 |
a -> assertCommandOutputContains(a, "/var -all", "(not-active)") |
9e0e107c39dd
8154374: JShell: setContextClassLoader() for remote Snippet class loader
rfield
parents:
38836
diff
changeset
|
634 |
); |
9e0e107c39dd
8154374: JShell: setContextClassLoader() for remote Snippet class loader
rfield
parents:
38836
diff
changeset
|
635 |
} |
9e0e107c39dd
8154374: JShell: setContextClassLoader() for remote Snippet class loader
rfield
parents:
38836
diff
changeset
|
636 |
|
33362 | 637 |
public void testHistoryReference() { |
40588
b5c32bfa9710
8160089: jshell tool: use new double-dash long-form command-line options
rfield
parents:
40516
diff
changeset
|
638 |
test(false, new String[]{"--no-startup"}, |
33362 | 639 |
a -> assertCommand(a, "System.err.println(1)", "", "", null, "", "1\n"), |
640 |
a -> assertCommand(a, "System.err.println(2)", "", "", null, "", "2\n"), |
|
37389 | 641 |
a -> assertCommand(a, "/-2", "System.err.println(1)", "", null, "", "1\n"), |
642 |
a -> assertCommand(a, "/history", |
|
33362 | 643 |
"/debug 0\n" + |
644 |
"System.err.println(1)\n" + |
|
645 |
"System.err.println(2)\n" + |
|
646 |
"System.err.println(1)\n" + |
|
647 |
"/history\n"), |
|
37389 | 648 |
a -> assertCommand(a, "/-2", "System.err.println(2)", "", null, "", "2\n"), |
649 |
a -> assertCommand(a, "/!", "System.err.println(2)", "", null, "", "2\n"), |
|
650 |
a -> assertCommand(a, "/2", "System.err.println(2)", "", null, "", "2\n"), |
|
651 |
a -> assertCommand(a, "/1", "System.err.println(1)", "", null, "", "1\n") |
|
33362 | 652 |
); |
653 |
} |
|
34475
7af94fd75ede
8143037: JShell should determine commands by prefix
jlahoda
parents:
33918
diff
changeset
|
654 |
|
38836
b09d1cfbf28c
8131029: JShell: recover from VMConnection launch failure
rfield
parents:
38613
diff
changeset
|
655 |
@Test(enabled = false) // TODO 8158197 |
38531
c449daa25b45
8157200: jshell tool: Add /retain command to persist settings
rfield
parents:
38520
diff
changeset
|
656 |
public void testHeadlessEditPad() { |
c449daa25b45
8157200: jshell tool: Add /retain command to persist settings
rfield
parents:
38520
diff
changeset
|
657 |
String prevHeadless = System.getProperty("java.awt.headless"); |
c449daa25b45
8157200: jshell tool: Add /retain command to persist settings
rfield
parents:
38520
diff
changeset
|
658 |
try { |
c449daa25b45
8157200: jshell tool: Add /retain command to persist settings
rfield
parents:
38520
diff
changeset
|
659 |
System.setProperty("java.awt.headless", "true"); |
c449daa25b45
8157200: jshell tool: Add /retain command to persist settings
rfield
parents:
38520
diff
changeset
|
660 |
test( |
c449daa25b45
8157200: jshell tool: Add /retain command to persist settings
rfield
parents:
38520
diff
changeset
|
661 |
(a) -> assertCommandOutputStartsWith(a, "/edit printf", "| Cannot launch editor -- unexpected exception:") |
c449daa25b45
8157200: jshell tool: Add /retain command to persist settings
rfield
parents:
38520
diff
changeset
|
662 |
); |
c449daa25b45
8157200: jshell tool: Add /retain command to persist settings
rfield
parents:
38520
diff
changeset
|
663 |
} finally { |
c449daa25b45
8157200: jshell tool: Add /retain command to persist settings
rfield
parents:
38520
diff
changeset
|
664 |
System.setProperty("java.awt.headless", prevHeadless==null? "false" : prevHeadless); |
c449daa25b45
8157200: jshell tool: Add /retain command to persist settings
rfield
parents:
38520
diff
changeset
|
665 |
} |
c449daa25b45
8157200: jshell tool: Add /retain command to persist settings
rfield
parents:
38520
diff
changeset
|
666 |
} |
c449daa25b45
8157200: jshell tool: Add /retain command to persist settings
rfield
parents:
38520
diff
changeset
|
667 |
|
41248 | 668 |
public void testAddExports() { |
669 |
test(false, new String[]{"--no-startup"}, |
|
670 |
a -> assertCommandOutputStartsWith(a, "import jdk.internal.misc.VM;", "| Error:") |
|
671 |
); |
|
672 |
test(false, new String[]{"--no-startup", |
|
673 |
"-R--add-exports", "-Rjava.base/jdk.internal.misc=ALL-UNNAMED", |
|
674 |
"-C--add-exports", "-Cjava.base/jdk.internal.misc=ALL-UNNAMED"}, |
|
675 |
a -> assertImport(a, "import jdk.internal.misc.VM;", "", "jdk.internal.misc.VM"), |
|
676 |
a -> assertCommand(a, "System.err.println(VM.isBooted())", "", "", null, "", "true\n") |
|
677 |
); |
|
678 |
test(false, new String[]{"--no-startup", "--add-exports", "java.base/jdk.internal.misc"}, |
|
679 |
a -> assertImport(a, "import jdk.internal.misc.VM;", "", "jdk.internal.misc.VM"), |
|
680 |
a -> assertCommand(a, "System.err.println(VM.isBooted())", "", "", null, "", "true\n") |
|
681 |
); |
|
682 |
} |
|
683 |
||
33362 | 684 |
} |