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  * @summary Make sure --patch-module works with multiple directories.
  27  * @modules java.base/jdk.internal.misc
  28  * @library /testlibrary
  29  * @compile PatchModule2DirsMain.java
  30  * @run main PatchModule2Dirs
  31  */
  32 
  33 import jdk.test.lib.*;
  34 import java.io.File;
  35 
  36 public class PatchModule2Dirs {
  37 
  38     public static void main(String[] args) throws Exception {
  39         String source1 = "package javax.naming.spi; "               +
  40                         "public class NamingManager { "             +
  41                         "    static { "                             +
  42                         "        System.out.println(\"I pass one!\"); " +
  43                         "    } "                                    +
  44                         "}";
  45         String source2 = "package java.beans; "                     +
  46                         "public class Encoder { "                   +
  47                         "    static { "                             +
  48                         "        System.out.println(\"I pass two!\"); " +
  49                         "    } "                                    +
  50                         "}";
  51 
  52         ClassFileInstaller.writeClassToDisk("javax/naming/spi/NamingManager",
  53              InMemoryJavaCompiler.compile("javax.naming.spi.NamingManager", source1, "-Xmodule:java.naming"),
  54              "mods/java.naming");
  55 
  56         ClassFileInstaller.writeClassToDisk("java/beans/Encoder",
  57              InMemoryJavaCompiler.compile("java.beans.Encoder", source2, "-Xmodule:java.desktop"),
  58              "mods2/java.desktop");
  59 
  60         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  61              "--patch-module=java.naming=mods/java.naming",
  62              "--patch-module=java.desktop=mods2/java.desktop",
  63              "PatchModule2DirsMain", "javax.naming.spi.NamingManager", "java.beans.Encoder");
  64 
  65         OutputAnalyzer oa = new OutputAnalyzer(pb.start());
  66         oa.shouldContain("I pass one!");
  67         oa.shouldContain("I pass two!");
  68         oa.shouldHaveExitValue(0);
  69     }
  70 }