Skip to content
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 #15685: fixed JavadocParagraph to detect paragraph tag when they have their corresponding closing tag #15686

Merged
merged 1 commit into from
Oct 11, 2024

Conversation

Zopsss
Copy link
Member

@Zopsss Zopsss commented Sep 21, 2024

fixes #15685 #15732

tried fixing the implementation of JavadocParagraph might have introduced new false-negatives :p

I tried to make the Check work same way when the paragraph tag's corresponding closing tag is also present.

when I tried to run build command locally, I got so many errors for different files like checks, filters, etc for <p> tag. Most of them were for:

<p> tag should be placed immediately before the first word, with no space after.

@romani need your help here


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

@Zopsss Zopsss force-pushed the 15685-fixing-implementation branch from c88060a to c23ec48 Compare September 24, 2024 09:50
@Zopsss
Copy link
Member Author

Zopsss commented Sep 24, 2024

I have set the allowNewlineParagraph to false in checkstyle-checks.xml and now there is no violation for

<p> tag should be placed immediately before the first word, with no space after.

though there are still following errors in the build failure:

<p> tag should be preceded with an empty line.
Redundant <p> tag.

Locally I tried to fix allowNewlineParagraph by doing something like this:

    /**
     * Tests whether the paragraph tag is misplaced.
     * Meaning that it is not immediate before the first word or another tag.
     *
     * @param tag html tag.
     * @return true, if the paragraph tag is misplaced.
     */
    private boolean isMisplacedParagraph(DetailNode tag) {
        boolean shouldGiveViolation;

        if (allowNewlineParagraph) {
            shouldGiveViolation = false;
        }
        else if (JavadocUtil.getFirstChild(tag).getType() == JavadocTokenTypes.PARAGRAPH) {
            final DetailNode paragraphToken = JavadocUtil.getFirstChild(tag);
            final DetailNode paragraphStartTagToken = JavadocUtil.getFirstChild(paragraphToken);
            final DetailNode nextSibling = JavadocUtil.getNextSibling(paragraphStartTagToken);
            shouldGiveViolation = nextSibling.getType() == JavadocTokenTypes.NEWLINE
                    || nextSibling.getType() == JavadocTokenTypes.EOF
                    || nextSibling.getText().startsWith(" ");
        }
        else {
            final DetailNode nextSibling = JavadocUtil.getNextSibling(tag);
            shouldGiveViolation = nextSibling.getType() == JavadocTokenTypes.NEWLINE
                    || nextSibling.getType() == JavadocTokenTypes.EOF
                    || nextSibling.getText().startsWith(" ");
        }

        return shouldGiveViolation;
    }
    /**
     * Determines whether or not the line with paragraph tag has previous empty line.
     *
     * @param tag html tag.
     */
    private void checkParagraphTag(DetailNode tag) {
        final DetailNode newLine = getNearestEmptyLine(tag);
        if (isFirstParagraph(tag)) {
            log(tag.getLineNumber(), MSG_REDUNDANT_PARAGRAPH);
        }
        else if (newLine == null || tag.getLineNumber() - newLine.getLineNumber() != 1) {
            log(tag.getLineNumber(), MSG_LINE_BEFORE);
        }
        if (isMisplacedParagraph(tag)) { // this line is changed.
            log(tag.getLineNumber(), MSG_MISPLACED_TAG);
        }
    }

With this there was no error of:

<p> tag should be placed immediately before the first word, with no space after.

and I also didn't needed to set allowNewlineParagraph to false. There were still plenty of other errors... which are other false-positives of the check.

@romani
Copy link
Member

romani commented Sep 26, 2024

this Check code is very hard to read, lets refactor it a bit before this PR to proceeed.

please look at #15709 and try to finish it.
We need to split newline handling to make logic a bit more clear.

@Zopsss Zopsss force-pushed the 15685-fixing-implementation branch 2 times, most recently from eff31fd to fd5db92 Compare September 27, 2024 18:07
@Zopsss
Copy link
Member Author

