-
-
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 #11584: WriteTag reports violation with confusing message when … #15844
Conversation
GitHub, generate website |
Github, generate report for WriteTag/all-examples-in-one |
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
...puppycrawl/tools/checkstyle/checks/javadoc/writetag/InputWriteTagRecordsAndCompactCtors.java
Show resolved
Hide resolved
...docs-examples/resources/com/puppycrawl/tools/checkstyle/checks/javadoc/writetag/Example5.txt
Outdated
Show resolved
Hide resolved
So resetting the severity level back to the original level line 251 here causes a VoidMethodCallMutator in pitest checkstyle/src/main/java/com/puppycrawl/tools/checkstyle/checks/javadoc/WriteTagCheck.java Lines 245 to 251 in c289e27
It seems this is the only place that resets the severity level in the whole codebase so the easy solution would be to just suppress this mutation To actually solve this though it would be kind of a big change We could try to add a way for verifying the expected vs actual severity level of violations also but I think this is too big a change for a very rare case like this e.g: I thought that this was testing the severity level but it is actually testing whether it will break or not not the severity level being the same or not at the end of the check since there is no direct way to use the expected vs actual severity level in any of the current checkstyle/src/test/java/com/puppycrawl/tools/checkstyle/checks/javadoc/WriteTagCheckTest.java Lines 124 to 131 in c289e27
I am rooting for just suppressing this mutation since this is a very rare case that only happens in this check. |
It is always easy to ignore. But whole our project doesn't not ignore quality metrics. |
https://checkstyle.org/config.html#Severity Do you see a reason why we have this special property in this Check? Sounds like we can drop such special property as all Checks already have it. We have 1 Ideally we should just change default behavior in this PR, and do removal of property in separate issue if we see no reason to have it Check.
We just remove this violation, so we should not be involved in much bigger update |
I mean it is kind of a big change we would need to add a new checkstyle/src/test/java/com/puppycrawl/tools/checkstyle/AbstractModuleTestSupport.java Lines 512 to 531 in d7c12da
in order to enable us to check for severity of violation (expected vs actual) we need to have a way to send our expected severity level vs the actual one after using the check so either change the above code snippet or make a new one entirely
Honestly it doesnt seem to bring up any benefit to change the severity level for this check idk why this check needs this property probably better off without it
Sure but for this PR's changes to pass we would need to fix the mutation of the changed severity level thing so should we start with the removal of this property first then continue here ? Most likely there is no more change in this PR it handles the default behaviour rn the only thing missing is fixing the mutation which would not be needed if the property is removed altogether |
Purpose is to give a different severity between a tag format match versus everything else this check logs. |
Ok makes sense . Ill try to fix its mutation then |
there are a lot of complains on this Check - https://github.com/checkstyle/checkstyle/issues?q=is%3Aissue+is%3Aopen+tagSeverity I pretty sure we will remove this property from this Check in future (breaking compatibility). But let not do this in this PR. |
2 issues (now 1 since you closed the other) and 6 closed is not a lot. This property has a purpose to this check, so if you remove it, you remove the purpose of this check. You might as well remove the check completely then. If your complaint is with 2 issues, doesn't make sense why we keep Indentation which is a worse check then this with 75 issues https://github.com/checkstyle/checkstyle/issues?q=is%3Aopen+is%3Aissue+label%3Aindentation (67 closed). |
@MohanadKh03 , do you need help with mutation ? |
After some trial-and-error it seems the only possible way is to add a way to validate the expected vs actual severity levels but currently it is not possible checkstyle/src/main/java/com/puppycrawl/tools/checkstyle/checks/javadoc/WriteTagCheck.java Lines 245 to 251 in c289e27
It would be easier to deal with if there was a dedicated log that we can use send to it our own SeverityLevel but that would be kind of a big change
We can add a new test that checks that with the default configs there is no change to the severity level before and after processing check to ensure this doesnt happen in other future checks as well we can make it inside XpathRegressionTest for example ? |
Ok, our common testing but Inputs with config inside Input will not work here. We can do it in low level way as we did long time ago. Example of how to run checker
This is example how to set listener
We can use default audit listener (logger). And just get fact that violation is wrong severity. https://github.com/checkstyle/checkstyle/blob/master/src/main/java/com/puppycrawl/tools/checkstyle/DefaultLogger.java And we just need to add above test method a comment that briefly explains reasons of doing testing so low level. |
c289e27
to
6780358
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.
good!!
Regression diff testing will not help us as we remove violation on empty javadoc.
It is breaking changes for users and we will document it. UPDATE: issue is updated to have breaking compatibility note.
last items:
...rces/com/puppycrawl/tools/checkstyle/checks/javadoc/writetag/InputWriteTagResetSeverity.java
Outdated
Show resolved
Hide resolved
...docs-examples/resources/com/puppycrawl/tools/checkstyle/checks/javadoc/writetag/Example5.txt
Outdated
Show resolved
Hide resolved
6780358
to
05ab2da
Compare
Windows CI problem:
Most likely due to different end lines symbols. |
…sage when there is no javadoc
05ab2da
to
72d0a9b
Compare
@romani |
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.
ok to merge.
This check is very bad design state, We are moving forward with step by step deprecation of it.
We can not remove it as it is the only Check that user can use to demand some tag to be present in all javadocs.
In future it some other Check will do this and we will remove WriteTag competely.
Fixes #11584
Extends #14153
Diff regression config: https://gist.githubusercontent.com/strkkk/238b6c97492ff6ffdb3be1603deca8fc/raw/5db22461435a94c56a3f420be844cd07baf497f2/config_single_2.xml