jdk/test/java/util/zip/ZipFile/ReadZip.java
author ohair
Wed, 06 Apr 2011 22:06:11 -0700
changeset 9035 1255eb81cc2f
parent 8553 46c2babb1e44
child 22948 2cf7e7202386
permissions -rw-r--r--
7033660: Update copyright year to 2011 on any files changed in 2011 Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
9035
1255eb81cc2f 7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents: 8553
diff changeset
     2
 * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
2
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
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4822
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4822
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4822
diff changeset
    21
 * questions.
2
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
4822
bcc6dbec57d8 6923692: java/classes_util TEST_BUG:ReadZip.java fails when
sherman
parents: 3078
diff changeset
    25
   @bug 4241361 4842702 4985614 6646605 5032358 6923692
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
   @summary Make sure we can read a zip file.
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.*;
8553
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    30
import java.nio.file.Files;
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    31
import java.nio.file.Paths;
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    32
import java.nio.file.StandardCopyOption;
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    33
import java.nio.file.StandardOpenOption;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.util.zip.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
public class ReadZip {
3078
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    37
    private static void unreached (Object o)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
        throws Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
        // Should never get here
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
        throw new Exception ("Expected exception was not thrown");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    public static void main(String args[]) throws Exception {
8553
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    45
        try (ZipFile zf = new ZipFile(new File(System.getProperty("test.src", "."),
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    46
                                               "input.zip"))) {
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    47
            // Make sure we throw NPE on null objects
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    48
            try { unreached (zf.getEntry(null)); }
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    49
            catch (NullPointerException e) {}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
8553
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    51
            try { unreached (zf.getInputStream(null)); }
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    52
            catch (NullPointerException e) {}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
8553
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    54
            ZipEntry ze = zf.getEntry("ReadZip.java");
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    55
            if (ze == null) {
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    56
                throw new Exception("cannot read from zip file");
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    57
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        }
3078
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    59
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    60
        // Make sure we can read the zip file that has some garbage
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    61
        // bytes padded at the end.
8553
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    62
        File newZip = new File(System.getProperty("test.dir", "."), "input2.zip");
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    63
        Files.copy(Paths.get(System.getProperty("test.src", ""), "input.zip"),
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    64
                   newZip.toPath(), StandardCopyOption.REPLACE_EXISTING);
3078
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    65
8553
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    66
        // pad some bytes
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    67
        try (OutputStream os = Files.newOutputStream(newZip.toPath(),
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    68
                                                     StandardOpenOption.APPEND)) {
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    69
            os.write(1); os.write(3); os.write(5); os.write(7);
3078
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    70
        }
8553
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    71
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    72
        try (ZipFile zf = new ZipFile(newZip)) {
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    73
            ZipEntry ze = zf.getEntry("ReadZip.java");
3078
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    74
            if (ze == null) {
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    75
                throw new Exception("cannot read from zip file");
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    76
            }
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    77
        } finally {
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    78
            newZip.delete();
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    79
        }
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    80
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    81
        // Read zip file comment
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    82
        try {
8553
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    83
            try (FileOutputStream fos = new FileOutputStream(newZip);
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    84
                 ZipOutputStream zos = new ZipOutputStream(fos))
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    85
            {
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    86
                ZipEntry ze = new ZipEntry("ZipEntry");
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    87
                zos.putNextEntry(ze);
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    88
                zos.write(1); zos.write(2); zos.write(3); zos.write(4);
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    89
                zos.closeEntry();
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    90
                zos.setComment("This is the comment for testing");
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    91
            }
3078
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
    92
8553
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    93
            try (ZipFile zf = new ZipFile(newZip)) {
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    94
                ZipEntry ze = zf.getEntry("ZipEntry");
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    95
                if (ze == null)
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    96
                    throw new Exception("cannot read entry from zip file");
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    97
                if (!"This is the comment for testing".equals(zf.getComment()))
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    98
                    throw new Exception("cannot read comment from zip file");
46c2babb1e44 7021582: convert jar/zip code and tests to use try-with-resources
smarks
parents: 7668
diff changeset
    99
            }
3078
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
   100
        } finally {
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
   101
            newZip.delete();
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
   102
        }
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
   103
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
   104
        // Throw a FNF exception when read a non-existing zip file
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
   105
        try { unreached (new ZipFile(
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
   106
                             new File(System.getProperty("test.src", "."),
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
   107
                                     "input"
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
   108
                                      + String.valueOf(new java.util.Random().nextInt())
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
   109
                                      + ".zip")));
c491f0d2a8aa 6707281: Adler32.update() JavaDoc is wrong
sherman
parents: 2
diff changeset
   110
        } catch (FileNotFoundException fnfe) {}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
}