Zopsss commented Sep 27, 2024

build is still failing, there are still lots of errors

@romani romani added the blocked label Sep 28, 2024
@romani
Copy link
Member

romani commented Sep 28, 2024

before we proceed on this, all other PRs and issues should be merged.
#15713 must be done before, as it will make inputs more realistic so we will make update more clearly.

@romani
Copy link
Member

romani commented Oct 2, 2024

@Zopsss , please resolve conflicts in this PR to let me start review.
you can create new Inputs to avoid conflicts with pending PR for Block-tag.

@Zopsss Zopsss force-pushed the 15685-fixing-implementation branch from fd5db92 to a358f05 Compare October 2, 2024 18:08
@Zopsss
Copy link
Member Author

Zopsss commented Oct 2, 2024

we need to use for checkstyle-checks.xml
<property name="allowNewlineParagraph" value="false"/>

reverted this as we fixed this in one of my old PR.

@Zopsss
Copy link
Member Author

Zopsss commented Oct 2, 2024

local build was still failing, it was mostly giving errors for:

<p> tag should be preceded with an empty line.
Redundant <p> tag.

It was also giving this error:

<p> tag should be placed immediately before the first word, with no space after.

for cases like:

<p> testing: </p>
   ↑ whitespace 

the above error is fine, it is violation of rule but other 2 errors are false-positive, they started appearing because we added support to check for open-close tag.

Should we keep these errors or not? If yes, then it would require changing lots of files.

@romani
Copy link
Member

romani commented Oct 2, 2024

<module name="JavadocParagraph"/>

This means that allowNewlineParagraph= true

And it means that you have defect, as this property is to allow \n.

@Zopsss
Copy link
Member Author

Zopsss commented Oct 2, 2024

And it means that you have defect, as this property is to allow \n.

yes we allow it, so that check does not give violation on lines like:

