forked from sevntu-checkstyle/sevntu.checkstyle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue sevntu-checkstyle#464: Check for trailing commas on enums
- Loading branch information
Showing
11 changed files
with
312 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
165 changes: 165 additions & 0 deletions
165
...ecks/src/main/java/com/github/sevntu/checkstyle/checks/coding/EnumTrailingCommaCheck.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// checkstyle: Checks Java source code for adherence to a set of rules. | ||
// Copyright (C) 2001-2018 the original author or authors. | ||
// | ||
// This library is free software; you can redistribute it and/or | ||
// modify it under the terms of the GNU Lesser General Public | ||
// License as published by the Free Software Foundation; either | ||
// version 2.1 of the License, or (at your option) any later version. | ||
// | ||
// This library is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
// Lesser General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public | ||
// License along with this library; if not, write to the Free Software | ||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
package com.github.sevntu.checkstyle.checks.coding; | ||
|
||
import com.puppycrawl.tools.checkstyle.api.AbstractCheck; | ||
import com.puppycrawl.tools.checkstyle.api.DetailAST; | ||
import com.puppycrawl.tools.checkstyle.api.TokenTypes; | ||
|
||
/** | ||
* Checks if enum constant contains an optional trailing comma. | ||
* | ||
* <p>Rationale: Putting this comma in makes is easier to change the order of the elements or add | ||
* new elements at the end of the list. This is similar to | ||
* <a href="https://checkstyle.org/config_coding.html#ArrayTrailingComma">ArrayTrailingComma</a>. | ||
* | ||
* <p>The following is a normal enum type declaration: | ||
* <pre> | ||
* enum Type { | ||
* ALPHA, | ||
* BETA, | ||
* GAMMA | ||
* } | ||
* </pre> | ||
* | ||
* <p>However, if you want to append something to the list, you would need to change the line | ||
* containing the last enum constant: | ||
* | ||
* <pre> | ||
* enum Type { | ||
* ALPHA, | ||
* BETA, | ||
* GAMMA, // changed due to the ',' | ||
* DELTA // new line | ||
* } | ||
* </pre> | ||
* | ||
* <p>This check makes sure that also the last enum constant has a trailing comma, which is | ||
* valid according to the Java Spec (see <a | ||
* href="http://docs.oracle.com/javase/specs/jls/se8/html/jls-8.html#jls-8.9.1">Enum Constants</a>) | ||
* | ||
* <pre> | ||
* enum Type { | ||
* ALPHA, | ||
* BETA, | ||
* GAMMA, | ||
* DELTA, // removing this comma will result in a violation with the check activated | ||
* } | ||
* </pre> | ||
* | ||
* <p>However, you could also add a semicolon behind that comma on the same line, which would raise | ||
* a violation | ||
* | ||
* <pre> | ||
* enum Type { | ||
* ALPHA, | ||
* BETA, | ||
* GAMMA, | ||
* DELTA,; // violation | ||
* } | ||
* </pre> | ||
* In this case the semicolon should be removed. However, if there is more in the enum body, the | ||
* semicolon should be placed on a line by itself. | ||
* | ||
* <p>An example of how to configure the check is: | ||
* <pre> | ||
* <module name="EnumTrailingComma"/> | ||
* </pre> | ||
* | ||
* <p>Please note that using this check together with {@code NoWhitespaceBefore} or | ||
* {@code SeparatorWrap} may create conflicts with enums that contain a body: | ||
* {@code EnumTrailingComma} enforces the semicolon on a separate line while | ||
* {@code NoWhiteSpaceBefore} does not allow the semicolon to be preceded with whitespace and | ||
* {@code SeparatorWrap} expects the semicolon to be on the same line as the last enum constant. | ||
* | ||
* @author <a href="[email protected]">Kariem Hussein</a> | ||
*/ | ||
public class EnumTrailingCommaCheck extends AbstractCheck { | ||
|
||
/** Key for warning message text in "messages.properties" file. */ | ||
public static final String MSG_KEY = "enum.trailing.comma"; | ||
|
||
@Override | ||
public int[] getDefaultTokens() { | ||
return getAcceptableTokens(); | ||
} | ||
|
||
@Override | ||
public int[] getAcceptableTokens() { | ||
return new int[] {TokenTypes.ENUM_DEF}; | ||
} | ||
|
||
@Override | ||
public int[] getRequiredTokens() { | ||
return getAcceptableTokens(); | ||
} | ||
|
||
@Override | ||
public void visitToken(DetailAST enumDef) { | ||
final DetailAST enumConstBlock = enumDef.findFirstToken(TokenTypes.OBJBLOCK); | ||
|
||
final DetailAST enumConstLeft = enumConstBlock.findFirstToken(TokenTypes.LCURLY); | ||
final DetailAST enumConstRight = enumConstBlock.findFirstToken(TokenTypes.RCURLY); | ||
|
||
// Only check, if block is multi-line and there are more than one enum constants | ||
if (enumConstLeft.getLineNo() != enumConstRight.getLineNo() | ||
&& enumConstBlock.getChildCount(TokenTypes.ENUM_CONSTANT_DEF) > 1) { | ||
final DetailAST constant = enumConstBlock.findFirstToken(TokenTypes.ENUM_CONSTANT_DEF); | ||
final DetailAST lastComma = getLastComma(constant); | ||
|
||
final DetailAST nextAst = lastComma.getNextSibling(); | ||
if (isIllegalTokenAfterComma(lastComma, nextAst)) { | ||
log(nextAst, MSG_KEY); | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* Check whether there is an illegal token after the last comma token. | ||
* | ||
* @param lastComma the AST containing the last comma | ||
* @param nextAst the next AST | ||
* @return {@code true} if there is an illegal token after the last comma, | ||
* {@code false} otherwise | ||
*/ | ||
private boolean isIllegalTokenAfterComma(DetailAST lastComma, DetailAST nextAst) { | ||
final int nextAstType = nextAst.getType(); | ||
|
||
// semi on the same line as last comma, or followed by enum constant | ||
return (nextAstType == TokenTypes.SEMI && nextAst.getLineNo() == lastComma.getLineNo()) | ||
|| nextAstType == TokenTypes.ENUM_CONSTANT_DEF; | ||
} | ||
|
||
/** | ||
* Get the last comma in a series of siblings. | ||
* | ||
* @param start the first sibling | ||
* @return the AST containing the last comma | ||
*/ | ||
private static DetailAST getLastComma(DetailAST start) { | ||
DetailAST comma = null; | ||
for (DetailAST ast = start; ast != null; ast = ast.getNextSibling()) { | ||
if (ast.getType() == TokenTypes.COMMA) { | ||
comma = ast; | ||
} | ||
} | ||
return comma; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
.../src/test/java/com/github/sevntu/checkstyle/checks/coding/EnumTrailingCommaCheckTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// checkstyle: Checks Java source code for adherence to a set of rules. | ||
// Copyright (C) 2001-2018 the original author or authors. | ||
// | ||
// This library is free software; you can redistribute it and/or | ||
// modify it under the terms of the GNU Lesser General Public | ||
// License as published by the Free Software Foundation; either | ||
// version 2.1 of the License, or (at your option) any later version. | ||
// | ||
// This library is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
// Lesser General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public | ||
// License along with this library; if not, write to the Free Software | ||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
package com.github.sevntu.checkstyle.checks.coding; | ||
|
||
import static com.github.sevntu.checkstyle.checks.coding.EnumTrailingCommaCheck.MSG_KEY; | ||
|
||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
import com.puppycrawl.tools.checkstyle.AbstractModuleTestSupport; | ||
import com.puppycrawl.tools.checkstyle.DefaultConfiguration; | ||
|
||
public class EnumTrailingCommaCheckTest extends AbstractModuleTestSupport { | ||
|
||
@Override | ||
protected String getPackageLocation() { | ||
return "com/github/sevntu/checkstyle/checks/coding"; | ||
} | ||
|
||
@Test | ||
public void testDefault() throws Exception { | ||
final DefaultConfiguration checkConfig = | ||
createModuleConfig(EnumTrailingCommaCheck.class); | ||
final String[] expected = { | ||
"14:9: " + getCheckMessage(MSG_KEY), | ||
"20:9: " + getCheckMessage(MSG_KEY), | ||
"26:15: " + getCheckMessage(MSG_KEY), | ||
}; | ||
verify(checkConfig, getPath("InputEnumTrailingCommaCheck.java"), expected); | ||
} | ||
|
||
@Test | ||
public void testTokensNotNull() { | ||
final EnumTrailingCommaCheck check = new EnumTrailingCommaCheck(); | ||
Assert.assertNotNull(check.getAcceptableTokens()); | ||
Assert.assertNotNull(check.getDefaultTokens()); | ||
Assert.assertNotNull(check.getRequiredTokens()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
...est/resources/com/github/sevntu/checkstyle/checks/coding/InputEnumTrailingCommaCheck.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
package com.github.sevntu.checkstyle.checks.coding; | ||
|
||
public interface InputEnumTrailingCommaCheck | ||
{ | ||
enum E1 { | ||
ONE, | ||
TWO, | ||
THREE, | ||
} | ||
|
||
enum E2 { | ||
ONE, | ||
TWO, | ||
THREE // violation | ||
} | ||
|
||
enum E3 { | ||
ONE, | ||
TWO, | ||
THREE; // violation | ||
} | ||
|
||
enum E4 { | ||
ONE, | ||
TWO, | ||
THREE,; // violation | ||
} | ||
|
||
enum E5 { | ||
ONE, | ||
TWO, | ||
THREE, | ||
; | ||
} | ||
|
||
// enums below are ignored by the check, but were added for completenes | ||
// Please don't remove, they are necessary for full cobertura branch coverage | ||
|
||
// empty | ||
enum E6 {} | ||
|
||
// single enum const, single-line block | ||
enum E7_1 { ONE } | ||
enum E7_2 { ONE; } | ||
enum E7_3 { ONE, } | ||
enum E7_4 { ONE,; } | ||
|
||
// single enum const, multi-line block | ||
enum E8_1 { | ||
ONE | ||
} | ||
enum E8_2 { | ||
ONE; | ||
} | ||
enum E8_3 { | ||
ONE, | ||
} | ||
enum E8_4 { | ||
ONE,; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters