1 /*
   2  * Copyright (c) 2017, 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 4244970
  27  * @summary Test to see if sealing violation is detected correctly
  28  * @library /test/lib
  29  * @build jdk.test.lib.JDKToolFinder
  30  *        jdk.test.lib.process.OutputAnalyzer
  31  * @run main CheckSealedTest
  32  */
  33 
  34 import jdk.test.lib.JDKToolFinder;
  35 import jdk.test.lib.process.ProcessTools;
  36 
  37 import java.io.File;
  38 import java.io.IOException;
  39 import java.nio.file.Files;
  40 import java.nio.file.Path;
  41 import java.nio.file.Paths;
  42 import java.util.List;
  43 
  44 import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
  45 
  46 public class CheckSealedTest {
  47     private static final String ARCHIVE_NAME = "b.jar";
  48     private static final String TEST_NAME = "CheckSealed";
  49     public static void main(String[] args)
  50             throws Throwable {
  51 
  52         String baseDir = System.getProperty("user.dir") + File.separator;
  53         String javac = JDKToolFinder.getTestJDKTool("javac");
  54         String java = JDKToolFinder.getTestJDKTool("java");
  55 
  56         setup(baseDir);
  57         String srcDir = System.getProperty("test.src");
  58         String cp = srcDir + File.separator + "a" + File.pathSeparator
  59                 + srcDir + File.separator + "b.jar" + File.pathSeparator
  60                 + ".";
  61         List<String[]> allCMDs = List.of(
  62                 // Compile command
  63                 new String[]{
  64                         javac, "-cp", cp, "-d", ".",
  65                         srcDir + File.separator + TEST_NAME + ".java"
  66                 },
  67                 // Run test the first time
  68                 new String[]{
  69                         java, "-cp", cp, TEST_NAME, "1"
  70                 },
  71                 // Run test the second time
  72                 new String[]{
  73                         java, "-cp", cp, TEST_NAME, "2"
  74                 }
  75         );
  76 
  77         for (String[] cmd : allCMDs) {
  78             ProcessTools.executeCommand(cmd)
  79                         .outputTo(System.out)
  80                         .errorTo(System.out)
  81                         .shouldHaveExitValue(0);
  82         }
  83     }
  84 
  85     private static void setup(String baseDir) throws IOException {
  86         Path testJar = Paths.get(System.getProperty("test.src"), ARCHIVE_NAME);
  87         Files.copy(testJar, Paths.get(baseDir, ARCHIVE_NAME), REPLACE_EXISTING);
  88     }
  89 }