1 /*
   2  * Copyright (c) 2013, 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 8012447
  27  * @library /testlibrary /../../test/lib /testlibrary/ctw/src
  28  * @modules java.base/sun.misc
  29  *          java.base/sun.reflect
  30  *          java.compiler
  31  *          java.management
  32  *          jdk.jvmstat/sun.jvmstat.monitor
  33  * @build ClassFileInstaller jdk.test.lib.* sun.hotspot.tools.ctw.CompileTheWorld sun.hotspot.WhiteBox Foo Bar
  34  * @run main ClassFileInstaller sun.hotspot.WhiteBox Foo Bar
  35  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  36  * @run main JarDirTest prepare
  37  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Dsun.hotspot.tools.ctw.logfile=ctw.log sun.hotspot.tools.ctw.CompileTheWorld jars/*
  38  * @run main JarDirTest check ctw.log
  39  * @summary testing of CompileTheWorld :: jars in directory
  40  * @author igor.ignatyev@oracle.com
  41  */
  42 
  43 import java.io.File;
  44 import java.nio.file.Files;
  45 import java.nio.file.Paths;
  46 
  47 import jdk.test.lib.OutputAnalyzer;
  48 
  49 public class JarDirTest extends CtwTest {
  50     private static final String[] SHOULD_CONTAIN
  51             = {"# jar_in_dir: jars",
  52                     "# jar: jars" + File.separator +"foo.jar",
  53                     "# jar: jars" + File.separator +"bar.jar",
  54                     "Done (4 classes, 12 methods, "};
  55 
  56     private JarDirTest() {
  57         super(SHOULD_CONTAIN);
  58     }
  59 
  60     public static void main(String[] args) throws Exception {
  61         new JarDirTest().run(args);
  62     }
  63 
  64     protected void prepare() throws Exception {
  65         String path = "jars";
  66         Files.createDirectory(Paths.get(path));
  67 
  68         ProcessBuilder pb = createJarProcessBuilder("cf", "jars/foo.jar",
  69                 "Foo.class", "Bar.class");
  70         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  71         dump(output, "ctw-foo.jar");
  72         output.shouldHaveExitValue(0);
  73 
  74         pb = createJarProcessBuilder("cf", "jars/bar.jar", "Foo.class",
  75                 "Bar.class");
  76         output = new OutputAnalyzer(pb.start());
  77         dump(output, "ctw-bar.jar");
  78         output.shouldHaveExitValue(0);
  79     }
  80 
  81 }