/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* 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 4615343
* @summary Check that ZipError is thrown instead of InternalError when
* iterating entries of an invalid zip file
*/
public class TestZipError {
// Causing a ZipError is hard, especially on non-Windows systems. See
// comments below.
return;
}
f.delete();
// Create a zip file with two entries.
zos.closeEntry();
zos.closeEntry();
// Open the ZipFile. This will read the zip file's central
// directory into in-memory data structures.
// Delete the file; of course this does not change the in-memory data
// structures that represent the central directory!
f.delete();
// Re-create zip file, with different entries than earlier. However,
// recall that we have in-memory information about the central
// directory of the file at its previous state.
zos.closeEntry();
// Iterate zip file's contents. On Windows, this will result in a
// ZipError, because the data in the file differs from the in-memory
// central directory information we read earlier.
try {
while (entries.hasMoreElements()) {
}
fail("Did not get expected exception");
} catch (ZipError e) {
pass();
} catch (InternalError e) {
fail("Caught InternalError instead of expected ZipError");
} catch (Throwable t) {
unexpected(t);
} finally {
f.delete();
}
}
//--------------------- Infrastructure ---------------------------
else fail(x + " not equal to " + y);}
}