|
| 1 | +/* |
| 2 | + * Copyright 2022 JetBrains s.r.o. |
| 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 | +/* @test |
| 25 | + * @bug 8190546 |
| 26 | + * @summary Verifies that a path name that ends with a space can be |
| 27 | + * successfully created. |
| 28 | + */ |
| 29 | + |
| 30 | +import java.nio.file.Path; |
| 31 | +import java.nio.file.Files; |
| 32 | +import java.io.IOException; |
| 33 | + |
| 34 | +public class TrailingSpace { |
| 35 | + static void testResolve(String parent, String... paths) { |
| 36 | + final Path p = Path.of(parent, paths); |
| 37 | + System.out.println("Path successfully created: " + p); |
| 38 | + } |
| 39 | + |
| 40 | + static void testResolve(String path) { |
| 41 | + final Path p = Path.of(path); |
| 42 | + System.out.println("Path successfully created: " + p); |
| 43 | + } |
| 44 | + |
| 45 | + static void testDelete(String path) throws IOException { |
| 46 | + final Path p = Files.createDirectories(Path.of(path)); |
| 47 | + Files.delete(p); |
| 48 | + } |
| 49 | + |
| 50 | + public static void main(String args[]) throws IOException { |
| 51 | + testResolve("./", "ends-with-space "); |
| 52 | + testResolve("ends-with-space "); |
| 53 | + testResolve("1", "2", "ends-with-space ", "3"); |
| 54 | + testResolve("1\\2\\ends-with-space \\3"); |
| 55 | + testResolve("1/2/ends-with-space /3"); |
| 56 | + testResolve("1/2/ends-with-space \\3"); |
| 57 | + testResolve("ends-with-space /"); |
| 58 | + testResolve("ends-with-space ///"); |
| 59 | + testResolve("ends-with-space \\"); |
| 60 | + testResolve("ends-with-space \\\\\\"); |
| 61 | + |
| 62 | + testDelete("ends-with-space "); |
| 63 | + testDelete("ends-with-space-1 \\"); |
| 64 | + } |
| 65 | +} |
0 commit comments