< prev index next >

jdk/test/java/util/jar/JarFile/MultiReleaseJarSecurity.java

Print this page


   1 /*
   2  * Copyright (c) 2015, 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 /*
  25  * @test
  26  * @bug 8132734
  27  * @summary Test potential security related issues
  28  * @library /lib/testlibrary/java/util/jar
  29  * @build Compiler JarBuilder CreateMultiReleaseTestJars
  30  * @run testng MultiReleaseJarSecurity
  31  */
  32 
  33 import java.io.File;
  34 import java.io.IOException;
  35 import java.io.InputStream;
  36 import java.nio.file.Files;
  37 import java.security.CodeSigner;
  38 import java.security.cert.Certificate;
  39 import java.util.Arrays;
  40 import java.util.jar.JarEntry;
  41 import java.util.jar.JarFile;
  42 import java.util.zip.ZipFile;
  43 import jdk.Version;
  44 
  45 import org.testng.Assert;
  46 import org.testng.annotations.AfterClass;
  47 import org.testng.annotations.BeforeClass;
  48 import org.testng.annotations.Test;
  49 
  50 public class MultiReleaseJarSecurity {
  51 
  52     static final int MAJOR_VERSION = Version.current().major();
  53 
  54     String userdir = System.getProperty("user.dir",".");
  55     File multirelease = new File(userdir, "multi-release.jar");
  56     File signedmultirelease = new File(userdir, "signed-multi-release.jar");
  57 
  58     @BeforeClass
  59     public void initialize() throws Exception {
  60         CreateMultiReleaseTestJars creator =  new CreateMultiReleaseTestJars();
  61         creator.compileEntries();
  62         creator.buildMultiReleaseJar();
  63         creator.buildSignedMultiReleaseJar();
  64     }
  65 
  66     @AfterClass
  67     public void close() throws IOException {
  68         Files.delete(multirelease.toPath());
  69         Files.delete(signedmultirelease.toPath());
  70     }
  71 
  72     @Test


   1 /*
   2  * Copyright (c) 2015, 2016, 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 /*
  25  * @test
  26  * @bug 8132734 8144062
  27  * @summary Test potential security related issues
  28  * @library /lib/testlibrary/java/util/jar
  29  * @build Compiler JarBuilder CreateMultiReleaseTestJars
  30  * @run testng MultiReleaseJarSecurity
  31  */
  32 
  33 import java.io.File;
  34 import java.io.IOException;
  35 import java.io.InputStream;
  36 import java.nio.file.Files;
  37 import java.security.CodeSigner;
  38 import java.security.cert.Certificate;
  39 import java.util.Arrays;
  40 import java.util.jar.JarEntry;
  41 import java.util.jar.JarFile;
  42 import java.util.zip.ZipFile;

  43 
  44 import org.testng.Assert;
  45 import org.testng.annotations.AfterClass;
  46 import org.testng.annotations.BeforeClass;
  47 import org.testng.annotations.Test;
  48 
  49 public class MultiReleaseJarSecurity {
  50 
  51     static final int MAJOR_VERSION = Runtime.version().major();
  52 
  53     String userdir = System.getProperty("user.dir",".");
  54     File multirelease = new File(userdir, "multi-release.jar");
  55     File signedmultirelease = new File(userdir, "signed-multi-release.jar");
  56 
  57     @BeforeClass
  58     public void initialize() throws Exception {
  59         CreateMultiReleaseTestJars creator =  new CreateMultiReleaseTestJars();
  60         creator.compileEntries();
  61         creator.buildMultiReleaseJar();
  62         creator.buildSignedMultiReleaseJar();
  63     }
  64 
  65     @AfterClass
  66     public void close() throws IOException {
  67         Files.delete(multirelease.toPath());
  68         Files.delete(signedmultirelease.toPath());
  69     }
  70 
  71     @Test


< prev index next >