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