1 /* 2 * Copyright (c) 2011, 2021, 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. 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 26 * @bug 7025809 8028543 6415644 8028544 8029942 8187951 8193291 8196551 8233096 8275308 27 * @summary Test latest, latestSupported, underscore as keyword, etc. 28 * @author Joseph D. Darcy 29 * @modules java.compiler 30 * jdk.compiler 31 */ 32 33 import java.util.*; 34 import java.util.function.Predicate; 35 import javax.lang.model.SourceVersion; 36 import static javax.lang.model.SourceVersion.*; 37 38 /** 39 * Verify behavior of latest[Supported] and other methods. 40 */ 41 public class TestSourceVersion { 42 public static void main(String... args) { 43 testLatestSupported(); 44 testVersionVaryingKeywords(); 45 testRestrictedKeywords(); 46 testVar(); 47 testYield(); 48 testValueOfRV(); 49 testRuntimeVersion(); 50 } 51 52 private static void testLatestSupported() { 53 SourceVersion[] values = SourceVersion.values(); 54 SourceVersion last = values[values.length - 1]; 55 SourceVersion latest = SourceVersion.latest(); 56 SourceVersion latestSupported = SourceVersion.latestSupported(); 57 58 if (latest == last && 59 latestSupported == SourceVersion.valueOf("RELEASE_" + 60 Runtime.version().feature()) && 61 (latest == latestSupported || 62 (latest.ordinal() - latestSupported.ordinal() == 1)) ) 63 return; 64 else { 65 throw new RuntimeException("Unexpected release value(s) found:\n" + 66 "latest:\t" + latest + "\n" + 67 "latestSupported:\t" + latestSupported); 68 } 69 } 70 71 private static void testVersionVaryingKeywords() { 72 Map<String, SourceVersion> keyWordStart = 73 Map.of("strictfp", RELEASE_2, 74 "assert", RELEASE_4, 75 "enum", RELEASE_5, 76 "_", RELEASE_9); 77 78 for (Map.Entry<String, SourceVersion> entry : keyWordStart.entrySet()) { 79 String key = entry.getKey(); 80 SourceVersion value = entry.getValue(); 81 82 check(true, key, (String s) -> isKeyword(s), "keyword", latest()); 83 check(false, key, (String s) -> isName(s), "name", latest()); 84 85 for(SourceVersion version : SourceVersion.values()) { 86 boolean isKeyword = version.compareTo(value) >= 0; 87 88 check(isKeyword, key, (String s) -> isKeyword(s, version), "keyword", version); 89 check(!isKeyword, key, (String s) -> isName(s, version), "name", version); 90 } 91 } 92 } 93 94 private static void testRestrictedKeywords() { 95 // Restricted keywords are not full keywords 96 97 /* 98 * JLS 3.9 99 * " A further ten character sequences are restricted 100 * keywords: open, module, requires, transitive, exports, 101 * opens, to, uses, provides, and with" 102 */ 103 Set<String> restrictedKeywords = 104 Set.of("open", "module", "requires", "transitive", "exports", 105 "opens", "to", "uses", "provides", "with", 106 // Assume "record" and "sealed" will be restricted keywords. 107 "record", "sealed"); 108 109 for (String key : restrictedKeywords) { 110 for (SourceVersion version : SourceVersion.values()) { 111 check(false, key, (String s) -> isKeyword(s, version), "keyword", version); 112 check(true, key, (String s) -> isName(s, version), "name", version); 113 } 114 } 115 } 116 117 private static void testVar() { 118 for (SourceVersion version : SourceVersion.values()) { 119 Predicate<String> isKeywordVersion = (String s) -> isKeyword(s, version); 120 Predicate<String> isNameVersion = (String s) -> isName(s, version); 121 122 for (String name : List.of("var", "foo.var", "var.foo")) { 123 check(false, name, isKeywordVersion, "keyword", version); 124 check(true, name, isNameVersion, "name", version); 125 } 126 } 127 } 128 129 private static void testYield() { 130 for (SourceVersion version : SourceVersion.values()) { 131 Predicate<String> isKeywordVersion = (String s) -> isKeyword(s, version); 132 Predicate<String> isNameVersion = (String s) -> isName(s, version); 133 134 for (String name : List.of("yield", "foo.yield", "yield.foo")) { 135 check(false, name, isKeywordVersion, "keyword", version); 136 check(true, name, isNameVersion, "name", version); 137 } 138 } 139 } 140 141 private static void check(boolean expected, 142 String input, 143 Predicate<String> predicate, 144 String message, 145 SourceVersion version) { 146 boolean result = predicate.test(input); 147 if (result != expected) { 148 throw new RuntimeException("Unexpected " + message + "-ness of " + input + 149 " on " + version); 150 } 151 } 152 153 /** 154 * Test that SourceVersion.valueOf() maps a Runtime.Version to a 155 * SourceVersion properly. The SourceVersion result is only a 156 * function of the feature() component of a Runtime.Version. 157 */ 158 private static void testValueOfRV() { 159 for (SourceVersion sv : SourceVersion.values()) { 160 if (sv == RELEASE_0) { 161 continue; 162 } else { 163 // Plain mapping; e.g. "17" -> RELEASE_17 164 String featureBase = Integer.toString(sv.ordinal()); 165 checkValueOfResult(sv, featureBase); 166 167 // More populated runtime version, N.N 168 checkValueOfResult(sv, featureBase + "." + featureBase); 169 } 170 } 171 172 // Out of range test 173 try { 174 int latestFeature = SourceVersion.latest().runtimeVersion().feature(); 175 SourceVersion.valueOf(Runtime.Version.parse(Integer.toString(latestFeature +1))); 176 throw new RuntimeException("Should not reach"); 177 } catch (IllegalArgumentException iae) { 178 ; // Expected 179 } 180 } 181 182 private static void checkValueOfResult(SourceVersion expected, String versionString) { 183 Runtime.Version rv = Runtime.Version.parse(versionString); 184 SourceVersion result = SourceVersion.valueOf(rv); 185 if (result != expected) { 186 throw new RuntimeException("Unexpected result " + result + 187 " of mapping Runtime.Version " + versionString + 188 " intead of " + expected); 189 } 190 } 191 192 private static void testRuntimeVersion() { 193 for (SourceVersion sv : SourceVersion.values()) { 194 Runtime.Version result = sv.runtimeVersion(); 195 if (sv.compareTo(RELEASE_6) < 0) { 196 if (result != null) { 197 throw new RuntimeException("Unexpected result non-null " + result + 198 " as runtime version of " + sv); 199 } 200 } else { 201 Runtime.Version expected = Runtime.Version.parse(Integer.toString(sv.ordinal())); 202 if (!result.equals(expected)) { 203 throw new RuntimeException("Unexpected result " + result + 204 " as runtime version of " + sv); 205 } 206 } 207 } 208 } 209 }