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

indentation mismatch with Google formatter over code blocks under switch #14294

Closed
NathanEckert opened this issue Jan 18, 2024 · 17 comments
Closed
Assignees
Labels
approved bug false positive issues where check places violations on code, but should not google style indentation
Milestone

Comments

@NathanEckert
Copy link

NathanEckert commented Jan 18, 2024

I have read check documentation:

I have downloaded the latest checkstyle from: https://checkstyle.org/cmdline.html#Download_and_Run
I have executed the cli and showed it below, as cli describes the problem better than 1,000 words

/var/tmp $ javac mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java

/var/tmp $ cat minimal-rules.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC
  "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
  "https://checkstyle.org/dtds/configuration_1_3.dtd">
<module name="Checker">
  <module name="TreeWalker">
    <module name="LeftCurly">
      <property name="tokens"
        value="ANNOTATION_DEF, CLASS_DEF, CTOR_DEF, ENUM_CONSTANT_DEF, ENUM_DEF,
                      INTERFACE_DEF, LAMBDA, LITERAL_CATCH, LITERAL_DEFAULT,
                      LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF,
                      LITERAL_SWITCH, LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE, METHOD_DEF,
                      OBJBLOCK, STATIC_INIT, RECORD_DEF, COMPACT_CTOR_DEF"/>
    </module>
    <module name="Indentation">
      <property name="basicOffset" value="2"/>
      <property name="braceAdjustment" value="2"/>
      <property name="caseIndent" value="2"/>
      <property name="throwsIndent" value="4"/>
      <property name="lineWrappingIndentation" value="4"/>
      <property name="arrayInitIndent" value="2"/>
    </module>
  </module>
</module>

/var/tmp $ cat mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java
package com.example.checkstyle;

public class CheckstyleScope {
  private static void indentationIssue(Condition condition) {
    switch (condition) {
      case TRUE:
        {
          System.out.println("True");
          break;
        }
      case FALSE:
        {
          System.out.println("False");
          break;
        }
      default:
        System.out.println("Other");
    }

    {
      System.out.println("True");
    }
  }

  private enum Condition {
    TRUE,
    FALSE
  }
}


/var/tmp $ RUN_LOCALE="-Duser.language=en -Duser.country=US"
/var/tmp $ java $RUN_LOCALE -jar ~/Downloads/checkstyle-10.12.7-all.jar -c ./minimal-rules.xml mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java
Starting audit...
[ERROR] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:14:9: 'block lcurly' has incorrect indentation level 8, expected level should be 6. [Indentation]
[ERROR] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:15:11: 'block' child has incorrect indentation level 10, expected level should be 8. [Indentation]
[ERROR] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:16:11: 'block' child has incorrect indentation level 10, expected level should be 8. [Indentation]
[ERROR] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:17:9: 'block rcurly' has incorrect indentation level 8, expected level should be 6. [Indentation]
[ERROR] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:19:9: 'block lcurly' has incorrect indentation level 8, expected level should be 6. [Indentation]
[ERROR] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:20:11: 'block' child has incorrect indentation level 10, expected level should be 8. [Indentation]
[ERROR] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:21:11: 'block' child has incorrect indentation level 10, expected level should be 8. [Indentation]
[ERROR] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:22:9: 'block rcurly' has incorrect indentation level 8, expected level should be 6. [Indentation]
Audit done.
Checkstyle ends with 8 errors.

If I modify the rules to change to <property name="braceAdjustment" value="0"/>,
I manage to get ride of some errors but new ones appears:

/var/tmp $ java -jar ~/Downloads/checkstyle-10.12.7-all.jar -c ./minimal-rules.xml mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java 
Starting audit...
[ERROR] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:27:5: 'block lcurly' has incorrect indentation level 4, expected level should be 6. [Indentation]
[ERROR] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:29:5: 'block rcurly' has incorrect indentation level 4, expected level should be 6. [Indentation]
Audit done.
Checkstyle ends with 2 errors.

