|
| 1 | +/* |
| 2 | + * Copyright (c) 2021, 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 | + * @summary Positive tests for the jwebserver command-line tool |
| 27 | + * @library /test/lib |
| 28 | + * @modules jdk.httpserver |
| 29 | + * @run testng/othervm CommandLinePositiveTest |
| 30 | + */ |
| 31 | + |
| 32 | +import java.io.IOException; |
| 33 | +import java.net.InetAddress; |
| 34 | +import java.nio.file.Files; |
| 35 | +import java.nio.file.Path; |
| 36 | +import java.util.concurrent.TimeUnit; |
| 37 | +import jdk.test.lib.Platform; |
| 38 | +import jdk.test.lib.process.OutputAnalyzer; |
| 39 | +import jdk.test.lib.process.ProcessTools; |
| 40 | +import jdk.test.lib.util.FileUtils; |
| 41 | +import org.testng.annotations.AfterTest; |
| 42 | +import org.testng.annotations.BeforeTest; |
| 43 | +import org.testng.annotations.DataProvider; |
| 44 | +import org.testng.annotations.Test; |
| 45 | +import static java.lang.System.out; |
| 46 | + |
| 47 | +public class CommandLinePositiveTest { |
| 48 | + |
| 49 | + static final String JAVA_VERSION = System.getProperty("java.version"); |
| 50 | + static final Path JAVA_HOME = Path.of(System.getProperty("java.home")); |
| 51 | + static final String JWEBSERVER = getJwebserver(JAVA_HOME); |
| 52 | + static final Path CWD = Path.of(".").toAbsolutePath().normalize(); |
| 53 | + static final Path TEST_DIR = CWD.resolve("CommandLinePositiveTest"); |
| 54 | + static final Path TEST_FILE = TEST_DIR.resolve("file.txt"); |
| 55 | + static final String TEST_DIR_STR = TEST_DIR.toString(); |
| 56 | + static final String LOOPBACK_ADDR = InetAddress.getLoopbackAddress().getHostAddress(); |
| 57 | + |
| 58 | + @BeforeTest |
| 59 | + public void setup() throws IOException { |
| 60 | + if (Files.exists(TEST_DIR)) { |
| 61 | + FileUtils.deleteFileTreeWithRetry(TEST_DIR); |
| 62 | + } |
| 63 | + Files.createDirectories(TEST_DIR); |
| 64 | + Files.createFile(TEST_FILE); |
| 65 | + } |
| 66 | + |
| 67 | + static final int SIGTERM = 15; |
| 68 | + static final int NORMAL_EXIT_CODE = normalExitCode(); |
| 69 | + |
| 70 | + static int normalExitCode() { |
| 71 | + if (Platform.isWindows()) { |
| 72 | + return 1; // expected process destroy exit code |
| 73 | + } else { |
| 74 | + // signal terminated exit code on Unix is 128 + signal value |
| 75 | + return 128 + SIGTERM; |
| 76 | + } |
| 77 | + } |
| 78 | + |
| 79 | + @DataProvider |
| 80 | + public Object[][] directoryOptions() { return new Object[][] {{"-d"}, {"--directory"}}; } |
| 81 | + |
| 82 | + @Test(dataProvider = "directoryOptions") |
| 83 | + public void testDirectory(String opt) throws Throwable { |
| 84 | + out.println("\n--- testDirectory, opt=\"%s\" ".formatted(opt)); |
| 85 | + simpleserver(JWEBSERVER, "-p", "0", opt, TEST_DIR_STR) |
| 86 | + .shouldHaveExitValue(NORMAL_EXIT_CODE) |
| 87 | + .shouldContain("Binding to loopback by default. For all interfaces use \"-b 0.0.0.0\" or \"-b ::\".") |
| 88 | + .shouldContain("Serving " + TEST_DIR_STR + " and subdirectories on " + LOOPBACK_ADDR + " port") |
| 89 | + .shouldContain("URL http://" + LOOPBACK_ADDR); |
| 90 | + } |
| 91 | + |
| 92 | + @DataProvider |
| 93 | + public Object[][] portOptions() { return new Object[][] {{"-p"}, {"--port"}}; } |
| 94 | + |
| 95 | + @Test(dataProvider = "portOptions") |
| 96 | + public void testPort(String opt) throws Throwable { |
| 97 | + out.println("\n--- testPort, opt=\"%s\" ".formatted(opt)); |
| 98 | + simpleserver(JWEBSERVER, opt, "0") |
| 99 | + .shouldHaveExitValue(NORMAL_EXIT_CODE) |
| 100 | + .shouldContain("Binding to loopback by default. For all interfaces use \"-b 0.0.0.0\" or \"-b ::\".") |
| 101 | + .shouldContain("Serving " + TEST_DIR_STR + " and subdirectories on " + LOOPBACK_ADDR + " port") |
| 102 | + .shouldContain("URL http://" + LOOPBACK_ADDR); |
| 103 | + } |
| 104 | + |
| 105 | + @DataProvider |
| 106 | + public Object[][] helpOptions() { return new Object[][] {{"-h"}, {"-?"}, {"--help"}}; } |
| 107 | + |
| 108 | + static final String USAGE_TEXT = """ |
| 109 | + Usage: jwebserver [-b bind address] [-p port] [-d directory] |
| 110 | + [-o none|info|verbose] [-h to show options] |
| 111 | + [-version to show version information]"""; |
| 112 | + |
| 113 | + static final String OPTIONS_TEXT = """ |
| 114 | + Options: |
| 115 | + -b, --bind-address - Address to bind to. Default: %s (loopback). |
| 116 | + For all interfaces use "-b 0.0.0.0" or "-b ::". |
| 117 | + -d, --directory - Directory to serve. Default: current directory. |
| 118 | + -o, --output - Output format. none|info|verbose. Default: info. |
| 119 | + -p, --port - Port to listen on. Default: 8000. |
| 120 | + -h, -?, --help - Prints this help message and exits. |
| 121 | + -version, --version - Prints version information and exits. |
| 122 | + To stop the server, press Ctrl + C.""".formatted(LOOPBACK_ADDR); |
| 123 | + |
| 124 | + @Test(dataProvider = "helpOptions") |
| 125 | + public void testHelp(String opt) throws Throwable { |
| 126 | + out.println("\n--- testHelp, opt=\"%s\" ".formatted(opt)); |
| 127 | + simpleserver(WaitForLine.HELP_STARTUP_LINE, |
| 128 | + false, // do not explicitly destroy the process |
| 129 | + JWEBSERVER, opt) |
| 130 | + .shouldHaveExitValue(0) |
| 131 | + .shouldContain(USAGE_TEXT) |
| 132 | + .shouldContain(OPTIONS_TEXT); |
| 133 | + } |
| 134 | + |
| 135 | + @DataProvider |
| 136 | + public Object[][] versionOptions() { return new Object[][] {{"-version"}, {"--version"}}; } |
| 137 | + |
| 138 | + @Test(dataProvider = "versionOptions") |
| 139 | + public void testVersion(String opt) throws Throwable { |
| 140 | + out.println("\n--- testVersion, opt=\"%s\" ".formatted(opt)); |
| 141 | + simpleserver(WaitForLine.VERSION_STARTUP_LINE, |
| 142 | + false, // do not explicitly destroy the process |
| 143 | + JWEBSERVER, opt) |
| 144 | + .shouldHaveExitValue(0); |
| 145 | + } |
| 146 | + |
| 147 | + @DataProvider |
| 148 | + public Object[][] bindOptions() { return new Object[][] {{"-b"}, {"--bind-address"}}; } |
| 149 | + |
| 150 | + @Test(dataProvider = "bindOptions") |
| 151 | + public void testBindAllInterfaces(String opt) throws Throwable { |
| 152 | + out.println("\n--- testBindAllInterfaces, opt=\"%s\" ".formatted(opt)); |
| 153 | + simpleserver(JWEBSERVER, "-p", "0", opt, "0.0.0.0") |
| 154 | + .shouldHaveExitValue(NORMAL_EXIT_CODE) |
| 155 | + .shouldContain("Serving " + TEST_DIR_STR + " and subdirectories on 0.0.0.0 (all interfaces) port") |
| 156 | + .shouldContain("URL http://" + InetAddress.getLocalHost().getHostAddress()); |
| 157 | + simpleserver(JWEBSERVER, opt, "::0") |
| 158 | + .shouldHaveExitValue(NORMAL_EXIT_CODE) |
| 159 | + .shouldContain("Serving " + TEST_DIR_STR + " and subdirectories on 0.0.0.0 (all interfaces) port") |
| 160 | + .shouldContain("URL http://" + InetAddress.getLocalHost().getHostAddress()); |
| 161 | + } |
| 162 | + |
| 163 | + @Test(dataProvider = "bindOptions") |
| 164 | + public void testLastOneWinsBindAddress(String opt) throws Throwable { |
| 165 | + out.println("\n--- testLastOneWinsBindAddress, opt=\"%s\" ".formatted(opt)); |
| 166 | + simpleserver(JWEBSERVER, "-p", "0", opt, "123.4.5.6", opt, LOOPBACK_ADDR) |
| 167 | + .shouldHaveExitValue(NORMAL_EXIT_CODE) |
| 168 | + .shouldContain("Serving " + TEST_DIR_STR + " and subdirectories on " + LOOPBACK_ADDR + " port") |
| 169 | + .shouldContain("URL http://" + LOOPBACK_ADDR); |
| 170 | + |
| 171 | + } |
| 172 | + |
| 173 | + @Test(dataProvider = "directoryOptions") |
| 174 | + public void testLastOneWinsDirectory(String opt) throws Throwable { |
| 175 | + out.println("\n--- testLastOneWinsDirectory, opt=\"%s\" ".formatted(opt)); |
| 176 | + simpleserver(JWEBSERVER, "-p", "0", opt, TEST_DIR_STR, opt, TEST_DIR_STR) |
| 177 | + .shouldHaveExitValue(NORMAL_EXIT_CODE) |
| 178 | + .shouldContain("Binding to loopback by default. For all interfaces use \"-b 0.0.0.0\" or \"-b ::\".") |
| 179 | + .shouldContain("Serving " + TEST_DIR_STR + " and subdirectories on " + LOOPBACK_ADDR + " port") |
| 180 | + .shouldContain("URL http://" + LOOPBACK_ADDR); |
| 181 | + } |
| 182 | + |
| 183 | + @DataProvider |
| 184 | + public Object[][] outputOptions() { return new Object[][] {{"-o"}, {"--output"}}; } |
| 185 | + |
| 186 | + @Test(dataProvider = "outputOptions") |
| 187 | + public void testLastOneWinsOutput(String opt) throws Throwable { |
| 188 | + out.println("\n--- testLastOneWinsOutput, opt=\"%s\" ".formatted(opt)); |
| 189 | + simpleserver(JWEBSERVER, "-p", "0", opt, "none", opt, "verbose") |
| 190 | + .shouldHaveExitValue(NORMAL_EXIT_CODE) |
| 191 | + .shouldContain("Binding to loopback by default. For all interfaces use \"-b 0.0.0.0\" or \"-b ::\".") |
| 192 | + .shouldContain("Serving " + TEST_DIR_STR + " and subdirectories on " + LOOPBACK_ADDR + " port") |
| 193 | + .shouldContain("URL http://" + LOOPBACK_ADDR); |
| 194 | + } |
| 195 | + |
| 196 | + @Test(dataProvider = "portOptions") |
| 197 | + public void testLastOneWinsPort(String opt) throws Throwable { |
| 198 | + out.println("\n--- testLastOneWinsPort, opt=\"%s\" ".formatted(opt)); |
| 199 | + simpleserver(JWEBSERVER, opt, "-999", opt, "0") |
| 200 | + .shouldHaveExitValue(NORMAL_EXIT_CODE) |
| 201 | + .shouldContain("Binding to loopback by default. For all interfaces use \"-b 0.0.0.0\" or \"-b ::\".") |
| 202 | + .shouldContain("Serving " + TEST_DIR_STR + " and subdirectories on " + LOOPBACK_ADDR + " port") |
| 203 | + .shouldContain("URL http://" + LOOPBACK_ADDR); |
| 204 | + } |
| 205 | + |
| 206 | + @AfterTest |
| 207 | + public void teardown() throws IOException { |
| 208 | + if (Files.exists(TEST_DIR)) { |
| 209 | + FileUtils.deleteFileTreeWithRetry(TEST_DIR); |
| 210 | + } |
| 211 | + } |
| 212 | + |
| 213 | + // --- infra --- |
| 214 | + |
| 215 | + static String getJwebserver(Path image) { |
| 216 | + boolean isWindows = System.getProperty("os.name").startsWith("Windows"); |
| 217 | + Path jwebserver = image.resolve("bin").resolve(isWindows ? "jwebserver.exe" : "jwebserver"); |
| 218 | + if (Files.notExists(jwebserver)) |
| 219 | + throw new RuntimeException(jwebserver + " not found"); |
| 220 | + return jwebserver.toAbsolutePath().toString(); |
| 221 | + } |
| 222 | + |
| 223 | + static final String REGULAR_STARTUP_LINE1_STRING = "Serving"; |
| 224 | + static final String REGULAR_STARTUP_LINE2_STRING = "URL http://"; |
| 225 | + static final String VERSION_STARTUP_LINE_STRING = "jwebserver " + JAVA_VERSION; |
| 226 | + |
| 227 | + // The stdout/stderr output line to wait for when starting the simpleserver |
| 228 | + enum WaitForLine { |
| 229 | + REGULAR_STARTUP_LINE (REGULAR_STARTUP_LINE2_STRING) , |
| 230 | + HELP_STARTUP_LINE (OPTIONS_TEXT.lines().reduce((first, second) -> second).orElseThrow()), |
| 231 | + VERSION_STARTUP_LINE (VERSION_STARTUP_LINE_STRING); |
| 232 | + |
| 233 | + final String value; |
| 234 | + WaitForLine(String value) { this.value = value; } |
| 235 | + } |
| 236 | + |
| 237 | + static OutputAnalyzer simpleserver(String... args) throws Throwable { |
| 238 | + return simpleserver(WaitForLine.REGULAR_STARTUP_LINE, true, args); |
| 239 | + } |
| 240 | + |
| 241 | + static OutputAnalyzer simpleserver(WaitForLine waitForLine, boolean destroy, String... args) throws Throwable { |
| 242 | + StringBuffer sb = new StringBuffer(); // stdout & stderr |
| 243 | + // start the process and await the waitForLine before returning |
| 244 | + var p = ProcessTools.startProcess("simpleserver", |
| 245 | + new ProcessBuilder(args).directory(TEST_DIR.toFile()), |
| 246 | + line -> sb.append(line + "\n"), |
| 247 | + line -> line.startsWith(waitForLine.value), |
| 248 | + 30, // suitably high default timeout, not expected to timeout |
| 249 | + TimeUnit.SECONDS); |
| 250 | + if (destroy) { |
| 251 | + p.destroy(); // SIGTERM on Unix |
| 252 | + } |
| 253 | + int ec = p.waitFor(); |
| 254 | + var outputAnalyser = new OutputAnalyzer(sb.toString(), "", ec); |
| 255 | + return outputAnalyser; |
| 256 | + } |
| 257 | +} |
0 commit comments