23
23
24
24
/*
25
25
* @test
26
- * @bug 7073631 7159445 7156633 8028235 8065753 8205418 8205913 8228451 8237041 8253584 8246774 8256411 8256149 8259050 8266436 8267221 8271928 8275097 8293897
26
+ * @bug 7073631 7159445 7156633 8028235 8065753 8205418 8205913 8228451 8237041 8253584 8246774 8256411 8256149 8259050 8266436 8267221 8271928 8275097 8293897 8295401
27
27
* @summary tests error and diagnostics positions
28
28
* @author Jan Lahoda
29
29
* @modules jdk.compiler/com.sun.tools.javac.api
84
84
85
85
import com .sun .source .tree .CaseTree ;
86
86
import com .sun .source .tree .DefaultCaseLabelTree ;
87
+ import com .sun .source .tree .ModuleTree ;
87
88
import com .sun .source .util .TreePathScanner ;
89
+ import com .sun .tools .javac .api .JavacTaskPool ;
88
90
import java .util .Objects ;
89
91
90
92
public class JavacParserTest extends TestCase {
@@ -106,7 +108,11 @@ class MyFileObject extends SimpleJavaFileObject {
106
108
private String text ;
107
109
108
110
public MyFileObject (String text ) {
109
- super (URI .create ("myfo:/Test.java" ), JavaFileObject .Kind .SOURCE );
111
+ this ("Test" , text );
112
+ }
113
+
114
+ public MyFileObject (String fileName , String text ) {
115
+ super (URI .create ("myfo:/" + fileName + ".java" ), JavaFileObject .Kind .SOURCE );
110
116
this .text = text ;
111
117
}
112
118
@@ -1989,6 +1995,74 @@ public Void visitModifiers(ModifiersTree node, Void p) {
1989
1995
}.scan (cut , null );
1990
1996
}
1991
1997
1998
+ @ Test //JDK-8295401
1999
+ void testModuleInfoProvidesRecovery () throws IOException {
2000
+ String code = """
2001
+ module m {
2002
+ $DIRECTIVE
2003
+ }
2004
+ """ ;
2005
+ record Test (String directive , int prefix , Kind expectedKind ) {}
2006
+ Test [] tests = new Test [] {
2007
+ new Test ("uses api.api.API;" , 4 , Kind .USES ),
2008
+ new Test ("opens api.api to other.module;" , 5 , Kind .OPENS ),
2009
+ new Test ("exports api.api to other.module;" , 7 , Kind .EXPORTS ),
2010
+ new Test ("provides java.util.spi.ToolProvider with impl.ToolProvider;" , 8 , Kind .PROVIDES ),
2011
+ };
2012
+ JavacTaskPool pool = new JavacTaskPool (1 );
2013
+ for (Test test : tests ) {
2014
+ String directive = test .directive ();
2015
+ for (int i = test .prefix (); i < directive .length (); i ++) {
2016
+ String replaced = code .replace ("$DIRECTIVE" , directive .substring (0 , i ));
2017
+ pool .getTask (null , null , d -> {}, List .of (), null , List .of (new MyFileObject (replaced )), task -> {
2018
+ try {
2019
+ CompilationUnitTree cut = task .parse ().iterator ().next ();
2020
+ new TreePathScanner <Void , Void >() {
2021
+ @ Override
2022
+ public Void visitModule (ModuleTree node , Void p ) {
2023
+ assertEquals ("Unexpected directives size: " + node .getDirectives ().size (),
2024
+ node .getDirectives ().size (),
2025
+ 1 );
2026
+ assertEquals ("Unexpected directive: " + node .getDirectives ().get (0 ).getKind (),
2027
+ node .getDirectives ().get (0 ).getKind (),
2028
+ test .expectedKind );
2029
+ return super .visitModule (node , p );
2030
+ }
2031
+ }.scan (cut , null );
2032
+ return null ;
2033
+ } catch (IOException ex ) {
2034
+ throw new IllegalStateException (ex );
2035
+ }
2036
+ });
2037
+ }
2038
+ }
2039
+ String extendedCode = """
2040
+ module m {
2041
+ provides ;
2042
+ provides java.;
2043
+ provides java.util.spi.ToolProvider with ;
2044
+ provides java.util.spi.ToolProvider with impl.;
2045
+ """ ;
2046
+ pool .getTask (null , null , d -> {}, List .of (), null , List .of (new MyFileObject ("module-info" , extendedCode )), task -> {
2047
+ try {
2048
+ CompilationUnitTree cut = task .parse ().iterator ().next ();
2049
+ task .analyze ();
2050
+ new TreePathScanner <Void , Void >() {
2051
+ @ Override
2052
+ public Void visitModule (ModuleTree node , Void p ) {
2053
+ assertEquals ("Unexpected directives size: " + node .getDirectives ().size (),
2054
+ node .getDirectives ().size (),
2055
+ 4 );
2056
+ return super .visitModule (node , p );
2057
+ }
2058
+ }.scan (cut , null );
2059
+ return null ;
2060
+ } catch (IOException ex ) {
2061
+ throw new IllegalStateException (ex );
2062
+ }
2063
+ });
2064
+ }
2065
+
1992
2066
void run (String [] args ) throws Exception {
1993
2067
int passed = 0 , failed = 0 ;
1994
2068
final Pattern p = (args != null && args .length > 0 )
0 commit comments