The file was previously formatted with google-java-format (https://github.com/google/google-java-format/releases/tag/v1.19.2):

/var/tmp $ java -jar ~/Downloads/google-java-format-1.19.2-all-deps.jar --replace mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java

Might be linked with #3612, #3899 and #9326

@romani
Copy link
Member

romani commented Jan 18, 2024

If I modify the rules to change to

Please change your description example to have single config and just reference what is not correct violations to your mind.

The file was previously formatted with google-java-format:

Please share link to description of this tool. Keep in mind there are bunch interpretations of Google Style, different tools might treat Google style wording differently.

@NathanEckert
Copy link
Author

If I modify the rules to change to

Please change your description example to have single config and just reference what is not correct violations to your mind.

There is no non-logical violation, it's just that I cannot configure checkstyle to have no violation, as the options are contradictory

The file was previously formatted with google-java-format:

Please share link to description of this tool. Keep in mind there are bunch interpretations of Google Style, different tools might treat Google style wording differently.

I added the link to download the formatter

@romani
Copy link
Member

romani commented Jan 18, 2024

So all you try to do is to make checkstyle produce no violations on code that is formatted by another tool?

@NathanEckert
Copy link
Author

So all you try to do is to make checkstyle produce no violations on code that is formatted by another tool?

Sort of, but I would expect to be able to configure checkstyle, such as if the formatter is the google implementation of google-java-format, no error is generated.

For example, if I take the official file of this repo available here https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml, and ran the formatter, I still get the following checkstyle errors:

Starting audit...
[WARN] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:10:1: Missing a Javadoc comment. [MissingJavadocType]
[WARN] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:14:9: '{' at column 9 should be on the previous line. [LeftCurly]
[WARN] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:19:9: '{' at column 9 should be on the previous line. [LeftCurly]
[WARN] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:27:5: 'block lcurly' has incorrect indentation level 4, expected level should be 6. [Indentation]
[WARN] /home/path/mymodule/src/main/java/com/example/checkstyle/CheckstyleScope.java:29:5: 'block rcurly' has incorrect indentation level 4, expected level should be 6. [Indentation]
Audit done.

@romani
Copy link
Member

romani commented Jan 19, 2024

We never tested our Check against this tool, there are numerous interpretations of vague Google style wording.
Please be aware of indentation

If you be able make input java file (after auto formatting) to run against checkstyle
config, and it will be clear violation of what Check is declaring to do, I can approve issue.

I can not approve issue by fact that we are not compliant in behavior with some other tool.

@NathanEckert
Copy link
Author

I am not claiming that checkstyle is not compliant to google-java-format (as it is a different tools, I don't expect it it to work out of the box).
However, I would expect to be able to configure it so it does on my specific code snippet. I was also surprised that the rule file provided is not compatible with the google provided implementation of the google-java-codestyle formatter.

This issue I am opening is two fold:

  • Lack of configurability so that no error is raised for the provided formatted code snippet
  • Issue with the provided google_checks.xml file as it is not compliant with google-java-format (this one is more debatable as you mentioned as there are different interpretation of what the google java guideline is, however I would expect google-java-format to be the reference implementation)

@romani
Copy link
Member

romani commented Jan 19, 2024

however I would expect google-java-format to be the reference implementation)

google-java-format appears year after checkstyle provided style validation. But now a day better to be starting looking on each other. Did you consider google-java-format to have a defect?

Let's focus on checkstyle Check requirements and problems.

Let's make statement of problem like:
I have this java code, it is according to Google style (some quotes from style guide) , I run latest Checkstyle with embedded google config in checkstyle jar and see violation and I think this is not good.

In such wording it be easier to accept issue.

@NathanEckert
Copy link
Author

Did you consider google-java-format to have a defect?

I did consider it but ruled it out, as https://google.github.io/styleguide/javaguide.html#s4.1-braces does not mention anonymous scope, so implementations are free do to whatever they want, so one my want to configure a validation tool such as the code snippet provided does not raise any error.

@romani
Copy link
Member

romani commented Jan 20, 2024

Please create issue on Google style to clarify it, if they update doc as google-java-format doing in some version (latest for today) we can change checkstyle config and Check to match their rules.

And I hope new version of formatter will change behavior.

@cushon
Copy link
Contributor

cushon commented Jan 22, 2024

This is a bug in checkstyle's implementation of Google Java Style.

Let's make statement of problem like:
I have this java code

package com.example.checkstyle;

public class CheckstyleScope {
  private static void indentationIssue(Condition condition) {
    switch (condition) {
      case TRUE:
        {
          System.out.println("True");
          break;
        }
      case FALSE:
        {
          System.out.println("False");
          break;
        }
      default:
        System.out.println("Other");
    }

    {
      System.out.println("True");
    }
  }

  private enum Condition {
    TRUE,
    FALSE
  }
}

it is according to Google style (some quotes from style guide)

From https://google.github.io/styleguide/javaguide.html#s4.1.2-blocks-k-r-style

for nonempty blocks and block-like constructs:

  • No line break before the opening brace, except as detailed below.

...

Exception: In places where these rules allow a single statement ending with a semicolon (;), a block of statements can appear, and the opening brace of this block is preceded by a line break. Blocks like these are typically introduced to limit the scope of local variables, for example inside switch statements.

Also, from https://google.github.io/styleguide/javaguide.html#s4.2-block-indentation

Each time a new block or block-like construct is opened, the indent increases by two spaces. When the block ends, the indent returns to the previous indent level.


I run latest Checkstyle with embedded google config in checkstyle jar and see violation

java -jar checkstyle-10.12.7-all.jar -c '/google_checks.xml' C CheckstyleScope.java
Starting audit...
[WARN] /tmp/tmp.9gS8F8iysU/CheckstyleScope.java:3:1: Missing a Javadoc comment. [MissingJavadocType]
[WARN] /tmp/tmp.9gS8F8iysU/CheckstyleScope.java:7:9: '{' at column 9 should be on the previous line. [LeftCurly]
[WARN] /tmp/tmp.9gS8F8iysU/CheckstyleScope.java:12:9: '{' at column 9 should be on the previous line. [LeftCurly]
[WARN] /tmp/tmp.9gS8F8iysU/CheckstyleScope.java:20:5: 'block lcurly' has incorrect indentation level 4, expected level should be 6. [Indentation]
[WARN] /tmp/tmp.9gS8F8iysU/CheckstyleScope.java:22:5: 'block rcurly' has incorrect indentation level 4, expected level should be 6. [Indentation]
Audit done.

and I think this is not good.

The line breaks between e.g. case TRUE: and { are required, the LeftCurly finding is incorrect, the line break is required by https://google.github.io/styleguide/javaguide.html#s4.1.2-blocks-k-r-style. This was previously reported in #6392, it looks like the incorrect 'Indentation' diagnostics from that bug were fixed but not the 'LeftCurly' diagnostic.

The 'Indentation' findings above are also incorrect. Checkstyle accepts the indentation below, which is disallowed by https://google.github.io/styleguide/javaguide.html#s4.2-block-indentation.

*** CheckstyleScope.java.bak    2024-01-22 08:34:18.473151354 -0800
--- CheckstyleScope.java        2024-01-22 08:34:26.561141138 -0800
***************
*** 16,26 ****
        default:
          System.out.println("Other");
      }

!     {
!       System.out.println("True");
!     }
    }

    private enum Condition {
      TRUE,
--- 16,26 ----
        default:
          System.out.println("Other");
      }

