< prev index next >

test/runtime/modules/AccessCheck/Umod_ExpQualOther.java

Print this page




  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /*
  27  * @test
  28  * @summary Test that if package p2 in module m2 is exported to module m3,
  29  *          then class p1.c1 in an unnamed module can not read p2.c2 in module m2.
  30  * @modules java.base/jdk.internal.misc
  31  * @library /testlibrary /test/lib
  32  * @compile myloaders/MySameClassLoader.java
  33  * @compile p2/c2.java
  34  * @compile p1/c1.java
  35  * @build Umod_ExpQualOther
  36  * @run main/othervm -Xbootclasspath/a:. Umod_ExpQualOther
  37  */
  38 
  39 import static jdk.test.lib.Asserts.*;
  40 
  41 import java.lang.reflect.Layer;
  42 import java.lang.module.Configuration;
  43 import java.lang.module.ModuleDescriptor;
  44 import java.lang.module.ModuleFinder;
  45 import java.util.HashMap;
  46 import java.util.Map;
  47 import java.util.Set;
  48 import myloaders.MySameClassLoader;
  49 
  50 //
  51 // ClassLoader1 --> defines m1 --> no packages
  52 //                  defines m2 --> packages p2
  53 //                  defines m3 --> packages p3
  54 //
  55 // m1 can read m2




  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /*
  27  * @test
  28  * @summary Test that if package p2 in module m2 is exported to module m3,
  29  *          then class p1.c1 in an unnamed module can not read p2.c2 in module m2.
  30  * @modules java.base/jdk.internal.misc
  31  * @library /test/lib
  32  * @compile myloaders/MySameClassLoader.java
  33  * @compile p2/c2.java
  34  * @compile p1/c1.java

  35  * @run main/othervm -Xbootclasspath/a:. Umod_ExpQualOther
  36  */
  37 
  38 import static jdk.test.lib.Asserts.*;
  39 
  40 import java.lang.reflect.Layer;
  41 import java.lang.module.Configuration;
  42 import java.lang.module.ModuleDescriptor;
  43 import java.lang.module.ModuleFinder;
  44 import java.util.HashMap;
  45 import java.util.Map;
  46 import java.util.Set;
  47 import myloaders.MySameClassLoader;
  48 
  49 //
  50 // ClassLoader1 --> defines m1 --> no packages
  51 //                  defines m2 --> packages p2
  52 //                  defines m3 --> packages p3
  53 //
  54 // m1 can read m2


< prev index next >