Skip to content

Commit d0133cd

Browse files
author
Vicente Romero
committedJul 5, 2024
8335770: [lworld] improve javap code coverage
1 parent b963fb9 commit d0133cd

File tree

3 files changed

+131
-6
lines changed

3 files changed

+131
-6
lines changed
 

‎src/jdk.jdeps/share/classes/com/sun/tools/classfile/ClassWriter.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -756,8 +756,8 @@ public Void visitSynthetic(Synthetic_attribute attr, ClassOutputStream out) {
756756

757757
@Override
758758
public Void visitLoadableDescriptors(LoadableDescriptors_attribute attr, ClassOutputStream out) {
759-
out.writeShort(attr.descriptor_info_index.length);
760-
for (int index: attr.descriptor_info_index)
759+
out.writeShort(attr.descriptors.length);
760+
for (int index: attr.descriptors)
761761
out.writeShort(index);
762762
return null;
763763
}

‎src/jdk.jdeps/share/classes/com/sun/tools/classfile/LoadableDescriptors_attribute.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ public class LoadableDescriptors_attribute extends Attribute {
3737
LoadableDescriptors_attribute(ClassReader cr, int name_index, int length) throws IOException {
3838
super(name_index, length);
3939
number_of_descriptors = cr.readUnsignedShort();
40-
descriptor_info_index = new int[number_of_descriptors];
40+
descriptors = new int[number_of_descriptors];
4141
for (int i = 0; i < number_of_descriptors; i++)
42-
descriptor_info_index[i] = cr.readUnsignedShort();
42+
descriptors[i] = cr.readUnsignedShort();
4343
}
4444

4545
public <R, D> R accept(Visitor<R, D> visitor, D data) {
4646
return visitor.visitLoadableDescriptors(this, data);
4747
}
4848

4949
public final int number_of_descriptors;
50-
public final int descriptor_info_index[];
51-
}
50+
public final int descriptors[];
51+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
/*
2+
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test 8335770
26+
* @summary improve javap code coverage for value classes
27+
* @enablePreview
28+
* @library /tools/lib
29+
* @modules jdk.jdeps/com.sun.tools.javap
30+
* @build toolbox.ToolBox toolbox.JavapTask
31+
* @run main ValueClassesJavapTest
32+
*/
33+
34+
import java.nio.file.*;
35+
import java.util.*;
36+
37+
import toolbox.JavapTask;
38+
import toolbox.TestRunner;
39+
import toolbox.ToolBox;
40+
import toolbox.Task;
41+
42+
public class ValueClassesJavapTest extends TestRunner {
43+
ToolBox tb = new ToolBox();
44+
45+
abstract value class AbstractValueClass {}
46+
value class ValueClass {}
47+
class IdentityClass {
48+
ValueClass val;
49+
}
50+
class IdentityClass2 {
51+
void m(ValueClass param) {}
52+
}
53+
54+
private static final List<String> expectedOutput1 = List.of(
55+
"Compiled from \"ValueClassesJavapTest.java\"",
56+
"final value class ValueClassesJavapTest$ValueClass {",
57+
" ValueClassesJavapTest$ValueClass(ValueClassesJavapTest);",
58+
"}");
59+
private static final List<String> expectedOutput2 = List.of(
60+
"Compiled from \"ValueClassesJavapTest.java\"",
61+
"abstract value class ValueClassesJavapTest$AbstractValueClass {",
62+
" ValueClassesJavapTest$AbstractValueClass(ValueClassesJavapTest);",
63+
"}");
64+
private static final List<String> expectedOutput3 = List.of(
65+
"LoadableDescriptors:",
66+
" LValueClassesJavapTest$ValueClass;"
67+
);
68+
69+
ValueClassesJavapTest() throws Exception {
70+
super(System.err);
71+
}
72+
73+
public static void main(String... args) throws Exception {
74+
ValueClassesJavapTest tester = new ValueClassesJavapTest();
75+
tester.runTests();
76+
}
77+
78+
protected void runTests() throws Exception {
79+
runTests(m -> new Object[] { Paths.get(m.getName()) });
80+
}
81+
82+
@Test
83+
public void testMain(Path base) throws Exception {
84+
Path testClassesPath = Paths.get(System.getProperty("test.classes"));
85+
List<String> output = new JavapTask(tb)
86+
.options("-p", testClassesPath.resolve(this.getClass().getSimpleName() + "$ValueClass.class").toString())
87+
.run()
88+
.writeAll()
89+
.getOutputLines(Task.OutputKind.DIRECT);
90+
System.out.println(output);
91+
if (!output.equals(expectedOutput1)) {
92+
throw new AssertionError(String.format("unexpected output:\n %s", output));
93+
}
94+
95+
output = new JavapTask(tb)
96+
.options("-p", testClassesPath.resolve(this.getClass().getSimpleName() + "$AbstractValueClass.class").toString())
97+
.run()
98+
.writeAll()
99+
.getOutputLines(Task.OutputKind.DIRECT);
100+
System.out.println(output);
101+
if (!output.equals(expectedOutput2)) {
102+
throw new AssertionError(String.format("unexpected output:\n %s", output));
103+
}
104+
105+
output = new JavapTask(tb)
106+
.options("-p", "-v", testClassesPath.resolve(this.getClass().getSimpleName() + "$IdentityClass.class").toString())
107+
.run()
108+
.writeAll()
109+
.getOutputLines(Task.OutputKind.DIRECT);
110+
System.out.println(output);
111+
if (!output.containsAll(expectedOutput3)) {
112+
throw new AssertionError(String.format("unexpected output:\n %s", output));
113+
}
114+
115+
output = new JavapTask(tb)
116+
.options("-p", "-v", testClassesPath.resolve(this.getClass().getSimpleName() + "$IdentityClass2.class").toString())
117+
.run()
118+
.writeAll()
119+
.getOutputLines(Task.OutputKind.DIRECT);
120+
System.out.println(output);
121+
if (!output.containsAll(expectedOutput3)) {
122+
throw new AssertionError(String.format("unexpected output:\n %s", output));
123+
}
124+
}
125+
}

0 commit comments

Comments
 (0)
Please sign in to comment.