Skip to content

Commit 56abdc1

Browse files
committedJun 10, 2020
8246712: doclint incorrectly reports some HTML elements as empty
Reviewed-by: prappo
1 parent 80ae89b commit 56abdc1

File tree

2 files changed

+155
-0
lines changed

2 files changed

+155
-0
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/doclint/Checker.java

+4
Original file line numberDiff line numberDiff line change
@@ -803,6 +803,7 @@ public Void visitDocRoot(DocRootTree tree, Void ignore) {
803803

804804
@Override @DefinedBy(Api.COMPILER_TREE)
805805
public Void visitIndex(IndexTree tree, Void ignore) {
806+
markEnclosingTag(Flag.HAS_INLINE_TAG);
806807
for (TagStackItem tsi : tagStack) {
807808
if (tsi.tag == HtmlTag.A) {
808809
env.messages.warning(HTML, tree, "dc.tag.a.within.a",
@@ -956,6 +957,7 @@ public Void visitSince(SinceTree tree, Void ignore) {
956957

957958
@Override @DefinedBy(Api.COMPILER_TREE)
958959
public Void visitSummary(SummaryTree node, Void aVoid) {
960+
markEnclosingTag(Flag.HAS_INLINE_TAG);
959961
int idx = env.currDocComment.getFullBody().indexOf(node);
960962
// Warn if the node is preceded by non-whitespace characters,
961963
// or other non-text nodes.
@@ -967,6 +969,7 @@ public Void visitSummary(SummaryTree node, Void aVoid) {
967969

968970
@Override @DefinedBy(Api.COMPILER_TREE)
969971
public Void visitSystemProperty(SystemPropertyTree tree, Void ignore) {
972+
markEnclosingTag(Flag.HAS_INLINE_TAG);
970973
for (TagStackItem tsi : tagStack) {
971974
if (tsi.tag == HtmlTag.A) {
972975
env.messages.warning(HTML, tree, "dc.tag.a.within.a",
@@ -1041,6 +1044,7 @@ public Void visitUnknownBlockTag(UnknownBlockTagTree tree, Void ignore) {
10411044

10421045
@Override @DefinedBy(Api.COMPILER_TREE)
10431046
public Void visitUnknownInlineTag(UnknownInlineTagTree tree, Void ignore) {
1047+
markEnclosingTag(Flag.HAS_INLINE_TAG);
10441048
checkUnknownTag(tree, tree.getTagName());
10451049
return super.visitUnknownInlineTag(tree, ignore);
10461050
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
/*
2+
* Copyright (c) 2020, 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+
/*
26+
* @test
27+
* @bug 8246712
28+
* @summary doclint incorrectly reports some HTML elements as empty
29+
* @modules jdk.compiler/com.sun.tools.doclint
30+
* @library /tools/lib
31+
* @build toolbox.TestRunner toolbox.ToolBox
32+
* @run main EmptyHtmlTest
33+
*/
34+
35+
import java.io.PrintWriter;
36+
import java.io.StringWriter;
37+
import java.lang.reflect.Method;
38+
import java.nio.file.Files;
39+
import java.nio.file.Path;
40+
import java.util.List;
41+
42+
import com.sun.source.doctree.DocTreeVisitor;
43+
import com.sun.source.doctree.InlineTagTree;
44+
import com.sun.tools.doclint.DocLint;
45+
import toolbox.TestRunner;
46+
import toolbox.ToolBox;
47+
48+
public class EmptyHtmlTest extends TestRunner {
49+
50+
public static void main(String... args) throws Exception {
51+
EmptyHtmlTest t = new EmptyHtmlTest();
52+
t.runTests(m -> new Object[] { Path.of(m.getName()) });
53+
}
54+
55+
public EmptyHtmlTest() {
56+
super(System.err);
57+
}
58+
59+
ToolBox tb = new ToolBox();
60+
61+
/**
62+
* This test is intended to be future-proof, and hence detect any
63+
* problems in any inline tags added in the future.
64+
* Since there is not yet any mapping between DocTree.Kind and
65+
* the corresponding subtype DocTree (see javac Tree.Kind, Tree)
66+
* the list of all current inline tag classes is determined by
67+
* scanning DocTreeVisitor.
68+
*
69+
* @param base working directory for the test case
70+
* @throws Exception if an error occurs
71+
*/
72+
@Test
73+
public void testInlines(Path base) throws Exception {
74+
Class<DocTreeVisitor> c = DocTreeVisitor.class;
75+
for (Method m : c.getDeclaredMethods()) {
76+
if (m.getName().startsWith("visit") && m.getParameterCount() == 2) {
77+
Class<?>[] paramTypes = m.getParameterTypes();
78+
Class<?> firstParamType = paramTypes[0];
79+
if (InlineTagTree.class.isAssignableFrom(firstParamType)) {
80+
testInline(base, firstParamType);
81+
}
82+
}
83+
}
84+
}
85+
86+
void testInline(Path base, Class<?> type) throws Exception {
87+
// the following can eventually be converted to instanceof pattern switch
88+
Path d = Files.createDirectories(base.resolve(type.getSimpleName()));
89+
switch (type.getSimpleName()) {
90+
case "DocRootTree" ->
91+
test(d, type, "{@docRoot}");
92+
93+
case "IndexTree" ->
94+
test(d, type, "{@index Object}");
95+
96+
case "InheritDocTree" ->
97+
test(d, type, "{@inheritDoc}");
98+
99+
case "LinkTree" ->
100+
test(d, type, "{@link Object}");
101+
102+
case "LiteralTree" ->
103+
test(d, type, "{@literal abc}");
104+
105+
case "SummaryTree" ->
106+
test(d, type, "{@summary First sentence.}");
107+
108+
case "SystemPropertyTree" ->
109+
test(d, type, "{@systemProperty file.separator}");
110+
111+
case "UnknownInlineTagTree" ->
112+
test(d, type, "{@unknown}");
113+
114+
case "ValueTree" ->
115+
test(d, type, "{@value Math.PI}");
116+
117+
default ->
118+
error("no test case provided for " + type);
119+
}
120+
}
121+
122+
void test(Path base, Class<?> type, String tag) throws Exception {
123+
System.err.println("test " + type.getSimpleName() + " " + tag);
124+
Path src = base.resolve("src");
125+
String text = """
126+
/**
127+
* This is a comment.
128+
* <b>INSERT</b>
129+
*/
130+
public class C { }
131+
""".replace("INSERT", tag);
132+
tb.writeJavaFiles(src, text);
133+
134+
List<String> cmdArgs = List.of(
135+
"-Xmsgs:html",
136+
"-XcustomTags:unknown",
137+
src.resolve("C.java").toString()
138+
);
139+
140+
StringWriter sw = new StringWriter();
141+
try (PrintWriter pw = new PrintWriter(sw)) {
142+
new DocLint().run(pw, cmdArgs.toArray(new String[0]));
143+
}
144+
String log = sw.toString();
145+
if (!log.isEmpty()) {
146+
System.err.println("output:");
147+
log.lines().forEach(System.err::println);
148+
error("Unexpected output from doclint");
149+
}
150+
}
151+
}

0 commit comments

Comments
 (0)
Please sign in to comment.