|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2018, 2021, 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
|
@@ -459,6 +459,64 @@ public Variant(String code, String fqn) {
|
459 | 459 | }
|
460 | 460 | }
|
461 | 461 |
|
| 462 | + void testGetEnclosingOnMissingType() throws Exception { |
| 463 | + Path base = Paths.get(".", "testGetEnclosingOnMissingType"); |
| 464 | + Path libClasses = compileLib(base, |
| 465 | + "package pkg;\n" + |
| 466 | + "public class A<E> {\n" + |
| 467 | + " public static class N<E> {}\n" + |
| 468 | + "}\n", |
| 469 | + "package pkg;\n" + |
| 470 | + "public class T<E> {\n" + |
| 471 | + " T<A<T>> n;\n" + |
| 472 | + "}\n"); |
| 473 | + try (OutputStream out = Files.newOutputStream(libClasses.resolve("pkg/A.class"))) { |
| 474 | + out.write(0); |
| 475 | + } |
| 476 | + |
| 477 | + Path testSrc = base.resolve("test-src"); |
| 478 | + tb.createDirectories(testSrc); |
| 479 | + Path testClasses = base.resolve("test-classes"); |
| 480 | + tb.createDirectories(testClasses); |
| 481 | + |
| 482 | + tb.writeJavaFiles(testSrc, "class Test { }"); |
| 483 | + tb.cleanDirectory(testClasses); |
| 484 | + |
| 485 | + JavaCompiler compiler = ToolProvider.getSystemJavaCompiler(); |
| 486 | + |
| 487 | + List<Consumer<DeclaredType>> validators = Arrays.asList( |
| 488 | + dt -> { if (dt.getEnclosingType().getKind() != TypeKind.NONE) |
| 489 | + throw new AssertionError("Unexpected enclosing type: " + |
| 490 | + dt.getEnclosingType()); |
| 491 | + }, |
| 492 | + dt -> { if (!"pkg.T<pkg.A<pkg.T>>".equals(dt.toString())) |
| 493 | + throw new AssertionError("Unexpected toString: " + |
| 494 | + dt.toString()); |
| 495 | + } |
| 496 | + ); |
| 497 | + |
| 498 | + try (StandardJavaFileManager fm = compiler.getStandardFileManager(null, null, null)) { |
| 499 | + for (Consumer<DeclaredType> validator : validators) { |
| 500 | + com.sun.source.util.JavacTask task = (com.sun.source.util.JavacTask) |
| 501 | + compiler.getTask(null, |
| 502 | + null, |
| 503 | + null, |
| 504 | + Arrays.asList("-XDrawDiagnostics", |
| 505 | + "-classpath", |
| 506 | + libClasses.toString()), |
| 507 | + null, |
| 508 | + fm.getJavaFileObjects(tb.findJavaFiles(testSrc))); |
| 509 | + task.analyze(); |
| 510 | + TypeElement a = task.getElements() |
| 511 | + .getTypeElement(task.getElements() |
| 512 | + .getModuleElement(""), |
| 513 | + "pkg.T"); |
| 514 | + DeclaredType type = (DeclaredType) a.getEnclosedElements().get(0).asType(); |
| 515 | + validator.accept(type); |
| 516 | + } |
| 517 | + } |
| 518 | + } |
| 519 | + |
462 | 520 | private Path compileLib(Path base, String... sources) throws Exception {
|
463 | 521 | Path libSrc = base.resolve("lib-src");
|
464 | 522 | tb.createDirectories(libSrc);
|
@@ -625,6 +683,7 @@ public static void main(String... args) throws Exception {
|
625 | 683 | t.testAnnotationProcessing();
|
626 | 684 | t.testGetTypeElement();
|
627 | 685 | t.testScope();
|
| 686 | + t.testGetEnclosingOnMissingType(); |
628 | 687 | }
|
629 | 688 |
|
630 | 689 | static class TestVariant {
|
|
0 commit comments