< prev index next >

test/runtime/modules/AccessCheckAllUnnamed.java

Print this page




  40 public class AccessCheckAllUnnamed {
  41 
  42     // Test a series of error conditions for API JVM_AddModuleExportsToAllUnnamed
  43     // and then test that a class in the unnamed module can access a package in a
  44     // named module that has been exported to all unnamed modules.
  45     public static void main(String args[]) throws Throwable {
  46         Object m1x, m2x;
  47 
  48         // Get the java.lang.reflect.Module object for module java.base.
  49         Class jlObject = Class.forName("java.lang.Object");
  50         Object jlObject_jlrM = jlObject.getModule();
  51         assertNotNull(jlObject_jlrM, "jlrModule object of java.lang.Object should not be null");
  52 
  53         // Get the class loader for AccessCheckWorks and assume it's also used to
  54         // load class p2.c2.
  55         ClassLoader this_cldr = AccessCheckAllUnnamed.class.getClassLoader();
  56 
  57         // Define a module for p3.
  58         m1x = ModuleHelper.ModuleObject("module_one", this_cldr, new String[] { "p3" });
  59         assertNotNull(m1x, "Module should not be null");
  60         ModuleHelper.DefineModule(m1x, "9.0", "m1x/there", new String[] { "p3" });
  61         ModuleHelper.AddReadsModule(m1x, jlObject_jlrM);
  62 
  63         // Define a module for p2.
  64         m2x = ModuleHelper.ModuleObject("module_two", this_cldr, new String[] { "p2" });
  65         assertNotNull(m2x, "Module should not be null");
  66         ModuleHelper.DefineModule(m2x, "9.0", "m2x/there", new String[] { "p2" });
  67         ModuleHelper.AddReadsModule(m2x, jlObject_jlrM);
  68 
  69         try {
  70             ModuleHelper.AddModuleExportsToAllUnnamed((Module)null, "p2");
  71             throw new RuntimeException("Failed to get the expected NPE for null module");
  72         } catch(NullPointerException e) {
  73             // Expected
  74         }
  75 
  76         try {
  77             ModuleHelper.AddModuleExportsToAllUnnamed(m2x, null);
  78             throw new RuntimeException("Failed to get the expected NPE for null package");
  79         } catch(NullPointerException e) {
  80             // Expected
  81         }
  82 
  83         try {
  84             ModuleHelper.AddModuleExportsToAllUnnamed(this_cldr, "p2");
  85             throw new RuntimeException("Failed to get the expected IAE for bad module");
  86         } catch(IllegalArgumentException e) {




  40 public class AccessCheckAllUnnamed {
  41 
  42     // Test a series of error conditions for API JVM_AddModuleExportsToAllUnnamed
  43     // and then test that a class in the unnamed module can access a package in a
  44     // named module that has been exported to all unnamed modules.
  45     public static void main(String args[]) throws Throwable {
  46         Object m1x, m2x;
  47 
  48         // Get the java.lang.reflect.Module object for module java.base.
  49         Class jlObject = Class.forName("java.lang.Object");
  50         Object jlObject_jlrM = jlObject.getModule();
  51         assertNotNull(jlObject_jlrM, "jlrModule object of java.lang.Object should not be null");
  52 
  53         // Get the class loader for AccessCheckWorks and assume it's also used to
  54         // load class p2.c2.
  55         ClassLoader this_cldr = AccessCheckAllUnnamed.class.getClassLoader();
  56 
  57         // Define a module for p3.
  58         m1x = ModuleHelper.ModuleObject("module_one", this_cldr, new String[] { "p3" });
  59         assertNotNull(m1x, "Module should not be null");
  60         ModuleHelper.DefineModule(m1x, false, "9.0", "m1x/there", new String[] { "p3" });
  61         ModuleHelper.AddReadsModule(m1x, jlObject_jlrM);
  62 
  63         // Define a module for p2.
  64         m2x = ModuleHelper.ModuleObject("module_two", this_cldr, new String[] { "p2" });
  65         assertNotNull(m2x, "Module should not be null");
  66         ModuleHelper.DefineModule(m2x, false, "9.0", "m2x/there", new String[] { "p2" });
  67         ModuleHelper.AddReadsModule(m2x, jlObject_jlrM);
  68 
  69         try {
  70             ModuleHelper.AddModuleExportsToAllUnnamed((Module)null, "p2");
  71             throw new RuntimeException("Failed to get the expected NPE for null module");
  72         } catch(NullPointerException e) {
  73             // Expected
  74         }
  75 
  76         try {
  77             ModuleHelper.AddModuleExportsToAllUnnamed(m2x, null);
  78             throw new RuntimeException("Failed to get the expected NPE for null package");
  79         } catch(NullPointerException e) {
  80             // Expected
  81         }
  82 
  83         try {
  84             ModuleHelper.AddModuleExportsToAllUnnamed(this_cldr, "p2");
  85             throw new RuntimeException("Failed to get the expected IAE for bad module");
  86         } catch(IllegalArgumentException e) {


< prev index next >