blob: 4d9811d99b85a22e25ee8561eeae16da9f600548 [file] [log] [blame]
duke6e45e102007-12-01 00:00:00 +00001/*
ohairbf91ea12011-04-06 22:06:11 -07002 * Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
duke6e45e102007-12-01 00:00:00 +00003 * 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 *
ohair2283b9d2010-05-25 15:58:33 -070019 * 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.
duke6e45e102007-12-01 00:00:00 +000022 */
23
24/* @test
25 * @bug 6237956
26 * @summary We must be able to read zip files created by Unix Info-Zip
27 * @author Martin Buchholz
28 */
29
30import java.util.*;
31import java.util.zip.*;
32import java.io.*;
33
34public class InfoZip {
35 static int passed = 0, failed = 0;
36
37 static void fail(String msg) {
38 failed++;
39 new Exception(msg).printStackTrace();
40 }
41
42 static void unexpected(Throwable t) {
43 failed++;
44 t.printStackTrace();
45 }
46
47 static void check(boolean condition, String msg) {
48 if (! condition)
49 fail(msg);
50 }
51
52 static void check(boolean condition) {
53 check(condition, "Something's wrong");
54 }
55
56 private static String contents(ZipFile zf, ZipEntry ze) throws Exception {
57 InputStream is = zf.getInputStream(ze);
58 String result = contents(is);
59 is.close();
60 return result;
61 }
62
63 private static String contents(InputStream is) throws Exception {
64 StringBuilder sb = new StringBuilder();
65 int c;
66 while ((c = is.read()) != -1)
67 sb.append((char)c);
68 return sb.toString();
69 }
70
71 private static void checkZipEntry(ZipEntry ze, String contents) {
72 check(ze.getName().equals("someFile"), "filename");
73 check(ze.getExtra() != null, "extra");
74 check(contents.equals("Message in a Bottle\n"), "contents");
75 check(ze.getSize() == "Message in a Bottle\n".length());
76 }
77
78
79 public static void main(String[] args) throws Exception {
80 //----------------------------------------------------------------
81 // The file InfoZip.zip was created using Unix Info-Zip's zip, thus:
82 // echo Message in a Bottle > someFile; zip InfoZip.zip someFile
83 // Such a file has a LOC extra different from the CEN extra,
84 // which cannot happen using JDK APIs.
85 //----------------------------------------------------------------
86 File f = new File("InfoZip.zip");
87
smarkse4682702011-02-25 02:06:10 -080088 try (OutputStream os = new FileOutputStream(f)) {
89 os.write(new byte[]
90 {'P', 'K', 3, 4, 10, 0, 0, 0, 0, 0, -68, 8, 'k',
91 '2', 'V', -7, 'm', 9, 20, 0, 0, 0, 20, 0, 0, 0,
92 8, 0, 21, 0, 's', 'o', 'm', 'e', 'F', 'i', 'l', 'e', 'U',
93 'T', 9, 0, 3, 't', '_', '1', 'B', 't', '_', '1', 'B', 'U',
94 'x', 4, 0, -14, 'v', 26, 4, 'M', 'e', 's', 's', 'a', 'g',
95 'e', ' ', 'i', 'n', ' ', 'a', ' ', 'B', 'o', 't', 't', 'l', 'e',
96 10, 'P', 'K', 1, 2, 23, 3, 10, 0, 0, 0, 0, 0,
97 -68, 8, 'k', '2', 'V', -7, 'm', 9, 20, 0, 0, 0, 20,
98 0, 0, 0, 8, 0, 13, 0, 0, 0, 0, 0, 1, 0,
99 0, 0, -92, -127, 0, 0, 0, 0, 's', 'o', 'm', 'e', 'F',
100 'i', 'l', 'e', 'U', 'T', 5, 0, 3, 't', '_', '1', 'B', 'U',
101 'x', 0, 0, 'P', 'K', 5, 6, 0, 0, 0, 0, 1, 0,
102 1, 0, 'C', 0, 0, 0, 'O', 0, 0, 0, 0, 0, });
103 }
duke6e45e102007-12-01 00:00:00 +0000104
shermanf360b2c2010-06-17 13:21:46 -0700105 ZipEntry ze = null;
smarkse4682702011-02-25 02:06:10 -0800106 try (ZipFile zf = new ZipFile(f)) {
shermanf360b2c2010-06-17 13:21:46 -0700107 Enumeration<? extends ZipEntry> entries = zf.entries();
108 ze = entries.nextElement();
109 check(! entries.hasMoreElements());
110 checkZipEntry(ze, contents(zf, ze));
shermanf360b2c2010-06-17 13:21:46 -0700111 }
duke6e45e102007-12-01 00:00:00 +0000112
smarkse4682702011-02-25 02:06:10 -0800113 try (FileInputStream fis = new FileInputStream(f);
114 ZipInputStream is = new ZipInputStream(fis))
115 {
shermanf360b2c2010-06-17 13:21:46 -0700116 ze = is.getNextEntry();
117 checkZipEntry(ze, contents(is));
118 check(is.getNextEntry() == null);
shermanf360b2c2010-06-17 13:21:46 -0700119 }
duke6e45e102007-12-01 00:00:00 +0000120 f.delete();
duke6e45e102007-12-01 00:00:00 +0000121 System.out.printf("passed = %d, failed = %d%n", passed, failed);
122 if (failed > 0) throw new Exception("Some tests failed");
123 }
124}