jdk/test/java/io/File/SetLastModified.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 692 50a393caed65
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1998-1999 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/* @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
   @bug 4091757
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
   @summary Basic test for setLastModified method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
public class SetLastModified {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
    private static void ck(File f, long nt, long rt) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
        if (rt == nt) return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
        if ((rt / 10 == nt / 10)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
            || (rt / 100 == nt / 100)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
            || (rt / 1000 == nt / 1000)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
            || (rt / 10000 == (nt / 10000))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
            System.err.println(f + ": Time set to " + nt
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
                               + ", rounded down by filesystem to " + rt);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        if ((rt / 10 == (nt + 5) / 10)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
            || (rt / 100 == (nt + 50) / 100)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
            || (rt / 1000 == (nt + 500) / 1000)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
            || (rt / 10000 == ((nt + 5000) / 10000))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
            System.err.println(f + ": Time set to " + nt
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
                               + ", rounded up by filesystem to " + rt);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        throw new Exception(f + ": Time set to " + nt
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
                            + ", then read as " + rt);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        File d = new File(System.getProperty("test.dir", "."));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        File d2 = new File(d, "x.SetLastModified.dir");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        File f = new File(d2, "x.SetLastModified");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        long ot, t;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        /* New time: One week ago */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        long nt = System.currentTimeMillis() - 1000 * 60 * 60 * 24 * 7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        if (f.exists()) f.delete();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        if (d2.exists()) d2.delete();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        if (!d2.mkdir()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            throw new Exception("Can't create test directory " + d2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        boolean threw = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            d2.setLastModified(-nt);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        } catch (IllegalArgumentException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            threw = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        if (!threw)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            throw new Exception("setLastModified succeeded with a negative time");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        ot = d2.lastModified();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        if (ot != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            if (d2.setLastModified(nt)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
                ck(d2, nt, d2.lastModified());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
                d2.setLastModified(ot);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
                System.err.println("Warning: setLastModified on directories "
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
                                   + "not supported");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        if (f.exists()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            if (!f.delete())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                throw new Exception("Can't delete test file " + f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        if (f.setLastModified(nt))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            throw new Exception("Succeeded on non-existent file: " + f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        OutputStream o = new FileOutputStream(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        o.write('x');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        o.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        ot = f.lastModified();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        if (!f.setLastModified(nt))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            throw new Exception("setLastModified failed on file: " + f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        ck(f, nt, f.lastModified());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        if (!f.delete()) throw new Exception("Can't delete test file " + f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        if (!d2.delete()) throw new Exception("Can't delete test directory " + d2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
}