author | ysuenaga |
Wed, 30 Mar 2016 21:05:13 +0900 | |
changeset 37218 | c7241bc368bf |
parent 30730 | d3ce7619db2c |
child 41637 | 7b24b4c32ee6 |
permissions | -rw-r--r-- |
15724 | 1 |
/* |
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
27579
diff
changeset
|
2 |
* Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved. |
15724 | 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. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
*/ |
|
23 |
||
24 |
/* |
|
25 |
* @test |
|
22151 | 26 |
* @bug 8004182 8028545 |
15724 | 27 |
* @summary Add support for profiles in javac |
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
27579
diff
changeset
|
28 |
* @modules java.desktop |
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
27579
diff
changeset
|
29 |
* java.sql.rowset |
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
27579
diff
changeset
|
30 |
* jdk.compiler/com.sun.tools.javac.api |
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
27579
diff
changeset
|
31 |
* jdk.compiler/com.sun.tools.javac.jvm |
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
27579
diff
changeset
|
32 |
* jdk.security.auth |
15724 | 33 |
*/ |
34 |
||
35 |
import java.io.PrintWriter; |
|
36 |
import java.io.StringWriter; |
|
37 |
import java.lang.annotation.Annotation; |
|
38 |
import java.lang.annotation.Retention; |
|
39 |
import java.lang.annotation.RetentionPolicy; |
|
40 |
import java.lang.reflect.InvocationTargetException; |
|
41 |
import java.lang.reflect.Method; |
|
42 |
import java.net.URI; |
|
43 |
import java.util.ArrayList; |
|
44 |
import java.util.Arrays; |
|
45 |
import java.util.Collections; |
|
46 |
import java.util.EnumMap; |
|
47 |
import java.util.List; |
|
48 |
import java.util.Map; |
|
49 |
||
50 |
import javax.tools.Diagnostic; |
|
51 |
import javax.tools.DiagnosticCollector; |
|
52 |
import javax.tools.JavaCompiler; |
|
53 |
import javax.tools.JavaFileObject; |
|
54 |
import javax.tools.SimpleJavaFileObject; |
|
55 |
import javax.tools.StandardJavaFileManager; |
|
56 |
||
57 |
import com.sun.source.util.JavacTask; |
|
58 |
import com.sun.tools.javac.api.JavacTool; |
|
59 |
import com.sun.tools.javac.jvm.Profile; |
|
60 |
import com.sun.tools.javac.jvm.Target; |
|
61 |
||
62 |
||
63 |
public class ProfileOptionTest { |
|
64 |
public static void main(String... args) throws Exception { |
|
65 |
new ProfileOptionTest().run(); |
|
66 |
} |
|
67 |
||
68 |
private final JavaCompiler javac = JavacTool.create(); |
|
69 |
private final StandardJavaFileManager fm = javac.getStandardFileManager(null, null, null); |
|
70 |
||
71 |
||
72 |
// ---------- Test cases, invoked reflectively via run. ---------- |
|
73 |
||
74 |
@Test |
|
26264
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
75 |
void testInvalidProfile_API() throws Exception { |
15724 | 76 |
JavaFileObject fo = new StringJavaFileObject("Test.java", "class Test { }"); |
77 |
String badName = "foo"; |
|
78 |
List<String> opts = Arrays.asList("-profile", badName); |
|
79 |
StringWriter sw = new StringWriter(); |
|
80 |
try { |
|
81 |
JavacTask task = (JavacTask) javac.getTask(sw, fm, null, opts, null, |
|
82 |
Arrays.asList(fo)); |
|
83 |
throw new Exception("expected exception not thrown"); |
|
84 |
} catch (IllegalArgumentException e) { |
|
85 |
// expected |
|
86 |
} |
|
87 |
} |
|
88 |
||
89 |
@Test |
|
26264
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
90 |
void testInvalidProfile_CommandLine() throws Exception { |
15724 | 91 |
String badName = "foo"; |
92 |
String[] opts = { "-profile", badName }; |
|
93 |
StringWriter sw = new StringWriter(); |
|
94 |
PrintWriter pw = new PrintWriter(sw); |
|
95 |
int rc = com.sun.tools.javac.Main.compile(opts, pw); |
|
96 |
||
97 |
// sadly, command line errors are not (yet?) reported to |
|
98 |
// the diag listener |
|
99 |
String out = sw.toString(); |
|
100 |
if (!out.isEmpty()) |
|
101 |
System.err.println(out.trim()); |
|
102 |
||
103 |
if (!out.contains("invalid profile: " + badName)) { |
|
104 |
error("expected message not found"); |
|
105 |
} |
|
106 |
} |
|
107 |
||
108 |
@Test |
|
109 |
void testTargetProfileCombinations() throws Exception { |
|
110 |
JavaFileObject fo = new StringJavaFileObject("Test.java", "class Test { }"); |
|
111 |
for (Target t: Target.values()) { |
|
112 |
switch (t) { |
|
27579 | 113 |
case JDK1_1: |
114 |
case JDK1_2: |
|
115 |
case JDK1_3: |
|
116 |
case JDK1_4: |
|
117 |
case JDK1_5: // not supported |
|
15724 | 118 |
continue; |
119 |
} |
|
120 |
||
121 |
for (Profile p: Profile.values()) { |
|
22151 | 122 |
List<String> opts = new ArrayList<>(); |
15724 | 123 |
opts.addAll(Arrays.asList("-source", t.name, "-target", t.name)); |
27579 | 124 |
opts.add("-Xlint:-options"); // don't warn about no -bootclasspath |
15724 | 125 |
if (p != Profile.DEFAULT) |
126 |
opts.addAll(Arrays.asList("-profile", p.name)); |
|
26264
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
127 |
|
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
128 |
IllegalStateException ise; |
15724 | 129 |
StringWriter sw = new StringWriter(); |
26264
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
130 |
try { |
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
131 |
JavacTask task = (JavacTask) javac.getTask(sw, fm, null, opts, null, |
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
132 |
Arrays.asList(fo)); |
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
133 |
task.analyze(); |
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
134 |
ise = null; |
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
135 |
} catch (IllegalStateException e) { |
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
136 |
ise = e; |
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
137 |
} |
15724 | 138 |
|
139 |
// sadly, command line errors are not (yet?) reported to |
|
140 |
// the diag listener |
|
141 |
String out = sw.toString(); |
|
142 |
if (!out.isEmpty()) |
|
143 |
System.err.println(out.trim()); |
|
144 |
||
145 |
switch (t) { |
|
146 |
case JDK1_8: |
|
22151 | 147 |
case JDK1_9: |
26264
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
148 |
if (ise != null) |
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
149 |
error("unexpected exception from compiler: " + ise); |
15724 | 150 |
break; |
151 |
default: |
|
26264
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
152 |
if (p == Profile.DEFAULT) |
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
153 |
break; |
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
154 |
if (ise == null) |
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
155 |
error("IllegalStateException not thrown as expected"); |
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
156 |
else if (!ise.getMessage().contains("profile " + p.name |
15724 | 157 |
+ " is not valid for target release " + t.name)) { |
26264
a09fedde76be
8044859: javac duplicates option processing when using Compiler API
jjg
parents:
23104
diff
changeset
|
158 |
error("exception not thrown as expected: " + ise); |
15724 | 159 |
} |
160 |
} |
|
161 |
} |
|
162 |
} |
|
163 |
} |
|
164 |
||
165 |
@Test |
|
166 |
void testClassesInProfiles() throws Exception { |
|
167 |
for (Profile p: Profile.values()) { |
|
168 |
for (Map.Entry<Profile, List<JavaFileObject>> e: testClasses.entrySet()) { |
|
169 |
for (JavaFileObject fo: e.getValue()) { |
|
170 |
DiagnosticCollector<JavaFileObject> dl = |
|
171 |
new DiagnosticCollector<JavaFileObject>(); |
|
172 |
List<String> opts = (p == Profile.DEFAULT) |
|
173 |
? Collections.<String>emptyList() |
|
174 |
: Arrays.asList("-profile", p.name); |
|
175 |
JavacTask task = (JavacTask) javac.getTask(null, fm, dl, opts, null, |
|
176 |
Arrays.asList(fo)); |
|
177 |
task.analyze(); |
|
178 |
||
179 |
List<String> expectDiagCodes = (p.value >= e.getKey().value) |
|
180 |
? Collections.<String>emptyList() |
|
181 |
: Arrays.asList("compiler.err.not.in.profile"); |
|
182 |
||
183 |
checkDiags(opts + " " + fo.getName(), dl.getDiagnostics(), expectDiagCodes); |
|
184 |
} |
|
185 |
} |
|
186 |
} |
|
187 |
} |
|
188 |
||
189 |
Map<Profile, List<JavaFileObject>> testClasses = |
|
190 |
new EnumMap<Profile, List<JavaFileObject>>(Profile.class); |
|
191 |
||
192 |
void initTestClasses() { |
|
193 |
// The following table assumes the existence of specific classes |
|
194 |
// in specific profiles, as defined in the Java SE 8 spec. |
|
195 |
init(Profile.COMPACT1, |
|
196 |
java.lang.String.class); |
|
197 |
||
198 |
init(Profile.COMPACT2, |
|
199 |
javax.xml.XMLConstants.class); |
|
200 |
||
201 |
init(Profile.COMPACT3, |
|
17554
eca763ef7c5e
8014318: tools/javac/profiles/ProfileOptionTest.java needs modifying now that javax.script is in compact1
alanb
parents:
16558
diff
changeset
|
202 |
javax.sql.rowset.Predicate.class, |
15724 | 203 |
com.sun.security.auth.PolicyFile.class); // specifically included in 3 |
204 |
||
205 |
init(Profile.DEFAULT, |
|
23104
f2504b690dc5
8033366: Add configure option to allow RMIConnector IIOP transport be selected compiled in or not
alanb
parents:
22151
diff
changeset
|
206 |
java.beans.BeanInfo.class); |
15724 | 207 |
} |
208 |
||
209 |
void init(Profile p, Class<?>... classes) { |
|
210 |
List<JavaFileObject> srcs = new ArrayList<JavaFileObject>(); |
|
211 |
for (Class<?> c: classes) { |
|
212 |
String name = "T" + c.getSimpleName(); |
|
213 |
String src = |
|
214 |
"class T" + name + "{" + "\n" + |
|
215 |
" Class<?> c = " + c.getName() + ".class;\n" + |
|
216 |
"}"; |
|
217 |
srcs.add(new StringJavaFileObject(name + ".java", src)); |
|
218 |
} |
|
219 |
testClasses.put(p, srcs); |
|
220 |
} |
|
221 |
||
222 |
void checkDiags(String msg, List<Diagnostic<? extends JavaFileObject>> diags, List<String> expectDiagCodes) { |
|
223 |
System.err.print(msg); |
|
224 |
if (diags.isEmpty()) |
|
225 |
System.err.println(" OK"); |
|
226 |
else { |
|
227 |
System.err.println(); |
|
228 |
System.err.println(diags); |
|
229 |
} |
|
230 |
||
231 |
List<String> foundDiagCodes = new ArrayList<String>(); |
|
232 |
for (Diagnostic<? extends JavaFileObject> d: diags) |
|
233 |
foundDiagCodes.add(d.getCode()); |
|
234 |
||
235 |
if (!foundDiagCodes.equals(expectDiagCodes)) { |
|
236 |
System.err.println("Found diag codes: " + foundDiagCodes); |
|
237 |
System.err.println("Expected diag codes: " + expectDiagCodes); |
|
238 |
error("expected diagnostics not found"); |
|
239 |
} |
|
240 |
} |
|
241 |
||
242 |
/** Marker annotation for test cases. */ |
|
243 |
@Retention(RetentionPolicy.RUNTIME) |
|
244 |
@interface Test { } |
|
245 |
||
246 |
/** Run all test cases. */ |
|
247 |
void run() throws Exception { |
|
27319
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
248 |
try { |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
249 |
initTestClasses(); |
15724 | 250 |
|
27319
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
251 |
for (Method m: getClass().getDeclaredMethods()) { |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
252 |
Annotation a = m.getAnnotation(Test.class); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
253 |
if (a != null) { |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
254 |
System.err.println(m.getName()); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
255 |
try { |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
256 |
m.invoke(this, new Object[] { }); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
257 |
} catch (InvocationTargetException e) { |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
258 |
Throwable cause = e.getCause(); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
259 |
throw (cause instanceof Exception) ? ((Exception) cause) : e; |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
260 |
} |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
261 |
System.err.println(); |
15724 | 262 |
} |
263 |
} |
|
27319
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
264 |
|
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
265 |
if (errors > 0) |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
266 |
throw new Exception(errors + " errors occurred"); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
267 |
} finally { |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
26264
diff
changeset
|
268 |
fm.close(); |
15724 | 269 |
} |
270 |
} |
|
271 |
||
272 |
void error(String msg) { |
|
273 |
System.err.println("Error: " + msg); |
|
274 |
errors++; |
|
275 |
} |
|
276 |
||
277 |
int errors; |
|
278 |
||
279 |
private static class StringJavaFileObject extends SimpleJavaFileObject { |
|
280 |
StringJavaFileObject(String name, String text) { |
|
281 |
super(URI.create(name), JavaFileObject.Kind.SOURCE); |
|
282 |
this.text = text; |
|
283 |
} |
|
284 |
@Override |
|
285 |
public CharSequence getCharContent(boolean b) { |
|
286 |
return text; |
|
287 |
} |
|
288 |
private String text; |
|
289 |
} |
|
290 |
} |