products/sources/formale sprachen/Java/openjdk-20-36_src/test/jdk/java/io/File image not shown  

Quellcode-Bibliothek

© Kompilation durch diese Firma

[Weder Korrektheit noch Funktionsfähigkeit der Software werden zugesichert.]

Datei:   Sprache: JAVA

/*
 * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */


/* @test
   @bug 4167472 5097703 6216563 6284003 6728842 6464744
   @summary Basic test for setWritable/Readable/Executable methods
   @build SetAccess Util
   @run main SetAccess
 */


import java.io.*;
import java.nio.file.*;
import java.nio.file.attribute.*;

public class SetAccess {
    public static void main(String[] args) throws Exception {
        if (Util.isPrivileged()) {
            System.out.println("Unable to test file permissions when running with privileges");
            return;
        }

        File d = new File(System.getProperty("test.dir""."));

        File f = new File(d, "x.SetAccessPermission");
        if (f.exists() && !f.delete())
            throw new Exception("Can't delete test file: " + f);
        OutputStream o = new FileOutputStream(f);
        o.write('x');
        o.close();
        doTest(f);

        f = new File(d, "x.SetAccessPermission.dir");
        if (f.exists() && !f.delete())
            throw new Exception("Can't delete test dir: " + f);
        if (!f.mkdir())
            throw new Exception(f + ": Cannot create directory");
        doTest(f);
    }

    public static void doTest(File f) throws Exception {
        if (!System.getProperty("os.name").startsWith("Windows")) {
            if (!f.setReadOnly())
                 throw new Exception(f + ": setReadOnly Failed");
            if (!f.setWritable(truetrue) ||
                !f.canWrite() ||
                permission(f).charAt(2) != 'w')
                throw new Exception(f + ": setWritable(true, ture) Failed");
            if (!f.setWritable(falsetrue) ||
                f.canWrite() ||
                permission(f).charAt(2) != '-')
                throw new Exception(f + ": setWritable(false, true) Failed");
            if (!f.setWritable(truefalse) ||
                !f.canWrite() ||
                !permission(f).matches(".(.w.){3}"))
                throw new Exception(f + ": setWritable(true, false) Failed");
            if (!f.setWritable(falsefalse) ||
                f.canWrite() ||
                !permission(f).matches(".(.-.){3}"))
                throw new Exception(f + ": setWritable(false, true) Failed");
            if (!f.setWritable(true) || !f.canWrite() ||
                permission(f).charAt(2) != 'w')
                throw new Exception(f + ": setWritable(true, ture) Failed");
            if (!f.setWritable(false) || f.canWrite() ||
                permission(f).charAt(2) != '-')
                throw new Exception(f + ": setWritable(false, true) Failed");
            if (!f.setExecutable(truetrue) ||
                !f.canExecute() ||
                permission(f).charAt(3) != 'x')
                throw new Exception(f + ": setExecutable(true, true) Failed");
            if (!f.setExecutable(falsetrue) ||
                f.canExecute() ||
                permission(f).charAt(3) != '-')
                throw new Exception(f + ": setExecutable(false, true) Failed");
            if (!f.setExecutable(truefalse) ||
                !f.canExecute() ||
                !permission(f).matches(".(..x){3}"))
                throw new Exception(f + ": setExecutable(true, false) Failed");
            if (!f.setExecutable(falsefalse) ||
                f.canExecute() ||
                !permission(f).matches(".(..-){3}"))
                throw new Exception(f + ": setExecutable(false, false) Failed");
            if (!f.setExecutable(true) || !f.canExecute() ||
                permission(f).charAt(3) != 'x')
                throw new Exception(f + ": setExecutable(true, true) Failed");
            if (!f.setExecutable(false) || f.canExecute() ||
                permission(f).charAt(3) != '-')
                throw new Exception(f + ": setExecutable(false, true) Failed");
            if (!f.setReadable(truetrue) ||
                !f.canRead() ||
                permission(f).charAt(1) != 'r')
                throw new Exception(f + ": setReadable(true, true) Failed");
            if (!f.setReadable(falsetrue) ||
                f.canRead() ||
                permission(f).charAt(1) != '-')
                throw new Exception(f + ": setReadable(false, true) Failed");
            if (!f.setReadable(truefalse) ||
                !f.canRead() ||
                !permission(f).matches(".(r..){3}"))
                throw new Exception(f + ": setReadable(true, false) Failed");
            if (!f.setReadable(falsefalse) ||
                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(truetrue) || !f.canWrite())
                    throw new Exception(f + ": setWritable(true, ture) Failed");
                if (!f.setWritable(truefalse) || !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(truetrue) || !f.canExecute())
                    throw new Exception(f + ": setExecutable(true, true) Failed");
                if (!f.setExecutable(truefalse) || !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(truetrue) || !f.canRead())
                    throw new Exception(f + ": setReadable(true, true) Failed");
                if (!f.setReadable(truefalse) || !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(falsetrue))
                    throw new Exception(f + ": setWritable(false, true) Succeeded");
                if (f.setWritable(falsefalse))
                    throw new Exception(f + ": setWritable(false, false) Succeeded");
                if (f.setWritable(false))
                    throw new Exception(f + ": setWritable(false) Succeeded");
            } else {
                if (!f.setWritable(falsetrue) || f.canWrite())
                    throw new Exception(f + ": setWritable(false, true) Failed");
                if (!f.setWritable(falsefalse) || 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(falsetrue))
                throw new Exception(f + ": setExecutable(false, true) Failed");
            if (f.setExecutable(falsefalse))
                throw new Exception(f + ": setExecutable(false, false) Failed");
            if (f.setExecutable(false))
                throw new Exception(f + ": setExecutable(false, true) Failed");
            if (f.setReadable(falsetrue))
                throw new Exception(f + ": setReadable(false, true) Failed");
            if (f.setReadable(falsefalse))
                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());
    }
}

¤ Diese beiden folgenden Angebotsgruppen bietet das Unternehmen0.6Angebot  Wie Sie bei der Firma Beratungs- und Dienstleistungen beauftragen können  ¤





zum Wurzelverzeichnis wechseln
Diese Quellcodebibliothek enthält Beispiele in vielen Programmiersprachen. Man kann per Verzeichnistruktur darin navigieren. Der Code wird farblich markiert angezeigt.
zum Wurzelverzeichnis wechseln
Hier finden Sie eine Liste der Produkte des Unternehmens

Eigene Datei ansehen




Laden

Fehler beim Verzeichnis:


in der Quellcodebibliothek suchen

Entwicklung einer Software für die statische Quellcodeanalyse


Bot Zugriff