/**
* <p>
* Checks the Javadoc paragraph.
* </p>

the default property is what we need for our style. We set it to false for google_checks.xml because it does not follow such rules.

@romani
Copy link
Member

romani commented Oct 2, 2024

Google style use false, checkstyle style is true.
We need to improve logic for allowNewlineParagraph to do not violate our javadocs that are keep paragraph tag alone on line.

@Zopsss Zopsss force-pushed the 15685-fixing-implementation branch from a358f05 to 643b58d Compare October 2, 2024 21:00
Comment on lines 49 to 60
<!--
Until we fully support opening-closing paragraph tag
https://github.com/checkstyle/checkstyle/issues/15685
-->
<module name="SuppressionSingleFilter">
<property name="checks" value="JavadocParagraph"/>
<property name="message" value="tag should be preceded with an empty line."/>
</module>
<module name="SuppressionSingleFilter">
<property name="checks" value="JavadocParagraph"/>
<property name="message" value="Redundant .* tag."/>
</module>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suppression until we fix the implementation of this check. May change the referenced issue in future if we open new issue for it

Copy link
Member

@romani romani Oct 4, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to fix almost all violations from Paragraph Check.

* </pre>
* <p>
* See <a href="https://github.com/checkstyle/checkstyle/pull/10434">#10434</a>
is good example. Please start a process of updating our sources, let's make PRs to be limited to ~20-30 files. All PRs will have "supplemental: " prefix.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If there is some strange cases, report to us and skip them for now, we will handle them at the end of as soon as you get confirmation on how to update javadoc.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we need fixes, please continue #15737 and all other fixes.
We eat food we produce before we release to it to users, we need to fix all of them.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Put this link in comment , you will update all in separate PR

@Zopsss
Copy link
Member Author

Zopsss commented Oct 3, 2024

@romani
Copy link
Member

romani commented Oct 3, 2024

@Zopsss , please send PR to pgjdbc project to fix violations.

@Zopsss Zopsss force-pushed the 15685-fixing-implementation branch from c80a41c to 88c23c4 Compare October 3, 2024 14:10
@Zopsss
Copy link
Member Author

Zopsss commented Oct 3, 2024

Build is flooded with errors again :(

https://app.circleci.com/pipelines/github/checkstyle/checkstyle/28127/workflows/60b27b2a-fb0d-4774-a64f-b37dea3364ca/jobs/698909

this time it is because of following type of violation:

<p> tag should not precede HTML block-tag '<ul>', <p> tag should be removed. [JavadocParagraph]

should I add suppression for this too?

@Zopsss
Copy link
Member Author

Zopsss commented Oct 3, 2024

GitHub, generate report for configs in PR description

@romani romani removed the blocked label Oct 3, 2024
@romani
Copy link
Member

romani commented Oct 3, 2024

This PR is unblocked and will be final functional update for this Check.
There will be more attention to diff report.

@Zopsss Zopsss force-pushed the 15685-fixing-implementation branch from 88c23c4 to 1042402 Compare October 4, 2024 06:44
@Zopsss
Copy link
Member Author

Zopsss commented Oct 4, 2024

Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

items:

@Zopsss Zopsss force-pushed the 15685-fixing-implementation branch from c0d510e to cb7cac3 Compare October 10, 2024 13:41
@Zopsss
Copy link
Member Author

Zopsss commented Oct 10, 2024

Github, generate site

@romani
Copy link
Member

romani commented Oct 10, 2024

https://ci.appveyor.com/project/Checkstyle/checkstyle/builds/50771010/job/410wglmmfwmaa7nr#L254

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-site-plugin:3.12.1:site (default-site) on project checkstyle: Error parsing 'C:\projects\checkstyle\src\xdocs\checks\javadoc\javadocparagraph.xml': Error validating the model: Error:
[ERROR]   Public ID: null
[ERROR]   System ID: null
[ERROR]   Line number: 34
[ERROR]   Column number: 15
[ERROR]   Message: cvc-complex-type.2.4.a: Invalid content was found starting with element '{"http://maven.apache.org/XDOC/2.0":ul}'. 
One of  ....
Is expected.

It prints allowed tags , see all in link

Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Items

@Zopsss Zopsss force-pushed the 15685-fixing-implementation branch from cb7cac3 to dedae08 Compare October 10, 2024 16:11
@romani
Copy link
Member

romani commented Oct 10, 2024

Github, generate site

@romani
Copy link
Member

romani commented Oct 10, 2024

Github, generate report for JavadocParagraph/Example2

@Zopsss
Copy link
Member Author

Zopsss commented Oct 10, 2024

GitHub, generate report for JavadocParagraph/all-examples-in-one

@Zopsss Zopsss force-pushed the 15685-fixing-implementation branch 2 times, most recently from 116c234 to bc5dfcf Compare October 10, 2024 21:55
Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok to merge

@romani romani requested a review from rdiachenko October 10, 2024 21:57
@romani romani assigned rdiachenko and unassigned romani Oct 10, 2024
Copy link
Contributor

@rdiachenko rdiachenko left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor note, ok to merge after it is fixed.

* @return true, if the paragraph tag is nested.
*/
private static boolean isNestedParagraph(DetailNode tag) {
boolean isNested = false;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please rename to nested, it's a variable name, shouldn't be a verb.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

…g when they have their corresponding closing tag
@Zopsss Zopsss force-pushed the 15685-fixing-implementation branch from bc5dfcf to ca20d44 Compare October 11, 2024 17:22
@Zopsss
Copy link
Member Author

Zopsss commented Oct 11, 2024

Check no closed issue reference failing CI is addressed at #15765

Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see fix for above item.

@romani romani merged commit 5b21ee5 into checkstyle:master Oct 11, 2024
111 of 112 checks passed
@Zopsss Zopsss deleted the 15685-fixing-implementation branch October 11, 2024 20:16
MohanadKh03 pushed a commit to MohanadKh03/checkstyle that referenced this pull request Oct 18, 2024
MohanadKh03 pushed a commit to MohanadKh03/checkstyle that referenced this pull request Oct 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

JavadocParagraph does not work when paragraphs have their corresponding closing tag
3 participants