Skip to content

Commit

Permalink
Issue #6207: Added Xpath IT regression test for ReturnCount
Browse files Browse the repository at this point in the history
  • Loading branch information
sd9616 authored and romani committed Apr 12, 2023
1 parent d2648e4 commit c8ee5ba
Show file tree
Hide file tree
Showing 6 changed files with 306 additions and 1 deletion.
@@ -0,0 +1,224 @@
///////////////////////////////////////////////////////////////////////////////////////////////
// checkstyle: Checks Java source code and other text files for adherence to a set of rules.
// Copyright (C) 2001-2023 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.List;

import org.junit.jupiter.api.Test;

import com.puppycrawl.tools.checkstyle.DefaultConfiguration;
import com.puppycrawl.tools.checkstyle.checks.coding.ReturnCountCheck;

public class XpathRegressionReturnCountTest extends AbstractXpathTestSupport {

@Override
protected String getCheckName() {
return ReturnCountCheck.class.getSimpleName();
}

@Test
public void testOne() throws Exception {
final File fileToProcess = new File(
getPath("SuppressionXpathRegressionReturnCount1.java")
);

final DefaultConfiguration moduleConfig =
createModuleConfig(ReturnCountCheck.class);

final String[] expectedViolation = {
"16:5: " + getCheckMessage(ReturnCountCheck.class,
ReturnCountCheck.MSG_KEY_VOID, 5, 1),
};

final List<String> expectedXpathQueries = Arrays.asList(
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount1']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testVoid']]",
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount1']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testVoid']]/MODIFIERS",
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount1']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testVoid']]/TYPE",
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount1']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testVoid']]/TYPE/LITERAL_VOID"
);

runVerifications(moduleConfig, fileToProcess, expectedViolation, expectedXpathQueries);
}

@Test
public void testTwo() throws Exception {
final File fileToProcess = new File(
getPath("SuppressionXpathRegressionReturnCount1.java")
);

final DefaultConfiguration moduleConfig =
createModuleConfig(ReturnCountCheck.class);

moduleConfig.addProperty("maxForVoid", "3");

final String[] expectedViolation = {
"16:5: " + getCheckMessage(ReturnCountCheck.class,
ReturnCountCheck.MSG_KEY_VOID, 5, 3),
};

final List<String> expectedXpathQueries = Arrays.asList(
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount1']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testVoid']]",
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount1']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testVoid']]/MODIFIERS",
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount1']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testVoid']]/TYPE",
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount1']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testVoid']]/TYPE/LITERAL_VOID"
);

runVerifications(moduleConfig, fileToProcess, expectedViolation, expectedXpathQueries);
}

@Test
public void testThree() throws Exception {
final File fileToProcess = new File(
getPath("SuppressionXpathRegressionReturnCount2.java")
);

final DefaultConfiguration moduleConfig =
createModuleConfig(ReturnCountCheck.class);

final String[] expectedViolation = {
"16:5: " + getCheckMessage(ReturnCountCheck.class,
ReturnCountCheck.MSG_KEY, 4, 2),
};

final List<String> expectedXpathQueries = Arrays.asList(
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount2']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testNonVoid']]",
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount2']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testNonVoid']]/MODIFIERS",
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount2']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testNonVoid']]/TYPE",
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount2']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testNonVoid']]/TYPE/LITERAL_BOOLEAN"
);

runVerifications(moduleConfig, fileToProcess, expectedViolation, expectedXpathQueries);
}

@Test
public void testFour() throws Exception {
final File fileToProcess = new File(
getPath("SuppressionXpathRegressionReturnCount2.java")
);

final DefaultConfiguration moduleConfig =
createModuleConfig(ReturnCountCheck.class);

moduleConfig.addProperty("max", "3");

final String[] expectedViolation = {
"16:5: " + getCheckMessage(ReturnCountCheck.class,
ReturnCountCheck.MSG_KEY, 4, 3),
};

final List<String> expectedXpathQueries = Arrays.asList(
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount2']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testNonVoid']]",
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount2']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testNonVoid']]/MODIFIERS",
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount2']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testNonVoid']]/TYPE",
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount2']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testNonVoid']]/TYPE/LITERAL_BOOLEAN"
);

