23
23
24
24
/*
25
25
* @test
26
- * @bug 9999999
26
+ * @bug 8315851 8315588
27
27
* @summary Tests for unnamed variables
28
28
* @library /tools/lib
29
29
* @modules jdk.compiler/com.sun.tools.javac.api
34
34
*/
35
35
36
36
import java .util .function .Consumer ;
37
+
38
+ import jdk .jshell .SourceCodeAnalysis ;
37
39
import jdk .jshell .VarSnippet ;
38
40
import org .testng .Assert ;
39
41
import org .testng .annotations .Test ;
40
42
41
43
import jdk .jshell .JShell ;
42
44
45
+ import static jdk .jshell .SourceCodeAnalysis .Completeness .COMPLETE ;
46
+ import static jdk .jshell .SourceCodeAnalysis .Completeness .DEFINITELY_INCOMPLETE ;
47
+
43
48
public class UnnamedTest extends KullaTesting {
44
49
45
50
@ Test
@@ -50,6 +55,79 @@ public void unnamed() {
50
55
Assert .assertEquals (getState ().varValue (sn2 ), "\" x\" " );
51
56
}
52
57
58
+ static final String [] definitely_incomplete = new String []{
59
+ "int _ = " ,
60
+ "int m(String v, int r) {\n " +
61
+ " try {\n " +
62
+ " return Integer.parseInt(v, r);\n " +
63
+ " } catch (NumberFormatException _) {" ,
64
+ "try (final Lock _ = " ,
65
+ "try (Lock _ = null) {\n " +
66
+ " try (Lock _ = null) {" ,
67
+ "for (var _ : strs" ,
68
+ "TwoParams p1 = (_, _) ->" ,
69
+ "for (int _ = 0, _ = 1, x = 1;" ,
70
+ "if (r instanceof R(_"
71
+ };
72
+
73
+ static final String [] complete = new String []{
74
+ "int _ = 42;" ,
75
+ "int m(String v, int r) {\n " +
76
+ " try {\n " +
77
+ " return Integer.parseInt(v, r);\n " +
78
+ " } catch (NumberFormatException _) { } }" ,
79
+ "try (final Lock _ = TEST) {}" ,
80
+ "try (Lock _ = null) {\n " +
81
+ " try (Lock _ = null) { } }" ,
82
+ "for (var _ : strs) { }" ,
83
+ "TwoParams p1 = (_, _) -> {};" ,
84
+ "for (int _ = 0, _ = 1, x = 1; x <= 1 ; x++) {}" ,
85
+ "if (r instanceof R(_)) { }"
86
+ };
87
+
88
+ private void assertStatus (String input , SourceCodeAnalysis .Completeness status , String source ) {
89
+ String augSrc ;
90
+ switch (status ) {
91
+ case COMPLETE_WITH_SEMI :
92
+ augSrc = source + ";" ;
93
+ break ;
94
+
95
+ case DEFINITELY_INCOMPLETE :
96
+ augSrc = null ;
97
+ break ;
98
+
99
+ case CONSIDERED_INCOMPLETE :
100
+ augSrc = source + ";" ;
101
+ break ;
102
+
103
+ case EMPTY :
104
+ case COMPLETE :
105
+ case UNKNOWN :
106
+ augSrc = source ;
107
+ break ;
108
+
109
+ default :
110
+ throw new AssertionError ();
111
+ }
112
+ assertAnalyze (input , status , augSrc );
113
+ }
114
+
115
+ private void assertStatus (String [] ins , SourceCodeAnalysis .Completeness status ) {
116
+ for (String input : ins ) {
117
+ assertStatus (input , status , input );
118
+ }
119
+ }
120
+
121
+ @ Test
122
+ public void test_definitely_incomplete () {
123
+ assertStatus (definitely_incomplete , DEFINITELY_INCOMPLETE );
124
+ }
125
+
126
+ @ Test
127
+ public void test_definitely_complete () {
128
+ assertStatus (complete , COMPLETE );
129
+ }
130
+
53
131
@ Override
54
132
public void setUp (Consumer <JShell .Builder > bc ) {
55
133
super .setUp (bc .andThen (b -> b .compilerOptions ("--enable-preview" , "--source" , System .getProperty ("java.specification.version" ))));
0 commit comments