1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
|
/*
* Copyright (c) 2006, 2013, 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 6480504 6303183
* @summary Test that client-provided data in the extra field is written and
* read correctly, taking into account the JAR_MAGIC written into the extra
* field of the first entry of JAR files.
* @author Dave Bristor
*/
import java.io.*;
import java.nio.charset.Charset;
import java.util.Arrays;
import java.util.jar.*;
import java.util.zip.*;
/**
* Tests that the get/set operations on extra data in zip and jar files work
* as advertised. The base class tests ZIP files, the member class
* TestJarExtra checks JAR files.
*/
public class TestExtra {
static final int JAR_MAGIC = 0xcafe; // private IN JarOutputStream.java
static final int TEST_HEADER = 0xbabe;
static final Charset ascii = Charset.forName("ASCII");
// ZipEntry extra data
static final byte[][] extra = new byte[][] {
ascii.encode("hello, world").array(),
ascii.encode("foo bar").array()
};
// For naming entries in JAR/ZIP streams
int count = 1;
// Use byte arrays instead of files
ByteArrayOutputStream baos;
// JAR/ZIP content written here.
ZipOutputStream zos;
public static void realMain(String[] args) throws Throwable{
new TestExtra().testHeaderPlusData();
new TestJarExtra().testHeaderPlusData();
new TestJarExtra().testHeaderOnly();
new TestJarExtra().testClientJarMagic();
}
TestExtra() {
try {
baos = new ByteArrayOutputStream();
zos = getOutputStream(baos);
} catch (Throwable t) {
unexpected(t);
}
}
/** Test that a header + data set by client works. */
void testHeaderPlusData() throws IOException {
for (byte[] b : extra) {
ZipEntry ze = getEntry();
byte[] data = new byte[b.length + 4];
set16(data, 0, TEST_HEADER);
set16(data, 2, b.length);
for (int i = 0; i < b.length; i++) {
data[i + 4] = b[i];
}
ze.setExtra(data);
zos.putNextEntry(ze);
}
zos.close();
ZipInputStream zis = getInputStream();
ZipEntry ze = zis.getNextEntry();
checkEntry(ze, 0, extra[0].length);
ze = zis.getNextEntry();
checkEntry(ze, 1, extra[1].length);
}
/** Test that a header only (i.e., no extra "data") set by client works. */
void testHeaderOnly() throws IOException {
ZipEntry ze = getEntry();
byte[] data = new byte[4];
set16(data, 0, TEST_HEADER);
set16(data, 2, 0); // Length of data is 0.
ze.setExtra(data);
zos.putNextEntry(ze);
zos.close();
ZipInputStream zis = getInputStream();
ze = zis.getNextEntry();
checkExtra(data, ze.getExtra());
checkEntry(ze, 0, 0);
}
/** Tests the client providing extra data which uses JAR_MAGIC header. */
void testClientJarMagic() throws IOException {
ZipEntry ze = getEntry();
byte[] data = new byte[8];
set16(data, 0, TEST_HEADER);
set16(data, 2, 0); // Length of data is 0.
set16(data, 4, JAR_MAGIC);
set16(data, 6, 0); // Length of data is 0.
ze.setExtra(data);
zos.putNextEntry(ze);
zos.close();
ZipInputStream zis = getInputStream();
ze = zis.getNextEntry();
byte[] e = ze.getExtra();
checkExtra(data, ze.getExtra());
checkEntry(ze, 0, 0);
}
// check if all "expected" extra fields equal to their
// corresponding fields in "extra". The "extra" might have
// timestamp fields added by ZOS.
static void checkExtra(byte[] expected, byte[] extra) {
if (expected == null)
return;
int off = 0;
int len = expected.length;
while (off + 4 < len) {
int tag = get16(expected, off);
int sz = get16(expected, off + 2);
int off0 = 0;
int len0 = extra.length;
boolean matched = false;
while (off0 + 4 < len0) {
int tag0 = get16(extra, off0);
int sz0 = get16(extra, off0 + 2);
if (tag == tag0 && sz == sz0) {
matched = true;
for (int i = 0; i < sz; i++) {
if (expected[off + i] != extra[off0 +i])
matched = false;
}
break;
}
off0 += (4 + sz0);
}
if (!matched) {
fail("Expected extra data [tag=" + tag + "sz=" + sz + "] check failed");
}
off += (4 + sz);
}
}
/** Check that the entry's extra data is correct. */
void checkEntry(ZipEntry ze, int count, int dataLength) {
byte[] extraData = ze.getExtra();
byte[] data = getField(TEST_HEADER, extraData);
if (!check(data != null, "unexpected null data for TEST_HEADER")) {
return;
}
if (dataLength == 0) {
check(data.length == 0, "unexpected non-zero data length for TEST_HEADER");
} else {
check(Arrays.equals(extra[count], data),
"failed to get entry " + ze.getName()
+ ", expected " + new String(extra[count]) + ", got '" + new String(data) + "'");
}
}
/** Look up descriptor in data, returning corresponding byte[]. */
static byte[] getField(int descriptor, byte[] data) {
byte[] rc = null;
try {
int i = 0;
while (i < data.length) {
if (get16(data, i) == descriptor) {
int length = get16(data, i + 2);
rc = new byte[length];
for (int j = 0; j < length; j++) {
rc[j] = data[i + 4 + j];
}
return rc;
}
i += get16(data, i + 2) + 4;
}
} catch (ArrayIndexOutOfBoundsException e) {
// descriptor not found
}
return rc;
}
ZipInputStream getInputStream() {
return new ZipInputStream(
new ByteArrayInputStream(baos.toByteArray()));
}
ZipOutputStream getOutputStream(ByteArrayOutputStream baos) throws IOException {
return new ZipOutputStream(baos);
}
ZipInputStream getInputStream(ByteArrayInputStream bais) throws IOException {
return new ZipInputStream(bais);
}
ZipEntry getEntry() { return new ZipEntry("zip" + count++ + ".txt"); }
private static int get16(byte[] b, int off) {
return (b[off] & 0xff) | ((b[off+1] & 0xff) << 8);
}
private static void set16(byte[] b, int off, int value) {
b[off+0] = (byte)value;
b[off+1] = (byte)(value >> 8);
}
/** Test extra field of a JAR file. */
static class TestJarExtra extends TestExtra {
ZipOutputStream getOutputStream(ByteArrayOutputStream baos) throws IOException {
return new JarOutputStream(baos);
}
ZipInputStream getInputStream(ByteArrayInputStream bais) throws IOException {
return new JarInputStream(bais);
}
ZipEntry getEntry() { return new ZipEntry("jar" + count++ + ".txt"); }
void checkEntry(ZipEntry ze, int count, int dataLength) {
// zeroth entry should have JAR_MAGIC
if (count == 0) {
byte[] extraData = ze.getExtra();
byte[] data = getField(JAR_MAGIC, extraData);
if (!check(data != null, "unexpected null data for JAR_MAGIC")) {
check(data.length != 0, "unexpected non-zero data length for JAR_MAGIC");
}
}
// In a jar file, the first ZipEntry should have both JAR_MAGIC
// and the TEST_HEADER, so check that also.
super.checkEntry(ze, count, dataLength);
}
}
//--------------------- Infrastructure ---------------------------
static volatile int passed = 0, failed = 0;
static void pass() {passed++;}
static void fail() {failed++; Thread.dumpStack();}
static void fail(String msg) {System.out.println(msg); fail();}
static void unexpected(Throwable t) {failed++; t.printStackTrace();}
static void check(boolean cond) {if (cond) pass(); else fail();}
static boolean check(boolean cond, String msg) {if (cond) pass(); else fail(msg); return cond; }
static void equal(Object x, Object y) {
if (x == null ? y == null : x.equals(y)) pass();
else fail(x + " not equal to " + y);}
public static void main(String[] args) throws Throwable {
try {realMain(args);} catch (Throwable t) {unexpected(t);}
System.out.println("\nPassed = " + passed + " failed = " + failed);
if (failed > 0) throw new Error("Some tests failed");}
}
|