runVerifications(moduleConfig, fileToProcess, expectedViolation, expectedXpathQueries);
}

@Test
public void testFive() throws Exception {
final File fileToProcess = new File(
getPath("SuppressionXpathRegressionReturnCount3.java")
);

final DefaultConfiguration moduleConfig =
createModuleConfig(ReturnCountCheck.class);

final String[] expectedViolation = {
"4:5: " + getCheckMessage(ReturnCountCheck.class,
ReturnCountCheck.MSG_KEY_VOID, 5, 1),
};

final List<String> expectedXpathQueries = Arrays.asList(
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount3']]"
+ "/OBJBLOCK/CTOR_DEF[./IDENT[@text='SuppressionXpathRegressionReturnCount3']]",
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount3']]"
+ "/OBJBLOCK/CTOR_DEF[./IDENT[@text='SuppressionXpathRegressionReturnCount3']]"
+ "/MODIFIERS",
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount3']]"
+ "/OBJBLOCK/CTOR_DEF/IDENT[@text='SuppressionXpathRegressionReturnCount3']"
);

runVerifications(moduleConfig, fileToProcess, expectedViolation, expectedXpathQueries);
}

@Test
public void testSix() throws Exception {
final File fileToProcess = new File(
getPath("SuppressionXpathRegressionReturnCount4.java")
);

final DefaultConfiguration moduleConfig =
createModuleConfig(ReturnCountCheck.class);

final String[] expectedViolation = {
"7:42: " + getCheckMessage(ReturnCountCheck.class,
ReturnCountCheck.MSG_KEY, 4, 2),
};

final List<String> expectedXpathQueries = List.of(
"/COMPILATION_UNIT/CLASS_DEF"
+ "[./IDENT[@text='SuppressionXpathRegressionReturnCount4']]"
+ "/OBJBLOCK/METHOD_DEF[./IDENT[@text='testLambda']]/SLIST"
+ "/VARIABLE_DEF[./IDENT[@text='a']]/ASSIGN/LAMBDA[./IDENT[@text='i']]"
);

runVerifications(moduleConfig, fileToProcess, expectedViolation, expectedXpathQueries);
}
}

@@ -0,0 +1,26 @@
package org.checkstyle.suppressionxpathfilter.returncount;

class SuppressionXpathRegressionReturnCount1 {
public boolean equals(Object obj) { // OK
int i = 1;
switch (i) {
case 1: return true;
case 2: return true;
case 3: return true;
case 4: return true;
case 5: return true;
case 6: return true;
}
return false;
}
void testVoid() { // warn
int i = 1;
switch(i) {
case 1: return;
case 2: return;
case 3: return;
case 4: return;
}
return;
}
}
@@ -0,0 +1,26 @@
package org.checkstyle.suppressionxpathfilter.returncount;

public class SuppressionXpathRegressionReturnCount2 {
public boolean equals(Object obj) { // OK
int i = 1;
switch (i) {
case 1: return true;
case 2: return true;
case 3: return true;
case 4: return true;
case 5: return true;
case 6: return true;
}
return false;
}
boolean testNonVoid() { // warn
int i = 1;
switch(i) {
case 1: return true;
case 2: return true;
case 3: return true;
}
return false;
}

}
@@ -0,0 +1,14 @@
package org.checkstyle.suppressionxpathfilter.returncount;

public class SuppressionXpathRegressionReturnCount3 {
SuppressionXpathRegressionReturnCount3() { // warn
int i = 1;
switch(i) {
case 1: return;
case 2: return;
case 3: return;
case 4: return;
}
return;
}
}
@@ -0,0 +1,16 @@
package org.checkstyle.suppressionxpathfilter.returncount;

import java.util.function.Function;

public class SuppressionXpathRegressionReturnCount4 {
void testLambda() {
Function<Integer, Boolean> a = i -> { // warn
switch(i) {
case 1: return true;
case 2: return true;
case 3: return true;
}
return false;
};
}
}
Expand Up @@ -120,7 +120,6 @@ public class XpathRegressionTest extends AbstractModuleTestSupport {
"ParameterAssignment",
"ParameterNumber",
"RedundantModifier",
"ReturnCount",
"SeparatorWrap",
"SimplifyBooleanExpression",
"StaticVariableName",
Expand Down

0 comments on commit c8ee5ba

Please sign in to comment.