|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
|
23 | 23 |
|
24 | 24 | /**
|
25 | 25 | * @test
|
26 |
| - * @bug 8291769 |
| 26 | + * @bug 8291769 8300195 |
27 | 27 | * @summary Verify the compiled code does not have unwanted constructs.
|
| 28 | + * @enablePreview |
28 | 29 | * @library /tools/lib
|
29 | 30 | * @modules jdk.compiler/com.sun.tools.javac.api
|
30 | 31 | * jdk.compiler/com.sun.tools.javac.main
|
|
34 | 35 | * @run main PatternDesugaring
|
35 | 36 | */
|
36 | 37 |
|
| 38 | +import java.io.ByteArrayOutputStream; |
37 | 39 | import java.io.IOException;
|
| 40 | +import java.io.PrintStream; |
| 41 | +import java.lang.reflect.Method; |
| 42 | +import java.net.URL; |
| 43 | +import java.net.URLClassLoader; |
| 44 | +import java.nio.charset.StandardCharsets; |
38 | 45 | import java.nio.file.Files;
|
39 | 46 | import java.nio.file.Path;
|
40 | 47 | import java.nio.file.Paths;
|
41 |
| -import java.util.List; |
| 48 | +import java.util.Objects; |
42 | 49 | import java.util.function.Consumer;
|
43 | 50 |
|
44 | 51 | import toolbox.TestRunner;
|
@@ -198,4 +205,103 @@ private void doTest(Path base, String[] libraryCode, String testCode, Consumer<S
|
198 | 205 | validate.accept(decompiled);
|
199 | 206 | }
|
200 | 207 |
|
| 208 | + @Test |
| 209 | + public void testRuleCases(Path base) throws Exception { |
| 210 | + doTestRun(base, |
| 211 | + new String[0], |
| 212 | + """ |
| 213 | + package test; |
| 214 | + public class Test { |
| 215 | + public static void main(String... args) { |
| 216 | + System.out.println(test(new R("a"))); |
| 217 | + System.out.println(test(new R(3))); |
| 218 | + System.out.println(test(new R(new R("a")))); |
| 219 | + System.out.println(test(new R(new R(3)))); |
| 220 | + } |
| 221 | + public static int test(Object obj) { |
| 222 | + int res; |
| 223 | + switch (obj) { |
| 224 | + case R(String s) -> res = s.length(); |
| 225 | + case R(Integer i) -> res = i; |
| 226 | + case R(R(String s)) -> res = 10 + s.length(); |
| 227 | + case R(R(Integer i)) -> res = 10 + i; |
| 228 | + default -> res = -1; |
| 229 | + } |
| 230 | + return res; |
| 231 | + } |
| 232 | + record R(Object o) {} |
| 233 | + } |
| 234 | + """, |
| 235 | + output -> { |
| 236 | + String expectedOutput = """ |
| 237 | + 1 |
| 238 | + 3 |
| 239 | + 11 |
| 240 | + 13 |
| 241 | + """; |
| 242 | + if (!Objects.equals(output, expectedOutput)) { |
| 243 | + throw new AssertionError("Unexpected output," + |
| 244 | + " expected: " + expectedOutput + |
| 245 | + " actual: " + output); |
| 246 | + } |
| 247 | + }); |
| 248 | + } |
| 249 | + |
| 250 | + private void doTestRun(Path base, String[] libraryCode, String testCode, Consumer<String> validate) throws Exception { |
| 251 | + Path current = base.resolve("."); |
| 252 | + Path libClasses = current.resolve("libClasses"); |
| 253 | + |
| 254 | + Files.createDirectories(libClasses); |
| 255 | + |
| 256 | + if (libraryCode.length != 0) { |
| 257 | + Path libSrc = current.resolve("lib-src"); |
| 258 | + |
| 259 | + for (String code : libraryCode) { |
| 260 | + tb.writeJavaFiles(libSrc, code); |
| 261 | + } |
| 262 | + |
| 263 | + new JavacTask(tb) |
| 264 | + .options("--enable-preview", |
| 265 | + "-source", JAVA_VERSION) |
| 266 | + .outdir(libClasses) |
| 267 | + .files(tb.findJavaFiles(libSrc)) |
| 268 | + .run(); |
| 269 | + } |
| 270 | + |
| 271 | + Path src = current.resolve("src"); |
| 272 | + tb.writeJavaFiles(src, testCode); |
| 273 | + |
| 274 | + Path classes = current.resolve("libClasses"); |
| 275 | + |
| 276 | + Files.createDirectories(libClasses); |
| 277 | + |
| 278 | + var log = |
| 279 | + new JavacTask(tb) |
| 280 | + .options("--enable-preview", |
| 281 | + "-source", JAVA_VERSION, |
| 282 | + "-XDrawDiagnostics", |
| 283 | + "-Xlint:-preview", |
| 284 | + "--class-path", libClasses.toString(), |
| 285 | + "-XDshould-stop.at=FLOW") |
| 286 | + .outdir(classes) |
| 287 | + .files(tb.findJavaFiles(src)) |
| 288 | + .run(Task.Expect.SUCCESS) |
| 289 | + .writeAll(); |
| 290 | + |
| 291 | + ClassLoader cl = new URLClassLoader(new URL[] {classes.toUri().toURL()}); |
| 292 | + Class<?> testClass = cl.loadClass("test.Test"); |
| 293 | + Method main = testClass.getMethod("main", String[].class); |
| 294 | + PrintStream prevOut = System.out; |
| 295 | + var data = new ByteArrayOutputStream(); |
| 296 | + try (var outStream = new PrintStream(data, true, StandardCharsets.UTF_8)) { |
| 297 | + System.setOut(outStream); |
| 298 | + main.invoke(null, (Object) new String[0]); |
| 299 | + } finally { |
| 300 | + System.setOut(prevOut); |
| 301 | + } |
| 302 | + String output = new String(data.toByteArray(), StandardCharsets.UTF_8); |
| 303 | + output = output.replaceAll("\\R", "\n"); |
| 304 | + validate.accept(output); |
| 305 | + } |
| 306 | + |
201 | 307 | }
|
0 commit comments