File: SamConversionComboTest.java

package info (click to toggle)
openjdk-11 11.0.22%2B7-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 781,236 kB
  • sloc: java: 5,174,754; xml: 1,192,262; cpp: 1,133,036; ansic: 461,316; javascript: 162,554; sh: 16,859; objc: 13,683; python: 4,753; asm: 3,570; makefile: 2,894; perl: 357; awk: 351; sed: 172; jsp: 24; csh: 3
file content (267 lines) | stat: -rw-r--r-- 9,419 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/*
 * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

/**
 * @test
 * @bug 8003280
 * @summary Add lambda tests
 *   Test SAM conversion of method references in combinations of different contexts,
 *           lambda body types(statement/expression), boxing/unboxing etc, to verify
 *           SAM conversion being conducted successfully as expected.
 * @modules jdk.compiler
 */

import com.sun.source.util.JavacTask;
import java.net.URI;
import java.util.Arrays;
import javax.tools.Diagnostic;
import javax.tools.JavaCompiler;
import javax.tools.JavaFileObject;
import javax.tools.SimpleJavaFileObject;
import javax.tools.ToolProvider;
import javax.tools.StandardJavaFileManager;

public class SamConversionComboTest {

    enum FInterface {
        A("A", "interface A { Integer m(int i); }"),
        B("B", "interface B { int m(Integer i); }"),
        C("C", "interface C { int m(int i) throws Exception; }");

        String interfaceType;
        String interfaceDef;

        FInterface(String interfaceType, String interfaceDef) {
            this.interfaceType = interfaceType;
            this.interfaceDef = interfaceDef;
        }
    }

    enum Context {
        ASSIGNMENT("#FType f = #MR;"),
        METHOD_CALL("void method1(#FType f) { }\n" +
                    "void method2() {\n" +
                    "    method1(#MR);\n" +
                    "}"),
        CONSTRUCTOR("X x = new X(#MR);"),
        RETURN_OF_METHOD("#FType method1() {\n" +
                         "    return #MR;\n" +
                         "}"),
        ARRAY_INITIALIZER("#FType[] oarray = {#MR};"),
        LAMBDA_BODY("#FType f = n -> ((#FType)#MR).m(n);"),
        CAST("void test() throws Exception { int n = ((#FType)#MR).m(1); }"),
        CONDITIONAL_EXPRESSION("#FType f = 2 > 1 ? #MR : null;");

        String context;

        Context(String context) {
            this.context = context;
        }

        String getContext(FInterface f, MethodReference mr) {
            return context.replace("#FType", f.interfaceType).replace("#MR", mr.mrValue);
        }
    }

    enum MethodReference {
        METHOD1("X::method1"),
        METHOD2("new X()::method2"),
        METHOD3("X::method3"),
        METHOD4("new X()::method4"),
        METHOD5("new X()::method5"),
        METHOD6("X::method6"),
        METHOD7("X::method7"),
        METHOD8("X::method8");

        String mrValue;

        MethodReference(String mr) {
            mrValue = mr;
        }
    }

    enum MethodDef {
        METHOD1("    static Integer method1(int n) {\n" +
                "        return n + 1;\n" +
                "    }\n", 0),
        METHOD2("    int method2(Integer n) {\n" +
                "        return value == 0 ? n + 2 : n + value;\n" +
                "    }\n", 1),
        METHOD3("    static int method3(int n) {\n" +
                "        return n + 3;\n" +
                "    }\n", 2),
        METHOD4("    Integer method4(Integer n) {\n" +
                "        return value == 0 ? n + 4 : n + value;\n" +
                "    }\n", 3),
        METHOD5("    Integer method5(Integer n) {\n" +
                "        return value == 0 ? new Integer(n + 5) : new Integer(n + value);\n" +
                "    }\n", 4),
        METHOD6("    static int method6(Integer n) throws Exception{\n" +
                "        throw new Exception();\n" +
                "    }\n", 5),
        METHOD7("    static int method7(String s){\n" +
                "        return s.length();\n" +
                "    }\n", 6),
        METHOD8("    static String method8(Integer n){\n" +
                "        return n + \"\";\n" +
                "    }\n", 7);

