-
-
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 #15769: fix false-positive indentation violations for block codes #16515
base: master
Are you sure you want to change the base?
Conversation
Github, generate report for Indentation/all-examples-in-one |
Failed to download or process the specified configuration(s).
|
ffcf264
to
fbfa4b1
Compare
Github, generate report for Indentation/all-examples-in-one |
@Zopsss , please do first review |
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:
&& getParent() instanceof BlockParentHandler | ||
&& getParent().getParent() instanceof BlockParentHandler; |
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.
why getParent().getParent()
is required?
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.
this condition is important for handling switch-cases blocks present in InputIndentationSwitchCasesAndEnums.java
case ONE: (CaseHandler)
{ //indent:8 exp:8
System.out.println("One"); //indent:10 exp:10
break; //indent:10 exp:10
} //indent:8 exp:8
|--CASE_GROUP -> CASE_GROUP [24:6]
| | |--LITERAL_CASE -> case [24:6]
| | | |--EXPR -> EXPR [24:11]
| | | | `--IDENT -> ONE [24:11]
| | | `--COLON -> : [24:14]
| | `--SLIST -> SLIST [25:8]
| | `--SLIST -> { [25:8]
| | |--EXPR -> EXPR [26:28]
without an extra check, checkifBlockCode
returns True, causing a wrong indentation value. I just put this condition and it worked on all tests. In regression reports , we might find problems with it.
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.
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.
In regression reports , we might find problems with it.
yeah let's see how this performs in regression
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.
but isn't it wrong ? only 10 is valid, right ?
yup, this seems like a bug. Nice catch, please create a new issue for it.
if (!isOnStartOfLine(lcurly) | ||
|| lcurly.getParent().getType() == TokenTypes.INSTANCE_INIT) { | ||
if (!isOnStartOfLine(lcurly) || checkIfCodeBlock()) { |
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.
is removing lcurly.getParent().getType() == TokenTypes.INSTANCE_INIT
safe? can you tell me why was it used before?
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.
it worked only for Instance code blocks like #16515 (comment) won't work for cases like-when a code block is inside a function body.
yes it is safe to remove it as new logic covers the above cases
|
||
package com.puppycrawl.tools.checkstyle.checks.indentation.indentation; //indent:0 exp:0 | ||
|
||
public class InputIndentationCodeBlocks1 { //indent:0 exp:0 |
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.
please add following cases right after class begins:
{ //indent:2 exp:2
System.out.println("True"); //indent:4 exp:4
} //indent:2 exp:2
{ //indent:4 exp:2 warn
System.out.println("False"); //indent:6 exp:4 warn
} //indent:4 exp:2 warn
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.
done
Github, generate report |
first, we need to check regression on the project suggested here #14294 (comment) report is ready #16515 (comment) |
@Zopsss in the regression config, we need to specify the google_style config as this issue is related to google-style right? |
Yes, find diff between current master branch's google_checks.xml config and your modified google_checks.xml config. Check the generated report, if false positives/negatives are introduced then report them here and try to fix them |
Github, generate report |
@Zopsss report generation exceeded 6 hours limit and got cancelled twice https://github.com/checkstyle/checkstyle/actions/runs/13871818479 ?? |
Sorry, even I'm seeing this error for the first time. @romani can you check what's the issue here? |
Github, generate report |
Please do not run on whole Google style config, just use intendtation module from it, nothing else. |
Github, generate report |
Report generation failed on phase "make_report", |
Github, generate report |
Report generation failed on phase "make_report", |
Error : Failed to execute goal org.apache.maven.plugins:maven-site-plugin:3.12.1:site (default-site) on project sample: Error generating maven-checkstyle-plugin:3.1.1:checkstyle report: Failed during checkstyle configuration: Exception was thrown while processing /home/runner/work/checkstyle/checkstyle/.ci-temp/contribution/checkstyle-tester/src/main/java/openjdk21/src/jdk.jlink/share/classes/module-info.java: IllegalStateException occurred while parsing file /home/runner/work/checkstyle/checkstyle/.ci-temp/contribution/checkstyle-tester/src/main/java/openjdk21/src/jdk.jlink/share/classes/module-info.java. 54:0: no viable alternative at input 'module': NoViableAltException -> [Help 1] |
please use https://github.com/checkstyle/contribution/blob/master/checkstyle-tester/my_check.xml but module should one one , attention to |
@romani like this ? |
Yes |
Github, generate report |
diff is huge, please start copy all code from diff report to Input to have all distinct cases that we missed in Inputs. |
report is weird. there are diffs in switch and case blocks. this report is based on google config and not every project uses it. so obviously there will be diffs. |
we have already checked the regression using default indentation config #16515 (comment) |
Please go through their diff and add missing examples to our inputs. We can ignore other projects. Also if you're going to generate more regression reports then only include projects which uses google-style, other projects will not help us to find edge cases. |
Github, generate report |
Github, generate report |
@Zopsss in camunda project, violations on switch expression are fixed in #16418. these diffs got removed that PR's regression report #16418 (comment) |
fbfa4b1
to
78e1fb8
Compare
Github, generate report |
like I said , there is no violation change in Hbase project, do I still need to add examples from it to our input ?? |
Sorry I'm not able to understand why diff got removed. Were the violations in diff was false positives? And your PR fixed them?
Can you point out the PR where the violation message was changed? |
Did we fixed some bug that's why the violation message was changed? Or is it something else? If the diff doesn't have any false-postivie/negative and if you don't find an example which is not in our input files then you don't need to add any new example. We'll be good to go |
fixes #15769
Diff Regression config: https://gist.githubusercontent.com/mohitsatr/d55485b980e5c7ae9c883ba8f79dcbd6/raw/c824102d90368dbd060f41a1f6bda249cdcf0a5b/master_google_style.xml
Diff Regression patch config: https://gist.githubusercontent.com/mohitsatr/60d8725143067033c0ee8c8b8c6902c0/raw/e585f76bf1fe45a3eab04329b4f3ae01766aa394/google_checks_codeblock.xml
Diff Regression projects: https://gist.githubusercontent.com/mohitsatr/68b0817ac52ff7773d35585ee12fc1cc/raw/f9c7774ca78df1f48f34bf30799bd3952abd9e2a/list-of-projects.properties