23
23
24
24
/**
25
25
* @test
26
- * @bug 8193125 8196623
26
+ * @bug 8193125 8196623 8335989
27
27
* @summary test modifiers with java.base
28
28
* @library /tools/lib
29
29
* @enablePreview
49
49
50
50
import com .sun .tools .javac .jvm .Target ;
51
51
import com .sun .tools .javac .platform .JDKPlatformProvider ;
52
+ import java .util .function .Supplier ;
52
53
53
54
import toolbox .JavacTask ;
54
55
import toolbox .Task ;
55
56
import toolbox .ToolBox ;
56
57
57
58
public class JavaBaseTest {
58
59
60
+ private static final String CURRENT_VERSION = System .getProperty ("java.specification.version" );
61
+
59
62
public static void main (String ... args ) throws Exception {
60
63
JavaBaseTest t = new JavaBaseTest ();
61
64
t .run ();
@@ -75,13 +78,11 @@ enum Mode { SOURCE, CLASS };
75
78
76
79
void run () throws Exception {
77
80
Set <String > targets = new LinkedHashSet <>();
78
- StreamSupport .stream (new JDKPlatformProvider ().getSupportedPlatformNames ()
79
- .spliterator (),
80
- false )
81
- .filter (p -> Integer .parseInt (p ) >= 9 )
82
- .forEach (targets ::add );
83
- //run without --release:
81
+ targets .add ("9" );
82
+ targets .add ("10" );
83
+ targets .add ("21" );
84
84
targets .add ("current" );
85
+ targets .add ("current-preview" );
85
86
for (List <String > mods : modifiers ) {
86
87
for (String target : targets ) {
87
88
for (Mode mode : Mode .values ()) {
@@ -119,15 +120,43 @@ void testSource(Path base, List<String> mods, String target) throws Exception {
119
120
tb .writeJavaFiles (src ,
120
121
"module m { requires " + String .join (" " , mods ) + " java.base; }" );
121
122
Path modules = Files .createDirectories (base .resolve ("modules" ));
122
- boolean expectOK = target . equals ( "9" ) ;
123
+ boolean expectOK ;
123
124
124
125
JavacTask jct = new JavacTask (tb )
125
126
.outdir (modules );
126
127
127
- if (target .equals ("current" ))
128
- jct .options ("-XDrawDiagnostics" );
129
- else
130
- jct .options ("-XDrawDiagnostics" , "--release" , target );
128
+ List <String > options = new ArrayList <>();
129
+
130
+ switch (target ) {
131
+ case "current" :
132
+ options .add ("--release" );
133
+ options .add (CURRENT_VERSION );
134
+ expectOK = false ;
135
+ break ;
136
+ case "current-preview" :
137
+ options .add ("--enable-preview" );
138
+ options .add ("--release" );
139
+ options .add (CURRENT_VERSION );
140
+ expectOK = true ;
141
+ break ;
142
+ case "9" :
143
+ options .add ("--release" );
144
+ options .add (target );
145
+ expectOK = true ;
146
+ break ;
147
+ default :
148
+ options .add ("--release" );
149
+ options .add (target );
150
+ expectOK = false ;
151
+ break ;
152
+ }
153
+
154
+ if (mods .contains ("static" ) && !"9" .equals (target )) {
155
+ expectOK = false ;
156
+ }
157
+
158
+ options .add ("-XDrawDiagnostics" );
159
+ jct .options (options );
131
160
132
161
String log = jct .files (tb .findJavaFiles (src ))
133
162
.run (expectOK ? Task .Expect .SUCCESS : Task .Expect .FAIL )
@@ -138,9 +167,9 @@ void testSource(Path base, List<String> mods, String target) throws Exception {
138
167
boolean foundErrorMessage = false ;
139
168
for (String mod : mods ) {
140
169
String key = mod .equals ("static" )
141
- ? "compiler.err.mod.not.allowed.here"
142
- : "compiler.err.modifier .not.allowed.here " ;
143
- String message = "module-info.java:1:12: " + key + ": " + mod ;
170
+ ? "compiler.err.mod.not.allowed.here: " + mod
171
+ : "compiler.err.feature .not.supported.in.source.plural: (compiler.misc.feature.java.base.transitive) " ;
172
+ String message = "module-info.java:1:12: " + key ;
144
173
if (log .contains (message )) {
145
174
foundErrorMessage = true ;
146
175
}
@@ -152,18 +181,57 @@ void testSource(Path base, List<String> mods, String target) throws Exception {
152
181
}
153
182
154
183
void testClass (Path base , List <String > mods , String target ) throws Exception {
155
- createClass (base , mods , target );
184
+ boolean expectOK ;
185
+ List <String > options = new ArrayList <>();
186
+
187
+ switch (target ) {
188
+ case "current" :
189
+ options .add ("--release" );
190
+ options .add (CURRENT_VERSION );
191
+ expectOK = false ;
192
+ break ;
193
+ case "current-preview" :
194
+ options .add ("--enable-preview" );
195
+ options .add ("--release" );
196
+ options .add (CURRENT_VERSION );
197
+ expectOK = true ;
198
+ break ;
199
+ case "9" :
200
+ options .add ("--release" );
201
+ options .add (target );
202
+ expectOK = true ;
203
+ break ;
204
+ default :
205
+ options .add ("--release" );
206
+ options .add (target );
207
+ expectOK = false ;
208
+ break ;
209
+ }
210
+
211
+ if (mods .contains ("static" ) && !"9" .equals (target )) {
212
+ expectOK = false ;
213
+ }
214
+
215
+ createClass (base , mods , options );
216
+
217
+ List <String > testOptions = new ArrayList <>();
218
+
219
+ testOptions .add ("-XDrawDiagnostics" );
220
+ testOptions .add ("--module-path" ); testOptions .add (base .resolve ("test-modules" ).toString ());
221
+
222
+ if (options .contains ("--enable-preview" )) {
223
+ testOptions .add ("--enable-preview" );
224
+ testOptions .add ("--source" ); testOptions .add (CURRENT_VERSION );
225
+ }
156
226
157
227
Path src = base .resolve ("src" );
158
228
tb .writeJavaFiles (src ,
159
229
"module mx { requires m; }" );
160
230
Path modules = Files .createDirectories (base .resolve ("modules" ));
161
231
162
- boolean expectOK = target .equals ("9" );
163
232
String log = new JavacTask (tb )
164
233
.outdir (modules )
165
- .options ("-XDrawDiagnostics" ,
166
- "--module-path" , base .resolve ("test-modules" ).toString ())
234
+ .options (testOptions )
167
235
.files (tb .findJavaFiles (src ))
168
236
.run (expectOK ? Task .Expect .SUCCESS : Task .Expect .FAIL )
169
237
.writeAll ()
@@ -188,7 +256,7 @@ void testClass(Path base, List<String> mods, String target) throws Exception {
188
256
}
189
257
}
190
258
191
- void createClass (Path base , List <String > mods , String target ) throws Exception {
259
+ void createClass (Path base , List <String > mods , List < String > options ) throws Exception {
192
260
Path src1 = base .resolve ("interim-src" );
193
261
tb .writeJavaFiles (src1 ,
194
262
"module m { requires java.base; }" );
@@ -197,9 +265,7 @@ void createClass(Path base, List<String> mods, String target) throws Exception {
197
265
JavacTask jct = new JavacTask (tb )
198
266
.outdir (modules1 );
199
267
200
- if (!target .equals ("current" )) {
201
- jct .options ("--release" , target );
202
- }
268
+ jct .options (options );
203
269
204
270
jct .files (tb .findJavaFiles (src1 ))
205
271
.run (Task .Expect .SUCCESS );
@@ -226,6 +292,8 @@ void createClass(Path base, List<String> mods, String target) throws Exception {
226
292
requires .set (i , e2 );
227
293
}
228
294
295
+ boolean preview = options .contains ("--enable-preview" );
296
+
229
297
ModuleAttribute modAttr2 = ModuleAttribute .of (
230
298
modAttr1 .moduleName (),
231
299
modAttr1 .moduleFlagsMask (),
@@ -237,8 +305,14 @@ void createClass(Path base, List<String> mods, String target) throws Exception {
237
305
modAttr1 .provides ());
238
306
Path modInfo = base .resolve ("test-modules" ).resolve ("module-info.class" );
239
307
Files .createDirectories (modInfo .getParent ());
240
- byte [] newBytes = ClassFile .of ().transformClass (cm1 , ClassTransform .dropping (ce -> ce instanceof ModuleAttribute ).
241
- andThen (ClassTransform .endHandler (classBuilder -> classBuilder .with (modAttr2 ))));
308
+ ClassTransform replace = (builder , element ) -> {
309
+ switch (element ) {
310
+ case ClassFileVersion cfv when preview -> builder .withVersion (cfv .majorVersion (), 0xFFFF );
311
+ case ModuleAttribute _ -> builder .with (modAttr2 );
312
+ default -> builder .with (element );
313
+ }
314
+ };
315
+ byte [] newBytes = ClassFile .of ().transformClass (cm1 , replace );
242
316
try (OutputStream out = Files .newOutputStream (modInfo )) {
243
317
out .write (newBytes );
244
318
}
1 commit comments
openjdk-notifier[bot] commentedon Nov 14, 2024
Review
Issues