-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue #15503: Added support for violation of p tag if it precedes a block tag #15710
Issue #15503: Added support for violation of p tag if it precedes a block tag #15710
Conversation
Github, generate report |
Report generation failed on phase "make_report", |
Github, generate report |
b9d2992
to
3aa7ee5
Compare
Github, generate report |
/* 4 lines below, no violation until #15503 */ | ||
/* 4 lines below, no violation until #15685 */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
had to change issue number to #15685 because CI was complaining. These false-negatives will be covered as part of newly linked issue as they have their corresponding closing tag
3aa7ee5
to
a9cec53
Compare
Github, generate report |
a9cec53
to
3eb627a
Compare
Report generation failed on phase "make_report", |
3eb627a
to
19ad95a
Compare
Github, generate report |
Report generation failed on phase "make_report", |
Github, generate report |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
items:
src/main/java/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocParagraphCheck.java
Outdated
Show resolved
Hide resolved
src/main/java/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocParagraphCheck.java
Outdated
Show resolved
Hide resolved
src/main/java/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocParagraphCheck.java
Outdated
Show resolved
Hide resolved
src/main/resources/com/puppycrawl/tools/checkstyle/checks/javadoc/messages_ru.properties
Outdated
Show resolved
Hide resolved
src/main/resources/com/puppycrawl/tools/checkstyle/checks/javadoc/messages.properties
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
items:
src/main/java/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocParagraphCheck.java
Outdated
Show resolved
Hide resolved
src/main/java/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocParagraphCheck.java
Outdated
Show resolved
Hide resolved
19ad95a
to
4315c39
Compare
...ycrawl/tools/checkstyle/checks/javadoc/javadocparagraph/InputJavadocParagraphIncorrect2.java
Outdated
Show resolved
Hide resolved
Pitest should be fixed, we can not merge in red CI |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Items
src/main/java/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocParagraphCheck.java
Outdated
Show resolved
Hide resolved
@Zopsss , please rebase |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
item:
...eckstyle/test/chapter7javadoc/rule712paragraphs/InputFormattedIncorrectJavadocParagraph.java
Outdated
Show resolved
Hide resolved
4315c39
to
70980bf
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Items
src/main/java/com/puppycrawl/tools/checkstyle/checks/javadoc/JavadocParagraphCheck.java
Outdated
Show resolved
Hide resolved
03f5d5e
to
5a5b1b4
Compare
github, generate report |
ci passed 🎉 |
the check isn't aware of comments, found a case like that at:
this is good. This should still be considered as a violation |
report looks good, no false-positives. |
There is content between P tag and UL tag, so it false-positive, no violation should be there. |
|
Ideally this should continue to be violation , there are some content that is comment tag. We should skip it. Please add this case to Inputs , it should be violated |
|
This isn't false-positive. There's a second opening |
Ummm But I'll still look into this. Thanks for pointing this out |
The violation is for
Not for
The blockquote tag is a block-tag and it is preceded by an opening tag so there should be violation for it. |
I guess this check needs to have column number in its violation. Otherwise it can confuse users. You can see in the above comments, javadocs have multiple opening paragraph tags on same line and on next line they have block-tag. So check gives violation for it but the violation message only contains line number not the column number so it can confuse users about which paragraph tag is causing the violation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
cef359b
to
730221a
Compare
* <p> | ||
* <!-- THIS COMMENT WILL GET IGNORED --> | ||
* <ul> | ||
* <li>Item 1</li> | ||
* <li>Item 2</li> | ||
* <li>Item 3</li> | ||
* </ul> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test case added #15710 (comment)
while (htmlElement != null && htmlElement.getType() != JavadocTokenTypes.HTML_ELEMENT) { | ||
if ((htmlElement.getType() == JavadocTokenTypes.TEXT | ||
|| htmlElement.getType() == JavadocTokenTypes.JAVADOC_INLINE_TAG) | ||
&& !CommonUtil.isBlank(htmlElement.getText())) { | ||
htmlElement = null; | ||
break; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added new line: || htmlElement.getType() == JavadocTokenTypes.JAVADOC_INLINE_TAG)
to fix the false-positive found at:
730221a
to
6c9265f
Compare
…ecedes a block tag
/** | ||
* Some Summary. | ||
* | ||
* <p>{@code com.company.MyClass$Nested#myMethod(String, int)} | ||
* <ul> | ||
* <li>Item 1</li> | ||
* <li>Item 2</li> | ||
* <li>Item 3</li> | ||
* </ul> | ||
*/ | ||
private static final String NAME2 = "Jesse Pinkman"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
test case added #15710 (comment)
GitHub, generate report for configs in PR description |
fixes #15503
added support to check and violate block-tag if they're followed by p tag.
created a new violation message for it.
wrote new test cases.
took the HTML tags list from: https://checkstyle.sourceforge.io/checks/javadoc/javadocstyle.html#JavadocStyle
Check for allowed HTML tags. The list of allowed HTML tags is "a", "abbr", "acronym", "address", "area", "b", "bdo", "big", "blockquote", "br", "caption", "cite", "code", "colgroup", "dd", "del", "dfn", "div", "dl", "dt", "em", "fieldset", "font", "h1", "h2", "h3", "h4", "h5", "h6", "hr", "i", "img", "ins", "kbd", "li", "ol", "p", "pre", "q", "samp", "small", "span", "strong", "sub", "sup", "table", "tbody", "td", "tfoot", "th", "thead", "tr", "tt", "u", "ul", "var".
and filtered out block-level tags.
Diff Regression config: https://gist.githubusercontent.com/Zopsss/013f379d4c821f2d624be56212a64575/raw/5f17ec9186d4421396429ab38cbac3e4663bf4eb/javadocparagraph_config.xml
Diff Regression projects: https://raw.githubusercontent.com/checkstyle/contribution/master/checkstyle-tester/projects-to-test-on-for-github-action.properties