SetAccess.java revision 3471
3458N/A/*
3458N/A * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
3458N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3458N/A *
3458N/A * This code is free software; you can redistribute it and/or modify it
3458N/A * under the terms of the GNU General Public License version 2 only, as
3458N/A * published by the Free Software Foundation.
3458N/A *
3458N/A * This code is distributed in the hope that it will be useful, but WITHOUT
3458N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3458N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
3458N/A * version 2 for more details (a copy is included in the LICENSE file that
3458N/A * accompanied this code).
3458N/A *
3458N/A * You should have received a copy of the GNU General Public License version
3458N/A * 2 along with this work; if not, write to the Free Software Foundation,
3458N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3458N/A *
3458N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3458N/A * or visit www.oracle.com if you need additional information or have any
3458N/A * questions.
3458N/A */
3458N/A
3458N/A/* @test
3458N/A @bug 4167472 5097703 6216563 6284003 6728842 6464744
3458N/A @summary Basic test for setWritable/Readable/Executable methods
3458N/A */
3458N/A
3458N/Aimport java.io.*;
3458N/Aimport java.nio.file.*;
3458N/Aimport java.nio.file.attribute.*;
3458N/A
3458N/Apublic class SetAccess {
3458N/A public static void main(String[] args) throws Exception {
3458N/A File d = new File(System.getProperty("test.dir", "."));
3458N/A
3458N/A File f = new File(d, "x.SetAccessPermission");
3458N/A if (f.exists() && !f.delete())
3458N/A throw new Exception("Can't delete test file: " + f);
3458N/A OutputStream o = new FileOutputStream(f);
3458N/A o.write('x');
3458N/A o.close();
3458N/A doTest(f);
3458N/A
3458N/A f = new File(d, "x.SetAccessPermission.dir");
3458N/A if (f.exists() && !f.delete())
3458N/A throw new Exception("Can't delete test dir: " + f);
3458N/A if (!f.mkdir())
3458N/A throw new Exception(f + ": Cannot create directory");
3458N/A doTest(f);
3458N/A }
3458N/A
3458N/A public static void doTest(File f) throws Exception {
3458N/A if (!System.getProperty("os.name").startsWith("Windows")) {
3458N/A if (!f.setReadOnly())
3458N/A throw new Exception(f + ": setReadOnly Failed");
3458N/A if (!f.setWritable(true, true) ||
3458N/A !f.canWrite() ||
3458N/A permission(f).charAt(2) != 'w')
3458N/A throw new Exception(f + ": setWritable(true, ture) Failed");
3458N/A if (!f.setWritable(false, true) ||
3458N/A f.canWrite() ||
3458N/A permission(f).charAt(2) != '-')
3458N/A throw new Exception(f + ": setWritable(false, true) Failed");
3458N/A if (!f.setWritable(true, false) ||
3458N/A !f.canWrite() ||
3458N/A !permission(f).matches(".(.w.){3}"))
3458N/A throw new Exception(f + ": setWritable(true, false) Failed");
3458N/A if (!f.setWritable(false, false) ||
3458N/A f.canWrite() ||
3458N/A !permission(f).matches(".(.-.){3}"))
3458N/A throw new Exception(f + ": setWritable(false, true) Failed");
3458N/A if (!f.setWritable(true) || !f.canWrite() ||
3458N/A permission(f).charAt(2) != 'w')
3458N/A throw new Exception(f + ": setWritable(true, ture) Failed");
3458N/A if (!f.setWritable(false) || f.canWrite() ||
3458N/A permission(f).charAt(2) != '-')
3458N/A throw new Exception(f + ": setWritable(false, true) Failed");
3458N/A if (!f.setExecutable(true, true) ||
3458N/A !f.canExecute() ||
3458N/A permission(f).charAt(3) != 'x')
3458N/A throw new Exception(f + ": setExecutable(true, true) Failed");
3458N/A if (!f.setExecutable(false, true) ||
3458N/A f.canExecute() ||
3458N/A permission(f).charAt(3) != '-')
3458N/A throw new Exception(f + ": setExecutable(false, true) Failed");
3458N/A if (!f.setExecutable(true, false) ||
3458N/A !f.canExecute() ||
3458N/A !permission(f).matches(".(..x){3}"))
3458N/A throw new Exception(f + ": setExecutable(true, false) Failed");
3458N/A if (!f.setExecutable(false, false) ||
3458N/A f.canExecute() ||
3458N/A !permission(f).matches(".(..-){3}"))
3458N/A throw new Exception(f + ": setExecutable(false, false) Failed");
3458N/A if (!f.setExecutable(true) || !f.canExecute() ||
3458N/A permission(f).charAt(3) != 'x')
3458N/A throw new Exception(f + ": setExecutable(true, true) Failed");
3458N/A if (!f.setExecutable(false) || f.canExecute() ||
3458N/A permission(f).charAt(3) != '-')
3458N/A throw new Exception(f + ": setExecutable(false, true) Failed");
3458N/A if (!f.setReadable(true, true) ||
3458N/A !f.canRead() ||
3458N/A permission(f).charAt(1) != 'r')
throw new Exception(f + ": setReadable(true, true) Failed");
if (!f.setReadable(false, true) ||
f.canRead() ||
permission(f).charAt(1) != '-')
throw new Exception(f + ": setReadable(false, true) Failed");
if (!f.setReadable(true, false) ||
!f.canRead() ||
!permission(f).matches(".(r..){3}"))
throw new Exception(f + ": setReadable(true, false) Failed");
if (!f.setReadable(false, false) ||
f.canRead() ||
!permission(f).matches(".(-..){3}"))
throw new Exception(f + ": setReadable(false, false) Failed");
if (!f.setReadable(true) || !f.canRead() ||
permission(f).charAt(1) != 'r')
throw new Exception(f + ": setReadable(true, true) Failed");
if (!f.setReadable(false) || f.canRead() ||
permission(f).charAt(1) != '-')
throw new Exception(f + ": setReadable(false, true) Failed");
} else {
//Windows platform
if (f.isFile()) {
if (!f.setReadOnly())
throw new Exception(f + ": setReadOnly Failed");
if (!f.setWritable(true, true) || !f.canWrite())
throw new Exception(f + ": setWritable(true, ture) Failed");
if (!f.setWritable(true, false) || !f.canWrite())
throw new Exception(f + ": setWritable(true, false) Failed");
if (!f.setWritable(true) || !f.canWrite())
throw new Exception(f + ": setWritable(true, ture) Failed");
if (!f.setExecutable(true, true) || !f.canExecute())
throw new Exception(f + ": setExecutable(true, true) Failed");
if (!f.setExecutable(true, false) || !f.canExecute())
throw new Exception(f + ": setExecutable(true, false) Failed");
if (!f.setExecutable(true) || !f.canExecute())
throw new Exception(f + ": setExecutable(true, true) Failed");
if (!f.setReadable(true, true) || !f.canRead())
throw new Exception(f + ": setReadable(true, true) Failed");
if (!f.setReadable(true, false) || !f.canRead())
throw new Exception(f + ": setReadable(true, false) Failed");
if (!f.setReadable(true) || !f.canRead())
throw new Exception(f + ": setReadable(true, true) Failed");
}
if (f.isDirectory()) {
// setWritable should fail on directories because the DOS readonly
// attribute prevents a directory from being deleted.
if (f.setWritable(false, true))
throw new Exception(f + ": setWritable(false, true) Succeeded");
if (f.setWritable(false, false))
throw new Exception(f + ": setWritable(false, false) Succeeded");
if (f.setWritable(false))
throw new Exception(f + ": setWritable(false) Succeeded");
} else {
if (!f.setWritable(false, true) || f.canWrite())
throw new Exception(f + ": setWritable(false, true) Failed");
if (!f.setWritable(false, false) || f.canWrite())
throw new Exception(f + ": setWritable(false, false) Failed");
if (!f.setWritable(false) || f.canWrite())
throw new Exception(f + ": setWritable(false) Failed");
}
if (f.setExecutable(false, true))
throw new Exception(f + ": setExecutable(false, true) Failed");
if (f.setExecutable(false, false))
throw new Exception(f + ": setExecutable(false, false) Failed");
if (f.setExecutable(false))
throw new Exception(f + ": setExecutable(false, true) Failed");
if (f.setReadable(false, true))
throw new Exception(f + ": setReadable(false, true) Failed");
if (f.setReadable(false, false))
throw new Exception(f + ": setReadable(false, false) Failed");
if (f.setReadable(false))
throw new Exception(f + ": setReadable(false, true) Failed");
}
if (f.exists() && !f.delete())
throw new Exception("Can't delete test dir: " + f);
}
private static String permission(File f) throws Exception {
PosixFileAttributes attrs = Files.readAttributes(f.toPath(), PosixFileAttributes.class);
String type = attrs.isDirectory() ? "d" : " ";
return type + PosixFilePermissions.toString(attrs.permissions());
}
}