|
| 1 | +/* |
| 2 | + * Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +/** |
| 25 | + * @test |
| 26 | + * @bug 8331681 |
| 27 | + * @summary Verify the java.base's console provider handles the prompt correctly. |
| 28 | + * @library /test/lib |
| 29 | + * @run main/othervm --limit-modules java.base ConsolePromptTest |
| 30 | + * @run main/othervm -Djdk.console=java.base ConsolePromptTest |
| 31 | + */ |
| 32 | + |
| 33 | +import java.lang.reflect.Method; |
| 34 | +import java.util.Objects; |
| 35 | + |
| 36 | +import jdk.test.lib.process.OutputAnalyzer; |
| 37 | +import jdk.test.lib.process.ProcessTools; |
| 38 | + |
| 39 | +public class ConsolePromptTest { |
| 40 | + |
| 41 | + public static void main(String... args) throws Throwable { |
| 42 | + for (Method m : ConsolePromptTest.class.getDeclaredMethods()) { |
| 43 | + if (m.getName().startsWith("test")) { |
| 44 | + m.invoke(new ConsolePromptTest()); |
| 45 | + } |
| 46 | + } |
| 47 | + } |
| 48 | + |
| 49 | + void testCorrectOutputReadLine() throws Exception { |
| 50 | + doRunConsoleTest("testCorrectOutputReadLine", "inp", "%s"); |
| 51 | + } |
| 52 | + |
| 53 | + void testCorrectOutputReadPassword() throws Exception { |
| 54 | + doRunConsoleTest("testCorrectOutputReadPassword", "inp", "%s"); |
| 55 | + } |
| 56 | + |
| 57 | + void doRunConsoleTest(String testName, |
| 58 | + String input, |
| 59 | + String expectedOut) throws Exception { |
| 60 | + ProcessBuilder builder = |
| 61 | + ProcessTools.createTestJavaProcessBuilder(ConsoleTest.class.getName(), |
| 62 | + testName); |
| 63 | + OutputAnalyzer output = ProcessTools.executeProcess(builder, input); |
| 64 | + |
| 65 | + output.waitFor(); |
| 66 | + |
| 67 | + if (output.getExitValue() != 0) { |
| 68 | + throw new AssertionError("Unexpected return value: " + output.getExitValue() + |
| 69 | + ", actualOut: " + output.getStdout() + |
| 70 | + ", actualErr: " + output.getStderr()); |
| 71 | + } |
| 72 | + |
| 73 | + String actualOut = output.getStdout(); |
| 74 | + |
| 75 | + if (!Objects.equals(expectedOut, actualOut)) { |
| 76 | + throw new AssertionError("Unexpected stdout content. " + |
| 77 | + "Expected: '" + expectedOut + "'" + |
| 78 | + ", got: '" + actualOut + "'"); |
| 79 | + } |
| 80 | + |
| 81 | + String expectedErr = ""; |
| 82 | + String actualErr = output.getStderr(); |
| 83 | + |
| 84 | + if (!Objects.equals(expectedErr, actualErr)) { |
| 85 | + throw new AssertionError("Unexpected stderr content. " + |
| 86 | + "Expected: '" + expectedErr + "'" + |
| 87 | + ", got: '" + actualErr + "'"); |
| 88 | + } |
| 89 | + } |
| 90 | + |
| 91 | + public static class ConsoleTest { |
| 92 | + public static void main(String... args) { |
| 93 | + switch (args[0]) { |
| 94 | + case "testCorrectOutputReadLine" -> |
| 95 | + System.console().readLine("%%s"); |
| 96 | + case "testCorrectOutputReadPassword" -> |
| 97 | + System.console().readPassword("%%s"); |
| 98 | + default -> throw new UnsupportedOperationException(args[0]); |
| 99 | + } |
| 100 | + |
| 101 | + System.exit(0); |
| 102 | + } |
| 103 | + } |
| 104 | +} |
0 commit comments