hotspot/test/runtime/modules/JVMAddModuleExportToAllUnnamed.java
changeset 43665 4bb003cad9b9
parent 40631 ed82623d7831
child 44520 0553e129e0ec
equal deleted inserted replaced
43606:a5aa7536131c 43665:4bb003cad9b9
     1 /*
     1 /*
     2  * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    37 import java.lang.reflect.Module;
    37 import java.lang.reflect.Module;
    38 import static jdk.test.lib.Asserts.*;
    38 import static jdk.test.lib.Asserts.*;
    39 
    39 
    40 public class JVMAddModuleExportToAllUnnamed {
    40 public class JVMAddModuleExportToAllUnnamed {
    41 
    41 
    42     // Check that a class in a package in module1 cannot access a class
    42     // Check that a class in a package in module_one cannot access a class
    43     // that is in the unnamed module if the accessing package is strict.
    43     // that is in the unnamed module if the accessing package is strict.
    44     public static void main(String args[]) throws Throwable {
    44     public static void main(String args[]) throws Throwable {
    45         Object m1;
    45         Object m1x;
    46 
    46 
    47         // Get the java.lang.reflect.Module object for module java.base.
    47         // Get the java.lang.reflect.Module object for module java.base.
    48         Class jlObject = Class.forName("java.lang.Object");
    48         Class jlObject = Class.forName("java.lang.Object");
    49         Object jlObject_jlrM = jlObject.getModule();
    49         Object jlObject_jlrM = jlObject.getModule();
    50         assertNotNull(jlObject_jlrM, "jlrModule object of java.lang.Object should not be null");
    50         assertNotNull(jlObject_jlrM, "jlrModule object of java.lang.Object should not be null");
    52         // Get the class loader for JVMAddModuleExportToAllUnnamed and assume it's also used to
    52         // Get the class loader for JVMAddModuleExportToAllUnnamed and assume it's also used to
    53         // load class p1.c1.
    53         // load class p1.c1.
    54         ClassLoader this_cldr = JVMAddModuleExportToAllUnnamed.class.getClassLoader();
    54         ClassLoader this_cldr = JVMAddModuleExportToAllUnnamed.class.getClassLoader();
    55 
    55 
    56         // Define a module for p1.
    56         // Define a module for p1.
    57         m1 = ModuleHelper.ModuleObject("module1", this_cldr, new String[] { "p1" });
    57         m1x = ModuleHelper.ModuleObject("module_one", this_cldr, new String[] { "p1" });
    58         assertNotNull(m1, "Module should not be null");
    58         assertNotNull(m1x, "Module should not be null");
    59         ModuleHelper.DefineModule(m1, "9.0", "m1/here", new String[] { "p1" });
    59         ModuleHelper.DefineModule(m1x, "9.0", "m1x/here", new String[] { "p1" });
    60         ModuleHelper.AddReadsModule(m1, jlObject_jlrM);
    60         ModuleHelper.AddReadsModule(m1x, jlObject_jlrM);
    61 
    61 
    62         // Make package p1 in m1 visible to everyone.
    62         // Make package p1 in m1x visible to everyone.
    63         ModuleHelper.AddModuleExportsToAll(m1, "p1");
    63         ModuleHelper.AddModuleExportsToAll(m1x, "p1");
    64 
    64 
    65         // p1.c1's ctor tries to call a method in p2.c2.  This should not work
    65         // p1.c1's ctor tries to call a method in p2.c2.  This should not work
    66         // because p2 is in the unnamed module and p1.c1 is strict.
    66         // because p2 is in the unnamed module and p1.c1 is strict.
    67         try {
    67         try {
    68             Class p1_c1_class = Class.forName("p1.c1");
    68             Class p1_c1_class = Class.forName("p1.c1");