!       {
!         System.out.println("True");
!       }
    }

    private enum Condition {
      TRUE,

@romani
Copy link
Member

romani commented Mar 16, 2024

@cushon , thanks a lot for detailed report.
yes, checkstyle style guide coverage is outdated .... we are stuck in 2018 year https://checkstyle.org/styleguides/google-java-style-20180523/javaguide.html there were no such exception for case blocks.

@Zopsss
Copy link
Member

Zopsss commented Sep 23, 2024

@romani @rdiachenko after removing braceAdjustment from Indentation module, false-positives errors gets removed:

    <module name="Indentation">
      <property name="basicOffset" value="2"/>
      <property name="braceAdjustment" value="2"/>
      <property name="caseIndent" value="2"/>
      <property name="throwsIndent" value="4"/>
      <property name="lineWrappingIndentation" value="4"/>
      <property name="arrayInitIndent" value="2"/>
    </module>
public class Test { { // false-negative
    System.out.println("Testing");
  }

  {
    System.out.println("Testing");
  }

  int bbb = 9; { // should be separated by a blank line
    System.out.println("Testing");
  }

  int aaa = 9;
  { // should be separated by a blank line
    System.out.println("Testing");
  }

  {
    System.out.println("Testing");
  } int testtttt = 00;

  int ccc = 9;

  { // good
    System.out.println("Testing");
  }

  void test() {
    int b = 9; { // false-negative
      System.out.println("Testing");
    }

    Test t = new Test(); { // false-negative
      System.out.println("Testing");
    }
  }

  Test(int x) {
    int b = 9; { // false-negative
      System.out.println("Testing");
    }

    Test t = new Test(); { // false-negative
      System.out.println("Testing");
    }
  }

  static {
  }

  static
  { // violations (LeftCurlyEol), false-positive ( #14294 )
  } // false-positive ( #14294 )

  void test2() {
    switch (a == 2) {
      case true:
      { // violations (LeftCurlyNl), false-positive ( #14294 )
      } // false-positive ( #14294 )

      break;

      default:
      { // violations (LeftCurlyNl), false-positive ( #14294 )
      } // false-positive ( #14294 )

      break;
    }
  }

  Runnable runnable = () -> {
    while (condition()) {
      method();
    }
  };

  Runnable runnable2 = () ->
  { // violations (LeftCurlyEol), false-positive ( #14294 )
    while (condition()) {
      method();
    }
  }; // false-positive ( #14294 )

  private boolean condition() {
    // TODO Auto-generated method stub
    throw new UnsupportedOperationException("Unimplemented method 'condition'");
  }

}

without removing braceAdjustment:

$ java -jar .\checkstyle-10.18.1-all.jar -c .\google_checks_lcurly.xml .\Test.java
Starting audit...
[WARN] C:\checkstyle testing\.\Test.java:1:1: Missing a Javadoc comment. [MissingJavadocType]
[WARN] C:\checkstyle testing\.\Test.java:9:16: 'INSTANCE_INIT' should be separated from previous line. [EmptyLineSeparator]
[WARN] C:\checkstyle testing\.\Test.java:14:3: 'INSTANCE_INIT' should be separated from previous line. [EmptyLineSeparator]
[WARN] C:\checkstyle testing\.\Test.java:20:3: '}' at column 3 should be alone on a line. [RightCurlyAlone]
[WARN] C:\checkstyle testing\.\Test.java:20:5: 'VARIABLE_DEF' should be separated from previous line. [EmptyLineSeparator]
[WARN] C:\checkstyle testing\.\Test.java:52:3: 'static initialization lcurly' has incorrect indentation level 2, expected level should be 4. [Indentation]
[WARN] C:\checkstyle testing\.\Test.java:52:3: '{' at column 3 should be on the previous line. [LeftCurlyEol]
[WARN] C:\checkstyle testing\.\Test.java:53:3: 'static initialization rcurly' has incorrect indentation level 2, expected level should be 4. [Indentation]
[WARN] C:\checkstyle testing\.\Test.java:58:7: 'block lcurly' has incorrect indentation level 6, expected level should be 8. [Indentation]
[WARN] C:\checkstyle testing\.\Test.java:59:7: 'block rcurly' has incorrect indentation level 6, expected level should be 8. [Indentation]
[WARN] C:\checkstyle testing\.\Test.java:61:7: 'block' child has incorrect indentation level 6, expected level should be 8. [Indentation]       
[WARN] C:\checkstyle testing\.\Test.java:64:7: 'block lcurly' has incorrect indentation level 6, expected level should be 8. [Indentation]      
[WARN] C:\checkstyle testing\.\Test.java:65:7: 'block rcurly' has incorrect indentation level 6, expected level should be 8. [Indentation]      
[WARN] C:\checkstyle testing\.\Test.java:67:7: 'block' child has incorrect indentation level 6, expected level should be 8. [Indentation]       
[WARN] C:\checkstyle testing\.\Test.java:78:3: 'block lcurly' has incorrect indentation level 2, expected level should be 4. [Indentation]      
[WARN] C:\checkstyle testing\.\Test.java:78:3: '{' at column 3 should be on the previous line. [LeftCurlyEol]
[WARN] C:\checkstyle testing\.\Test.java:82:3: 'block rcurly' has incorrect indentation level 2, expected level should be 4. [Indentation]      
Audit done.

after removing it:

    <module name="Indentation">
      <property name="basicOffset" value="2"/>
      <!-- <property name="braceAdjustment" value="2"/> -->
      <property name="caseIndent" value="2"/>
      <property name="throwsIndent" value="4"/>
      <property name="lineWrappingIndentation" value="4"/>
      <property name="arrayInitIndent" value="2"/>
    </module>
$ java -jar .\checkstyle-10.18.1-all.jar -c .\google_checks_lcurly.xml .\Test.java
Starting audit...
[WARN] C:\checkstyle testing\.\Test.java:1:1: Missing a Javadoc comment. [MissingJavadocType]
[WARN] C:\checkstyle testing\.\Test.java:9:16: 'INSTANCE_INIT' should be separated from previous line. [EmptyLineSeparator]
[WARN] C:\checkstyle testing\.\Test.java:14:3: 'INSTANCE_INIT' should be separated from previous line. [EmptyLineSeparator]
[WARN] C:\checkstyle testing\.\Test.java:20:3: '}' at column 3 should be alone on a line. [RightCurlyAlone]
[WARN] C:\checkstyle testing\.\Test.java:20:5: 'VARIABLE_DEF' should be separated from previous line. [EmptyLineSeparator]
[WARN] C:\checkstyle testing\.\Test.java:52:3: '{' at column 3 should be on the previous line. [LeftCurlyEol]
[WARN] C:\checkstyle testing\.\Test.java:61:7: 'block' child has incorrect indentation level 6, expected level should be 8. [Indentation]
[WARN] C:\checkstyle testing\.\Test.java:67:7: 'block' child has incorrect indentation level 6, expected level should be 8. [Indentation]
[WARN] C:\checkstyle testing\.\Test.java:78:3: '{' at column 3 should be on the previous line. [LeftCurlyEol]
Audit done.

diff of both outputs:

$ diff -u withProperty.txt withoutProperty.txt 
--- withProperty.txt    2024-09-24 00:00:54.612087500 +0530
+++ withoutProperty.txt 2024-09-24 00:01:31.217213700 +0530
@@ -5,16 +5,8 @@
 [WARN] C:\checkstyle testing\.\Test.java:14:3: 'INSTANCE_INIT' should be separated from previous line. [EmptyLineSeparator]
 [WARN] C:\checkstyle testing\.\Test.java:20:3: '}' at column 3 should be alone on a line. [RightCurlyAlone]
 [WARN] C:\checkstyle testing\.\Test.java:20:5: 'VARIABLE_DEF' should be separated from previous line. [EmptyLineSeparator]
-[WARN] C:\checkstyle testing\.\Test.java:52:3: 'static initialization lcurly' has incorrect indentation level 2, expected level should be 4. [Indentation]
 [WARN] C:\checkstyle testing\.\Test.java:52:3: '{' at column 3 should be on the previous line. [LeftCurlyEol]
-[WARN] C:\checkstyle testing\.\Test.java:53:3: 'static initialization rcurly' has incorrect indentation level 2, expected level should be 4. [Indentation]
-[WARN] C:\checkstyle testing\.\Test.java:58:7: 'block lcurly' has incorrect indentation level 6, expected level should be 8. [Indentation]     
-[WARN] C:\checkstyle testing\.\Test.java:59:7: 'block rcurly' has incorrect indentation level 6, expected level should be 8. [Indentation]     
 [WARN] C:\checkstyle testing\.\Test.java:61:7: 'block' child has incorrect indentation level 6, expected level should be 8. [Indentation]      
-[WARN] C:\checkstyle testing\.\Test.java:64:7: 'block lcurly' has incorrect indentation level 6, expected level should be 8. [Indentation]     
-[WARN] C:\checkstyle testing\.\Test.java:65:7: 'block rcurly' has incorrect indentation level 6, expected level should be 8. [Indentation]     
 [WARN] C:\checkstyle testing\.\Test.java:67:7: 'block' child has incorrect indentation level 6, expected level should be 8. [Indentation]      
-[WARN] C:\checkstyle testing\.\Test.java:78:3: 'block lcurly' has incorrect indentation level 2, expected level should be 4. [Indentation]     
 [WARN] C:\checkstyle testing\.\Test.java:78:3: '{' at column 3 should be on the previous line. [LeftCurlyEol]
-[WARN] C:\checkstyle testing\.\Test.java:82:3: 'block rcurly' has incorrect indentation level 2, expected level should be 4. [Indentation]     
 Audit done.

Most false positives gets removed after removing the property. I haven't checked the other cases yet so Im not so sure if this can negatively impact in other places

Following false positives are there still there:

[WARN] C:\checkstyle testing\.\Test.java:61:7: 'block' child has incorrect indentation level 6, expected level should be 8. [Indentation]
[WARN] C:\checkstyle testing\.\Test.java:67:7: 'block' child has incorrect indentation level 6, expected level should be 8. [Indentation]

PS: ignore the trailing comments and config file name, I used same example file and config file mentioned at #15324 (comment)

@Zopsss
Copy link
Member

Zopsss commented Sep 27, 2024

@rdiachenko @romani

@romani
Copy link
Member

romani commented Oct 11, 2024

@Zopsss, please share checkstyle snapshot behavior on this code.

@romani
Copy link
Member

romani commented Oct 12, 2024

latest behavior:

$ java -jar checkstyle-10.18.3-SNAPSHOT-all.jar -c /google_checks.xml Test.java 
Starting audit...
[WARN] /var/tmp/Test.java:1:1: Missing a Javadoc comment. [MissingJavadocType]
[WARN] /var/tmp/Test.java:18:5: 'block lcurly' has incorrect indentation level 4, expected level should be 6. [Indentation]
[WARN] /var/tmp/Test.java:20:5: 'block rcurly' has incorrect indentation level 4, expected level should be 6. [Indentation]
Audit done.

so we still violate scoped blocks:

    {
      System.out.println("True");
    }
$ java -jar google-java-format-1.23.0-all-deps.jar Test.java > TestUpdated.java
$ diff -u Test.java TestUpdated.java 
$ cat Test.java 
public class Test {
  private static void indentationIssue(int condition) {
    {
      System.out.println("True");
    }
  }
}

$ java -jar checkstyle-10.18.3-SNAPSHOT-all.jar -c /google_checks.xml Test.java 
Starting audit...
[WARN] /var/tmp/Test.java:1:1: Missing a Javadoc comment. [MissingJavadocType]
[WARN] /var/tmp/Test.java:3:5: 'block lcurly' has incorrect indentation level 4, expected level should be 6. [Indentation]
[WARN] /var/tmp/Test.java:5:5: 'block rcurly' has incorrect indentation level 4, expected level should be 6. [Indentation]
Audit done.

Indention violations are not expected.

rivanov@p5510:/var/tmp$ java -jar checkstyle-10.18.3-SNAPSHOT-all.jar -t Test.java 
COMPILATION_UNIT -> COMPILATION_UNIT [1:0]
`--CLASS_DEF -> CLASS_DEF [1:0]
    |--MODIFIERS -> MODIFIERS [1:0]
    |   `--LITERAL_PUBLIC -> public [1:0]
    |--LITERAL_CLASS -> class [1:7]
    |--IDENT -> Test [1:13]
    `--OBJBLOCK -> OBJBLOCK [1:18]
        |--LCURLY -> { [1:18]
        |--METHOD_DEF -> METHOD_DEF [2:2]
        |   |--MODIFIERS -> MODIFIERS [2:2]
        |   |   |--LITERAL_PRIVATE -> private [2:2]
        |   |   `--LITERAL_STATIC -> static [2:10]
        |   |--TYPE -> TYPE [2:17]
        |   |   `--LITERAL_VOID -> void [2:17]
        |   |--IDENT -> indentationIssue [2:22]
        |   |--LPAREN -> ( [2:38]
        |   |--PARAMETERS -> PARAMETERS [2:39]
        |   |   `--PARAMETER_DEF -> PARAMETER_DEF [2:39]
        |   |       |--MODIFIERS -> MODIFIERS [2:39]
        |   |       |--TYPE -> TYPE [2:39]
        |   |       |   `--LITERAL_INT -> int [2:39]
        |   |       `--IDENT -> condition [2:43]
        |   |--RPAREN -> ) [2:52]
        |   `--SLIST -> { [2:54]
        |       |--SLIST -> { [3:4]
        |       |   |--EXPR -> EXPR [4:24]
        |       |   |   `--METHOD_CALL -> ( [4:24]
        |       |   |       |--DOT -> . [4:16]
        |       |   |       |   |--DOT -> . [4:12]
        |       |   |       |   |   |--IDENT -> System [4:6]
        |       |   |       |   |   `--IDENT -> out [4:13]
        |       |   |       |   `--IDENT -> println [4:17]
        |       |   |       |--ELIST -> ELIST [4:25]
        |       |   |       |   `--EXPR -> EXPR [4:25]
        |       |   |       |       `--STRING_LITERAL -> "True" [4:25]
        |       |   |       `--RPAREN -> ) [4:31]
        |       |   |--SEMI -> ; [4:32]
        |       |   `--RCURLY -> } [5:4]
        |       `--RCURLY -> } [6:2]
        `--RCURLY -> } [7:0]

