author | alanb |
Sat, 21 May 2016 08:00:33 +0100 | |
changeset 38306 | db8cc86cbae9 |
parent 38207 | 2ed792c9481d |
child 40631 | ed82623d7831 |
permissions | -rw-r--r-- |
36508 | 1 |
/* |
2 |
* Copyright (c) 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. Oracle designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
|
10 |
* |
|
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 class p1.c1 defined in m1 tries to access p2.c2 defined in unnamed module. |
|
29 |
* @library /testlibrary /test/lib |
|
38152
80e5da81fb2c
8154258: [TESTBUG] Various serviceability tests fail compilation
dsamersoff
parents:
36508
diff
changeset
|
30 |
* @modules java.base/jdk.internal.misc |
36508 | 31 |
* @modules java.base/jdk.internal.module |
32 |
* @compile myloaders/MyDiffClassLoader.java |
|
33 |
* @compile p2/c2.java |
|
34 |
* @compile p1/c1.java |
|
35 |
* @compile p1/c1ReadEdgeDiffLoader.java |
|
36 |
* @compile p1/c1Loose.java |
|
37 |
* @build DiffCL_Umod |
|
38 |
* @run main/othervm -Xbootclasspath/a:. DiffCL_Umod |
|
39 |
*/ |
|
40 |
||
41 |
import static jdk.test.lib.Asserts.*; |
|
42 |
||
43 |
import java.lang.module.Configuration; |
|
44 |
import java.lang.module.ModuleDescriptor; |
|
45 |
import java.lang.module.ModuleFinder; |
|
46 |
import java.lang.reflect.Layer; |
|
47 |
import java.lang.reflect.Module; |
|
48 |
import java.util.HashMap; |
|
49 |
import java.util.Map; |
|
50 |
import java.util.Set; |
|
51 |
import myloaders.MyDiffClassLoader; |
|
52 |
||
53 |
// |
|
54 |
// ClassLoader1 --> defines m1 --> packages p1 |
|
55 |
// package p1 in m1 is exported unqualifiedly |
|
56 |
// |
|
57 |
// class p1.c1 defined in m1 tries to access p2.c2 defined in |
|
58 |
// in unnamed module. |
|
59 |
// |
|
60 |
// Three access attempts occur in this test: |
|
61 |
// 1. The first access is not allowed because a strict module |
|
62 |
// cannot read an unnamed module. |
|
63 |
// 2. In this scenario a strict module establishes readability |
|
64 |
// to the particular unnamed module it is trying to access. |
|
65 |
// Access is allowed. |
|
66 |
// 3. Module m1 in the test_looseModuleLayer() method |
|
67 |
// is transitioned to a loose module, access |
|
68 |
// to all unnamed modules is allowed. |
|
69 |
// |
|
70 |
public class DiffCL_Umod { |
|
71 |
||
72 |
// Create Layers over the boot layer to test different |
|
73 |
// accessing scenarios of a named module to an unnamed module. |
|
74 |
||
75 |
// Module m1 is a strict module and has not established |
|
76 |
// readability to an unnamed module that p2.c2 is defined in. |
|
77 |
public void test_strictModuleLayer() throws Throwable { |
|
78 |
||
79 |
// Define module: m1 |
|
80 |
// Can read: java.base |
|
81 |
// Packages: p1 |
|
82 |
// Packages exported: p1 is exported unqualifiedly |
|
83 |
ModuleDescriptor descriptor_m1 = |
|
84 |
new ModuleDescriptor.Builder("m1") |
|
85 |
.requires("java.base") |
|
86 |
.exports("p1") |
|
87 |
.build(); |
|
88 |
||
89 |
// Set up a ModuleFinder containing all modules for this layer. |
|
90 |
ModuleFinder finder = ModuleLibrary.of(descriptor_m1); |
|
91 |
||
92 |
// Resolves "m1" |
|
93 |
Configuration cf = Layer.boot() |
|
94 |
.configuration() |
|
38306
db8cc86cbae9
8152650: ModuleFinder.compose should accept varargs
alanb
parents:
38207
diff
changeset
|
95 |
.resolveRequires(finder, ModuleFinder.of(), Set.of("m1")); |
36508 | 96 |
|
97 |
MyDiffClassLoader.loader1 = new MyDiffClassLoader(); |
|
98 |
MyDiffClassLoader.loader2 = new MyDiffClassLoader(); |
|
99 |
||
100 |
// map module m1 to class loader. |
|
101 |
// class c2 will be loaded in an unnamed module/loader2 |
|
102 |
// to achieve differing class loaders. |
|
103 |
Map<String, ClassLoader> map = new HashMap<>(); |
|
104 |
map.put("m1", MyDiffClassLoader.loader1); |
|
105 |
||
106 |
// Create Layer that contains m1 |
|
107 |
Layer layer = Layer.boot().defineModules(cf, map::get); |
|
108 |
||
109 |
assertTrue(layer.findLoader("m1") == MyDiffClassLoader.loader1); |
|
110 |
assertTrue(layer.findLoader("java.base") == null); |
|
111 |
||
112 |
// now use the same loader to load class p1.c1 |
|
113 |
Class p1_c1_class = MyDiffClassLoader.loader1.loadClass("p1.c1"); |
|
114 |
||
115 |
// Attempt access |
|
116 |
try { |
|
117 |
p1_c1_class.newInstance(); |
|
118 |
throw new RuntimeException("Test Failed, strict module m1 should not be able " + |
|
119 |
"to access public type p2.c2 defined in unnamed module"); |
|
120 |
} catch (IllegalAccessError e) { |
|
121 |
} |
|
122 |
} |
|
123 |
||
124 |
// Module m1 is a strict module and has established |
|
125 |
// readability to an unnamed module that p2.c2 is defined in. |
|
126 |
public void test_strictModuleUnnamedReadableLayer() throws Throwable { |
|
127 |
||
128 |
// Define module: m1 |
|
129 |
// Can read: java.base |
|
130 |
// Packages: p1 |
|
131 |
// Packages exported: p1 is exported unqualifiedly |
|
132 |
ModuleDescriptor descriptor_m1 = |
|
133 |
new ModuleDescriptor.Builder("m1") |
|
134 |
.requires("java.base") |
|
135 |
.exports("p1") |
|
136 |
.build(); |
|
137 |
||
138 |
// Set up a ModuleFinder containing all modules for this layer. |
|
139 |
ModuleFinder finder = ModuleLibrary.of(descriptor_m1); |
|
140 |
||
141 |
// Resolves "m1" |
|
142 |
Configuration cf = Layer.boot() |
|
143 |
.configuration() |
|
38306
db8cc86cbae9
8152650: ModuleFinder.compose should accept varargs
alanb
parents:
38207
diff
changeset
|
144 |
.resolveRequires(finder, ModuleFinder.of(), Set.of("m1")); |
36508 | 145 |
|
146 |
MyDiffClassLoader.loader1 = new MyDiffClassLoader(); |
|
147 |
MyDiffClassLoader.loader2 = new MyDiffClassLoader(); |
|
148 |
||
149 |
// map module m1 to class loader. |
|
150 |
// class c2 will be loaded in an unnamed module/loader2 |
|
151 |
// to achieve differing class loaders. |
|
152 |
Map<String, ClassLoader> map = new HashMap<>(); |
|
153 |
map.put("m1", MyDiffClassLoader.loader1); |
|
154 |
||
155 |
// Create Layer that contains m1 |
|
156 |
Layer layer = Layer.boot().defineModules(cf, map::get); |
|
157 |
||
158 |
assertTrue(layer.findLoader("m1") == MyDiffClassLoader.loader1); |
|
159 |
assertTrue(layer.findLoader("java.base") == null); |
|
160 |
||
161 |
// now use the same loader to load class p1.c1ReadEdgeDiffLoader |
|
162 |
Class p1_c1_class = MyDiffClassLoader.loader1.loadClass("p1.c1ReadEdgeDiffLoader"); |
|
163 |
||
164 |
try { |
|
165 |
// Read edge between m1 and the unnamed module that loads p2.c2 is established in |
|
166 |
// c1ReadEdgeDiffLoader's ctor before attempting access. |
|
167 |
p1_c1_class.newInstance(); |
|
168 |
} catch (IllegalAccessError e) { |
|
169 |
throw new RuntimeException("Test Failed, module m1 has established readability to p2/c2 loader's " + |
|
170 |
"unnamed module, access should be allowed: " + e.getMessage()); |
|
171 |
} |
|
172 |
} |
|
173 |
||
174 |
// Module m1 is a loose module and thus can read all unnamed modules. |
|
175 |
public void test_looseModuleLayer() throws Throwable { |
|
176 |
||
177 |
// Define module: m1 |
|
178 |
// Can read: java.base |
|
179 |
// Packages: p1 |
|
180 |
// Packages exported: p1 is exported unqualifiedly |
|
181 |
ModuleDescriptor descriptor_m1 = |
|
182 |
new ModuleDescriptor.Builder("m1") |
|
183 |
.requires("java.base") |
|
184 |
.exports("p1") |
|
185 |
.build(); |
|
186 |
||
187 |
// Set up a ModuleFinder containing all modules for this layer. |
|
188 |
ModuleFinder finder = ModuleLibrary.of(descriptor_m1); |
|
189 |
||
190 |
// Resolves "m1" |
|
191 |
Configuration cf = Layer.boot() |
|
192 |
.configuration() |
|
38306
db8cc86cbae9
8152650: ModuleFinder.compose should accept varargs
alanb
parents:
38207
diff
changeset
|
193 |
.resolveRequires(finder, ModuleFinder.of(), Set.of("m1")); |
36508 | 194 |
|
195 |
MyDiffClassLoader.loader1 = new MyDiffClassLoader(); |
|
196 |
MyDiffClassLoader.loader2 = new MyDiffClassLoader(); |
|
197 |
||
198 |
// map module m1 to class loader. |
|
199 |
// class c2 will be loaded in an unnamed module/loader2 |
|
200 |
// to achieve differing class loaders. |
|
201 |
Map<String, ClassLoader> map = new HashMap<>(); |
|
202 |
map.put("m1", MyDiffClassLoader.loader1); |
|
203 |
||
204 |
// Create Layer that contains m1 |
|
205 |
Layer layer = Layer.boot().defineModules(cf, map::get); |
|
206 |
||
207 |
assertTrue(layer.findLoader("m1") == MyDiffClassLoader.loader1); |
|
208 |
assertTrue(layer.findLoader("java.base") == null); |
|
209 |
||
210 |
// now use the same loader to load class p1.c1Loose |
|
211 |
Class p1_c1_class = MyDiffClassLoader.loader1.loadClass("p1.c1Loose"); |
|
212 |
||
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
36508
diff
changeset
|
213 |
// change m1 to read all unnamed modules |
36508 | 214 |
Module m1 = layer.findModule("m1").get(); |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
36508
diff
changeset
|
215 |
jdk.internal.module.Modules.addReadsAllUnnamed(m1); |
36508 | 216 |
|
217 |
try { |
|
218 |
p1_c1_class.newInstance(); |
|
219 |
} catch (IllegalAccessError e) { |
|
220 |
throw new RuntimeException("Test Failed, loose module m1 should be able to access " + |
|
221 |
"public type p2.c2 defined in unnamed module: " + e.getMessage()); |
|
222 |
} |
|
223 |
} |
|
224 |
||
225 |
public static void main(String args[]) throws Throwable { |
|
226 |
DiffCL_Umod test = new DiffCL_Umod(); |
|
227 |
test.test_strictModuleLayer(); // access denied |
|
228 |
test.test_strictModuleUnnamedReadableLayer(); // access allowed |
|
229 |
test.test_looseModuleLayer(); // access allowed |
|
230 |
} |
|
231 |
} |