forked from checkstyle/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 checkstyle#7758: Update AbstractChecks to log DetailAST - Packa…
…geDeclaration
- Loading branch information
Showing
9 changed files
with
140 additions
and
15 deletions.
There are no files selected for viewing
85 changes: 85 additions & 0 deletions
85
src/it/java/org/checkstyle/suppressionxpathfilter/XpathRegressionPackageDeclarationTest.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,85 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// checkstyle: Checks Java source code for adherence to a set of rules. | ||
// Copyright (C) 2001-2020 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 org.checkstyle.suppressionxpathfilter; | ||
|
||
import java.io.File; | ||
import java.util.Arrays; | ||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import com.puppycrawl.tools.checkstyle.DefaultConfiguration; | ||
import com.puppycrawl.tools.checkstyle.checks.coding.PackageDeclarationCheck; | ||
|
||
public class XpathRegressionPackageDeclarationTest extends AbstractXpathTestSupport { | ||
|
||
private final String checkName = PackageDeclarationCheck.class.getSimpleName(); | ||
|
||
@Override | ||
protected String getCheckName() { | ||
return checkName; | ||
} | ||
|
||
@Test | ||
public void test1() throws Exception { | ||
final File fileToProcess = | ||
new File(getNonCompilablePath("SuppressionXpathRegression1.java")); | ||
|
||
final DefaultConfiguration moduleConfig = | ||
createModuleConfig(PackageDeclarationCheck.class); | ||
|
||
final String[] expectedViolation = { | ||
"2:1: " + getCheckMessage(PackageDeclarationCheck.class, | ||
PackageDeclarationCheck.MSG_KEY_MISMATCH), | ||
}; | ||
|
||
final List<String> expectedXpathQueries = Collections.singletonList( | ||
"/PACKAGE_DEF" | ||
); | ||
|
||
runVerifications(moduleConfig, fileToProcess, expectedViolation, | ||
expectedXpathQueries); | ||
} | ||
|
||
@Test | ||
public void test2() throws Exception { | ||
final File fileToProcess = | ||
new File(getNonCompilablePath("SuppressionXpathRegression2.java")); | ||
|
||
final DefaultConfiguration moduleConfig = | ||
createModuleConfig(PackageDeclarationCheck.class); | ||
|
||
final String[] expectedViolation = { | ||
"3:1: " + getCheckMessage(PackageDeclarationCheck.class, | ||
PackageDeclarationCheck.MSG_KEY_MISSING), | ||
}; | ||
|
||
final List<String> expectedXpathQueries = Arrays.asList( | ||
"/CLASS_DEF[./IDENT[@text='SuppressionXpathRegression2']]", | ||
"/CLASS_DEF[./IDENT[@text='SuppressionXpathRegression2']]/MODIFIERS", | ||
"/CLASS_DEF[./IDENT[@text='SuppressionXpathRegression2']]/MODIFIERS/LITERAL_PUBLIC" | ||
); | ||
|
||
runVerifications(moduleConfig, fileToProcess, expectedViolation, | ||
expectedXpathQueries); | ||
} | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
...org/checkstyle/suppressionxpathfilter/packagedeclaration/SuppressionXpathRegression1.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,6 @@ | ||
// non-compiled with javac: wrong package. Used for Testing purpose. | ||
package my.packagename.mismatch.with.folder; // warn | ||
|
||
public class SuppressionXpathRegression1 { | ||
// code | ||
} |
5 changes: 5 additions & 0 deletions
5
...org/checkstyle/suppressionxpathfilter/packagedeclaration/SuppressionXpathRegression2.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,5 @@ | ||
// non-compiled with javac: missing package. Used for Testing purpose. | ||
// package is missing. | ||
public class SuppressionXpathRegression2 { // warn | ||
// code | ||
} |
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
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