1 /*
   2  * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25    @bug 4241361 4842702 4985614 6646605 5032358 6923692
  26    @summary Make sure we can read a zip file.
  27  */
  28 
  29 import java.io.*;
  30 import java.nio.file.Files;
  31 import java.nio.file.Paths;
  32 import java.nio.file.StandardCopyOption;
  33 import java.nio.file.StandardOpenOption;
  34 import java.util.zip.*;
  35 
  36 public class ReadZip {
  37     private static void unreached (Object o)
  38         throws Exception
  39     {
  40         // Should never get here
  41         throw new Exception ("Expected exception was not thrown");
  42     }
  43 
  44     public static void main(String args[]) throws Exception {
  45         try (ZipFile zf = new ZipFile(new File(System.getProperty("test.src", "."),
  46                                                "input.zip"))) {
  47             // Make sure we throw NPE on null objects
  48             try { unreached (zf.getEntry(null)); }
  49             catch (NullPointerException e) {}
  50 
  51             try { unreached (zf.getInputStream(null)); }
  52             catch (NullPointerException e) {}
  53 
  54             ZipEntry ze = zf.getEntry("ReadZip.java");
  55             if (ze == null) {
  56                 throw new Exception("cannot read from zip file");
  57             }
  58         }
  59 
  60         // Make sure we can read the zip file that has some garbage
  61         // bytes padded at the end.
  62         File newZip = new File(System.getProperty("test.dir", "."), "input2.zip");
  63         Files.copy(Paths.get(System.getProperty("test.src", ""), "input.zip"),
  64                    newZip.toPath(), StandardCopyOption.REPLACE_EXISTING);
  65 
  66         newZip.setWritable(true);
  67 
  68         // pad some bytes
  69         try (OutputStream os = Files.newOutputStream(newZip.toPath(),
  70                                                      StandardOpenOption.APPEND)) {
  71             os.write(1); os.write(3); os.write(5); os.write(7);
  72         }
  73 
  74         try (ZipFile zf = new ZipFile(newZip)) {
  75             ZipEntry ze = zf.getEntry("ReadZip.java");
  76             if (ze == null) {
  77                 throw new Exception("cannot read from zip file");
  78             }
  79         } finally {
  80             newZip.delete();
  81         }
  82 
  83         // Read zip file comment
  84         try {
  85             try (FileOutputStream fos = new FileOutputStream(newZip);
  86                  ZipOutputStream zos = new ZipOutputStream(fos))
  87             {
  88                 ZipEntry ze = new ZipEntry("ZipEntry");
  89                 zos.putNextEntry(ze);
  90                 zos.write(1); zos.write(2); zos.write(3); zos.write(4);
  91                 zos.closeEntry();
  92                 zos.setComment("This is the comment for testing");
  93             }
  94 
  95             try (ZipFile zf = new ZipFile(newZip)) {
  96                 ZipEntry ze = zf.getEntry("ZipEntry");
  97                 if (ze == null)
  98                     throw new Exception("cannot read entry from zip file");
  99                 if (!"This is the comment for testing".equals(zf.getComment()))
 100                     throw new Exception("cannot read comment from zip file");
 101             }
 102         } finally {
 103             newZip.delete();
 104         }
 105 
 106         // Throw a FNF exception when read a non-existing zip file
 107         try { unreached (new ZipFile(
 108                              new File(System.getProperty("test.src", "."),
 109                                      "input"
 110                                       + String.valueOf(new java.util.Random().nextInt())
 111                                       + ".zip")));
 112         } catch (FileNotFoundException fnfe) {}
 113     }
 114 }