0N/A/*
3261N/A * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/* @test
2919N/A @bug 4032066 4039597 4046914 4054511 4065189 4109131 4875229 6983520
0N/A @summary General exhaustive test of win32 pathname handling
0N/A @author Mark Reinhold
0N/A
0N/A @build General GeneralWin32
0N/A @run main/timeout=600 GeneralWin32
0N/A */
0N/A
0N/Aimport java.io.*;
0N/Aimport java.util.*;
0N/A
0N/A
0N/Apublic class GeneralWin32 extends General {
0N/A
0N/A
0N/A /**
0N/A * Hardwired UNC pathnames used for testing
0N/A *
0N/A * This test attempts to use the host and share names defined in this class
0N/A * to test UNC pathnames. The test will not fail if the host or share
0N/A * don't exist, but it will print a warning saying that it was unable to
0N/A * test UNC pathnames completely.
0N/A */
0N/A private static final String EXISTENT_UNC_HOST = "pc-cup01";
0N/A private static final String EXISTENT_UNC_SHARE = "pcdist";
0N/A private static final String NONEXISTENT_UNC_HOST = "non-existent-unc-host";
0N/A private static final String NONEXISTENT_UNC_SHARE = "bogus-share";
0N/A
0N/A
0N/A /* Pathnames relative to working directory */
0N/A
0N/A private static void checkCaseLookup(String ud) throws IOException {
0N/A /* Use long names here to avoid 8.3 format, which Samba servers often
0N/A force to lowercase */
0N/A File d = new File("XyZzY0123", "FOO_bar_BAZ");
0N/A File f = new File(d, "GLORPified");
0N/A if (!f.exists()) {
0N/A if (!d.exists()) {
0N/A if (!d.mkdirs()) {
0N/A throw new RuntimeException("Can't create directory " + d);
0N/A }
0N/A }
0N/A OutputStream o = new FileOutputStream(f);
0N/A o.close();
0N/A }
0N/A File f2 = new File(d.getParent(), "mumble"); /* For later ud tests */
0N/A if (!f2.exists()) {
0N/A OutputStream o = new FileOutputStream(f2);
0N/A o.close();
0N/A }
0N/A
0N/A /* Computing the canonical path of a Win32 file should expose the true
0N/A case of filenames, rather than just using the input case */
0N/A File y = new File(ud, f.getPath());
0N/A String ans = y.getPath();
0N/A check(ans, "XyZzY0123\\FOO_bar_BAZ\\GLORPified");
0N/A check(ans, "xyzzy0123\\foo_bar_baz\\glorpified");
0N/A check(ans, "XYZZY0123\\FOO_BAR_BAZ\\GLORPIFIED");
0N/A }
0N/A
0N/A private static void checkWild(File f) throws Exception {
0N/A try {
0N/A f.getCanonicalPath();
0N/A } catch (IOException x) {
0N/A return;
0N/A }
0N/A throw new Exception("Wildcard path not rejected: " + f);
0N/A }
0N/A
0N/A private static void checkWildCards(String ud) throws Exception {
0N/A File d = new File(ud).getCanonicalFile();
0N/A checkWild(new File(d, "*.*"));
0N/A checkWild(new File(d, "*.???"));
0N/A checkWild(new File(new File(d, "*.*"), "foo"));
0N/A }
0N/A
0N/A private static void checkRelativePaths() throws Exception {
0N/A String ud = System.getProperty("user.dir").replace('/', '\\');
0N/A checkCaseLookup(ud);
0N/A checkWildCards(ud);
0N/A checkNames(3, true, ud + "\\", "");
0N/A }
0N/A
0N/A
0N/A /* Pathnames with drive specifiers */
0N/A
0N/A private static char findInactiveDrive() {
0N/A for (char d = 'Z'; d >= 'E'; d--) {
0N/A File df = new File(d + ":\\");
0N/A if (!df.exists()) {
0N/A return d;
0N/A }
0N/A }
0N/A throw new RuntimeException("Can't find an inactive drive");
0N/A }
0N/A
0N/A private static char findActiveDrive() {
0N/A for (char d = 'C'; d <= 'Z'; d--) {
0N/A File df = new File(d + ":\\");
0N/A if (df.exists()) return d;
0N/A }
0N/A throw new RuntimeException("Can't find an active drive");
0N/A }
0N/A
0N/A private static void checkDrive(int depth, char drive, boolean exists)
0N/A throws Exception
0N/A {
0N/A String d = drive + ":";
0N/A File df = new File(d);
0N/A String ans = exists ? df.getAbsolutePath() : d;
0N/A if (!ans.endsWith("\\"))
0N/A ans = ans + "\\";
0N/A checkNames(depth, false, ans, d);
0N/A }
0N/A
0N/A private static void checkDrivePaths() throws Exception {
0N/A checkDrive(2, findActiveDrive(), true);
0N/A checkDrive(2, findInactiveDrive(), false);
0N/A }
0N/A
0N/A
0N/A /* UNC pathnames */
0N/A
0N/A private static void checkUncPaths() throws Exception {
0N/A String s = ("\\\\" + NONEXISTENT_UNC_HOST
0N/A + "\\" + NONEXISTENT_UNC_SHARE);
0N/A ensureNon(s);
0N/A checkSlashes(2, false, s, s);
0N/A
0N/A s = "\\\\" + EXISTENT_UNC_HOST + "\\" + EXISTENT_UNC_SHARE;
0N/A if (!(new File(s)).exists()) {
0N/A System.err.println("WARNING: " + s +
0N/A " does not exist, unable to test UNC pathnames");
0N/A return;
0N/A }
0N/A
0N/A checkSlashes(2, false, s, s);
0N/A }
0N/A
0N/A
0N/A public static void main(String[] args) throws Exception {
0N/A if (File.separatorChar != '\\') {
0N/A /* This test is only valid on win32 systems */
0N/A return;
0N/A }
0N/A if (args.length > 0) debug = true;
0N/A checkRelativePaths();
0N/A checkDrivePaths();
0N/A checkUncPaths();
0N/A }
0N/A
0N/A}