I think we can suppress Indentation under pattern:

        |   `--SLIST -> { [2:54]
        |       |--SLIST -> { [3:4]

until this issue in Indention is fixed.

$ java -jar checkstyle-10.18.3-SNAPSHOT-all.jar -g -c /google_checks.xml Test.java 
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suppressions PUBLIC
    "-//Checkstyle//DTD SuppressionXpathFilter Experimental Configuration 1.2//EN"
    "https://checkstyle.org/dtds/suppressions_1_2_xpath_experimental.dtd">
<suppressions>
<suppress-xpath
       files="Test.java"
       checks="MissingJavadocTypeCheck"
       query="/COMPILATION_UNIT/CLASS_DEF[./IDENT[@text='Test']]"/>
<suppress-xpath
       files="Test.java"
       checks="IndentationCheck"
       query="/COMPILATION_UNIT/CLASS_DEF[./IDENT[@text='Test']]/OBJBLOCK/METHOD_DEF[./IDENT[@text='indentationIssue']]/SLIST/SLIST"/>
<suppress-xpath
       files="Test.java"
       checks="IndentationCheck"
       query="/COMPILATION_UNIT/CLASS_DEF[./IDENT[@text='Test']]/OBJBLOCK/METHOD_DEF[./IDENT[@text='indentationIssue']]/SLIST/SLIST/RCURLY"/>
</suppressions>

So:
//SLIST/SLISTand //SLIST/SLIST/RCURLY should be used to try suppression

if above xpath works to suppress, we should use them.
We need to create new issue specifically for blocks, that we do no report violations for indentation problems in blocks for google style and reference it in our coverage table. Eventually we find way to fix Indentation module to remove xpath suppression.

@romani
Copy link
Member

romani commented Oct 12, 2024

this works on such example, but we need bigger regression testing

$ cat config.xml 
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
          "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
          "https://checkstyle.org/dtds/configuration_1_3.dtd">
<module name="Checker">
  <module name="TreeWalker">
    <module name="SuppressionXpathSingleFilter">
      <property name="checks" value="Indentation"/>
      <property name="query" value="//SLIST/SLIST"/>
    </module>
    <module name="SuppressionXpathSingleFilter">
      <property name="checks" value="Indentation"/>
      <property name="query" value="//SLIST/SLIST/RCURLY"/>
    </module>
    <module name="Indentation">
      <property name="basicOffset" value="2"/>
      <property name="braceAdjustment" value="2"/>
      <property name="caseIndent" value="2"/>
      <property name="throwsIndent" value="4"/>
      <property name="lineWrappingIndentation" value="4"/>
      <property name="arrayInitIndent" value="2"/>
    </module>
  </module>
</module>

$ cat Test.java 
public class Test {
  private static void indentationIssue(int condition) {
    {
      System.out.println("True");
    }
  }
}

$ java -jar checkstyle-10.18.3-SNAPSHOT-all.jar -c config.xml Test.java 
Starting audit...
Audit done.

we should use in testing this project, it uses blocks: https://github.com/oliviercailloux/JARiS/blob/5f35a4d772f5b48851430ddc4d3763462187560c/src/main/java/io/github/oliviercailloux/jaris/credentials/CredentialsReader.java#L211-L213

Zopsss added a commit to Zopsss/checkstyle that referenced this issue Oct 12, 2024
@romani romani changed the title LeftCurly brace indentation mismatch indentation mismatch with Google formatter over code blocks under switch Oct 16, 2024
@romani
Copy link
Member

romani commented Oct 19, 2024

fixed by #15771

There are a bit more false-negatives appears for code blocks in result of fix, but we will address them separately at #15769

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved bug false positive issues where check places violations on code, but should not google style indentation
Projects
No open projects
Status: Done
Development

No branches or pull requests

5 participants