cfdc64fcb4
Reviewed-by: liach, redestad, vromero
109 lines
4.1 KiB
Java
109 lines
4.1 KiB
Java
/*
|
|
* Copyright (c) 2018, Google Inc. All rights reserved.
|
|
* Copyright (c) 2024, 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 8190452
|
|
* @summary javac should not add MethodParameters attributes to v51 and earlier class files
|
|
* @enablePreview
|
|
* @modules java.base/jdk.internal.classfile.impl
|
|
* @build LegacyOutputTest
|
|
* @run main LegacyOutputTest
|
|
*/
|
|
|
|
import java.lang.classfile.*;
|
|
import java.lang.classfile.attribute.MethodParameterInfo;
|
|
import java.lang.classfile.attribute.MethodParametersAttribute;
|
|
import java.net.URI;
|
|
import java.nio.file.Paths;
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
import javax.tools.JavaCompiler;
|
|
import javax.tools.JavaCompiler.CompilationTask;
|
|
import javax.tools.JavaFileObject;
|
|
import javax.tools.SimpleJavaFileObject;
|
|
import javax.tools.ToolProvider;
|
|
|
|
/**
|
|
* Post https://bugs.openjdk.org/browse/JDK-8190452, the test verifies that MethodParameters
|
|
* attributes are not emitted when targeting --release < 8.
|
|
*/
|
|
public class LegacyOutputTest {
|
|
public static void main(String[] args) throws Exception {
|
|
new LegacyOutputTest().test();
|
|
}
|
|
|
|
void test() throws Exception {
|
|
release8();
|
|
}
|
|
|
|
void release8() throws Exception {
|
|
List<String> names = getParameterNames("8");
|
|
List<String> expected = Arrays.asList("x", "y");
|
|
if (!names.equals(expected)) {
|
|
throw new AssertionError(
|
|
"incorrect parameter names, actual: " + names + ", expected: " + expected);
|
|
}
|
|
}
|
|
|
|
List<String> getParameterNames(String release) throws Exception {
|
|
JavaCompiler tool = ToolProvider.getSystemJavaCompiler();
|
|
JavaFileObject fileObject =
|
|
SimpleJavaFileObject.forSource(URI.create("Test.java"),
|
|
"class Test { void f(int x, int y) {} }");
|
|
CompilationTask task =
|
|
tool.getTask(
|
|
null,
|
|
null,
|
|
null,
|
|
Arrays.asList("--release", release, "-parameters"),
|
|
null,
|
|
Arrays.asList(fileObject));
|
|
if (!task.call()) {
|
|
throw new AssertionError("compilation failed");
|
|
}
|
|
ClassModel classFile = ClassFile.of().parse(Paths.get("Test.class"));
|
|
MethodModel method = getMethod(classFile, "f");
|
|
MethodParametersAttribute attribute = method.findAttribute(Attributes.methodParameters()).orElse(null);
|
|
if (attribute == null) {
|
|
return null;
|
|
}
|
|
List<String> parameterNames = new ArrayList<>();
|
|
for (MethodParameterInfo e : attribute.parameters()) {
|
|
parameterNames.add(e.name().orElseThrow().stringValue());
|
|
}
|
|
return parameterNames;
|
|
}
|
|
|
|
private static MethodModel getMethod(ClassModel classFile, String name) throws Exception {
|
|
for (MethodModel method : classFile.methods()) {
|
|
if (method.methodName().equalsString(name)) {
|
|
return method;
|
|
}
|
|
}
|
|
throw new AssertionError("could not find method: " + name);
|
|
}
|
|
}
|