        String methodStr;
        int index;

        MethodDef(String ms, int i) {
            methodStr = ms;
            index = i;
        }

        MethodReference getMethodReference() {
            return MethodReference.values()[index];
        }
    }

    SourceFile samSourceFile = new SourceFile("FInterface.java", "#C") {
        public String toString() {
            String interfaces = "";
            for(FInterface fi : FInterface.values())
                interfaces += fi.interfaceDef + "\n";
            return template.replace("#C", interfaces);
        }
    };

    String clientTemplate = "class Client {\n" +
                            "    #Context\n" +
                            "}\n\n" +

                            "class X {\n" +
                            "    int value = 0;\n\n" +

                            "    X() {\n" +
                            "    }\n\n" +

                            "    X(A a) {\n" +
                            "        value = a.m(9);\n" +
                            "    }\n\n" +

                            "    X(B b) {\n" +
                            "        value = b.m(9);\n" +
                            "    }\n\n" +

                            "    X(C c) {\n" +
                            "        try {\n" +
                            "            value = c.m(9);\n" +
                            "        } catch (Exception e){}\n" +
                            "    }\n\n" +

                            "#MethodDef" +
                            "}";

    SourceFile clientSourceFile = new SourceFile("Client.java", clientTemplate) {
        public String toString() {
            return template.replace("#Context", context.getContext(fInterface, methodReference)).replace("#MethodDef", methodDef.methodStr);
        }
    };

    boolean checkSamConversion() {
        if(methodDef == MethodDef.METHOD7 || methodDef == MethodDef.METHOD8)//method signature mismatch
            return false;
        if(context != Context.CONSTRUCTOR && fInterface != FInterface.C && methodDef == MethodDef.METHOD6)
        //method that throws exceptions not thrown by the interface method is a mismatch
            return false;
        if(context == Context.CONSTRUCTOR)
               return false;
        return true;
    }

    void test() throws Exception {
        System.out.println("\n====================================");
        System.out.println(fInterface + ", " +  context + ", " + methodReference);
        System.out.println(samSourceFile + "\n" + clientSourceFile);

        DiagnosticChecker dc = new DiagnosticChecker();
        JavacTask ct = (JavacTask)comp.getTask(null, fm, dc, null, null, Arrays.asList(samSourceFile, clientSourceFile));
        ct.analyze();
        if (dc.errorFound == checkSamConversion()) {
            throw new AssertionError(samSourceFile + "\n\n" + clientSourceFile);
        }
        count++;
    }

    abstract class SourceFile extends SimpleJavaFileObject {

        protected String template;

        public SourceFile(String filename, String template) {
            super(URI.create("myfo:/" + filename), JavaFileObject.Kind.SOURCE);
            this.template = template;
        }

        @Override
        public CharSequence getCharContent(boolean ignoreEncodingErrors) {
            return toString();
        }

        public abstract String toString();
    }

    static class DiagnosticChecker implements javax.tools.DiagnosticListener<JavaFileObject> {

        boolean errorFound = false;

        public void report(Diagnostic<? extends JavaFileObject> diagnostic) {
            if (diagnostic.getKind() == Diagnostic.Kind.ERROR) {
                errorFound = true;
            }
        }
    }

    FInterface fInterface;
    Context context;
    MethodDef methodDef;
    MethodReference methodReference;
    static int count = 0;

    static JavaCompiler comp = ToolProvider.getSystemJavaCompiler();
    static StandardJavaFileManager fm = comp.getStandardFileManager(null, null, null);

    SamConversionComboTest(FInterface f, Context c, MethodDef md) {
        fInterface = f;
        context = c;
        methodDef = md;
        methodReference = md.getMethodReference();
    }

    public static void main(String[] args) throws Exception {
        try {
            for(Context ct : Context.values()) {
                for (FInterface fi : FInterface.values()) {
                    for (MethodDef md: MethodDef.values()) {
                        new SamConversionComboTest(fi, ct, md).test();
                    }
                }
            }
            System.out.println("total tests: " + count);
        } finally {
            fm.close();
        }
    }
}