3061N/A/*
4046N/A * Copyright (c) 2010, 2011, Oracle and/or its affiliates. All rights reserved.
3061N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3061N/A *
3061N/A * This code is free software; you can redistribute it and/or modify it
3061N/A * under the terms of the GNU General Public License version 2 only, as
3061N/A * published by the Free Software Foundation.
3061N/A *
3061N/A * This code is distributed in the hope that it will be useful, but WITHOUT
3061N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3061N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
3061N/A * version 2 for more details (a copy is included in the LICENSE file that
3061N/A * accompanied this code).
3061N/A *
3061N/A * You should have received a copy of the GNU General Public License version
3061N/A * 2 along with this work; if not, write to the Free Software Foundation,
3061N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3061N/A *
3061N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3061N/A * or visit www.oracle.com if you need additional information or have any
3061N/A * questions.
3061N/A */
3061N/A
3061N/A/*
3061N/A * @test
3061N/A * @bug 6544278
3061N/A * @summary Confirm the JarInputStream throws the SecurityException when
3061N/A * verifying an indexed jar file with corrupted signature
3061N/A */
3061N/A
3061N/Aimport java.io.IOException;
3061N/Aimport java.io.FileInputStream;
3061N/Aimport java.util.jar.JarEntry;
3061N/Aimport java.util.jar.JarInputStream;
3061N/A
3061N/Apublic class TestIndexedJarWithBadSignature {
3061N/A
3061N/A public static void main(String...args) throws Throwable {
3061N/A try (JarInputStream jis = new JarInputStream(
4046N/A new FileInputStream(System.getProperty("test.src", ".") +
3061N/A System.getProperty("file.separator") +
3061N/A "BadSignedJar.jar")))
3061N/A {
3061N/A JarEntry je1 = jis.getNextJarEntry();
3061N/A while(je1!=null){
3061N/A System.out.println("Jar Entry1==>"+je1.getName());
3061N/A je1 = jis.getNextJarEntry(); // This should throw Security Exception
3061N/A }
3061N/A throw new RuntimeException(
3061N/A "Test Failed:Security Exception not being thrown");
3061N/A } catch (IOException ie){
3061N/A ie.printStackTrace();
3061N/A } catch (SecurityException e) {
3061N/A System.out.println("Test passed: Security Exception thrown as expected");
3061N/A }
3061N/A }
3061N/A}