Search in sources :

Example 51 with Configuration

use of com.puppycrawl.tools.checkstyle.api.Configuration in project checkstyle by checkstyle.

the class InterfaceTypeParameterNameTest method testInterfaceDefault.

@Test
public void testInterfaceDefault() throws Exception {
    final Configuration configuration = getCheckConfig("InterfaceTypeParameterName");
    final String format = configuration.getAttribute("format");
    final String[] expected = { "48:15: " + getCheckMessage(configuration.getMessages(), MSG_KEY, "Input", format), "76:25: " + getCheckMessage(configuration.getMessages(), MSG_KEY, "Request", format), "80:25: " + getCheckMessage(configuration.getMessages(), MSG_KEY, "TRequest", format) };
    final String filePath = getPath("InputInterfaceTypeParameterName.java");
    final Integer[] warnList = getLinesWithWarn(filePath);
    verify(configuration, filePath, expected, warnList);
}
Also used : Configuration(com.puppycrawl.tools.checkstyle.api.Configuration) Test(org.junit.Test)

Example 52 with Configuration

use of com.puppycrawl.tools.checkstyle.api.Configuration in project checkstyle by checkstyle.

the class AbbreviationAsWordInNameTest method abbreviationAsWordInNameTest.

@Test
public void abbreviationAsWordInNameTest() throws Exception {
    final int maxCapitalCount = 2;
    final String[] expected = { "50: " + getWarningMessage("newCustomerID", maxCapitalCount), "52: " + getWarningMessage("supportsIPv6OnIOS", maxCapitalCount), "54: " + getWarningMessage("XMLHTTPRequest", maxCapitalCount), "58: " + getWarningMessage("newCustomerID", maxCapitalCount), "60: " + getWarningMessage("supportsIPv6OnIOS", maxCapitalCount), "62: " + getWarningMessage("XMLHTTPRequest", maxCapitalCount), "67: " + getWarningMessage("newCustomerID", maxCapitalCount), "69: " + getWarningMessage("supportsIPv6OnIOS", maxCapitalCount), "71: " + getWarningMessage("XMLHTTPRequest", maxCapitalCount) };
    final String filePath = getPath("InputAbbreviationAsWordInTypeNameCheck.java");
    final Configuration checkConfig = getCheckConfig("AbbreviationAsWordInName");
    final Integer[] warnList = getLinesWithWarn(filePath);
    verify(checkConfig, filePath, expected, warnList);
}
Also used : Configuration(com.puppycrawl.tools.checkstyle.api.Configuration) Test(org.junit.Test)

Example 53 with Configuration

use of com.puppycrawl.tools.checkstyle.api.Configuration in project checkstyle by checkstyle.

the class OverloadMethodsDeclarationOrderTest method overloadMethodsTest.

@Test
public void overloadMethodsTest() throws Exception {
    final Class<OverloadMethodsDeclarationOrderCheck> clazz = OverloadMethodsDeclarationOrderCheck.class;
    final String messageKey = "overload.methods.declaration";
    final String[] expected = { "26: " + getCheckMessage(clazz, messageKey, 15), "54: " + getCheckMessage(clazz, messageKey, 43), "66: " + getCheckMessage(clazz, messageKey, 64), "109: " + getCheckMessage(clazz, messageKey, 98) };
    final Configuration checkConfig = getCheckConfig("OverloadMethodsDeclarationOrder");
    final String filePath = getPath("InputOverloadMethodsDeclarationOrder.java");
    final Integer[] warnList = getLinesWithWarn(filePath);
    verify(checkConfig, filePath, expected, warnList);
}
Also used : Configuration(com.puppycrawl.tools.checkstyle.api.Configuration) OverloadMethodsDeclarationOrderCheck(com.puppycrawl.tools.checkstyle.checks.coding.OverloadMethodsDeclarationOrderCheck) Test(org.junit.Test)

Example 54 with Configuration

use of com.puppycrawl.tools.checkstyle.api.Configuration in project checkstyle by checkstyle.

the class NeedBracesTest method needBracesTest.

@Test
public void needBracesTest() throws Exception {
    final Class<NeedBracesCheck> clazz = NeedBracesCheck.class;
    final String messageKey = "needBraces";
    final String[] expected = { "29: " + getCheckMessage(clazz, messageKey, "do"), "41: " + getCheckMessage(clazz, messageKey, "while"), "42: " + getCheckMessage(clazz, messageKey, "while"), "44: " + getCheckMessage(clazz, messageKey, "while"), "45: " + getCheckMessage(clazz, messageKey, "if"), "58: " + getCheckMessage(clazz, messageKey, "for"), "59: " + getCheckMessage(clazz, messageKey, "for"), "61: " + getCheckMessage(clazz, messageKey, "for"), "63: " + getCheckMessage(clazz, messageKey, "if"), "82: " + getCheckMessage(clazz, messageKey, "if"), "83: " + getCheckMessage(clazz, messageKey, "if"), "85: " + getCheckMessage(clazz, messageKey, "if"), "87: " + getCheckMessage(clazz, messageKey, "else"), "89: " + getCheckMessage(clazz, messageKey, "if"), "97: " + getCheckMessage(clazz, messageKey, "else"), "99: " + getCheckMessage(clazz, messageKey, "if"), "100: " + getCheckMessage(clazz, messageKey, "if"), "126: " + getCheckMessage(clazz, messageKey, "while"), "129: " + getCheckMessage(clazz, messageKey, "do"), "135: " + getCheckMessage(clazz, messageKey, "if"), "138: " + getCheckMessage(clazz, messageKey, "if"), "139: " + getCheckMessage(clazz, messageKey, "else"), "144: " + getCheckMessage(clazz, messageKey, "for"), "147: " + getCheckMessage(clazz, messageKey, "for"), "157: " + getCheckMessage(clazz, messageKey, "while"), "160: " + getCheckMessage(clazz, messageKey, "do"), "166: " + getCheckMessage(clazz, messageKey, "if"), "169: " + getCheckMessage(clazz, messageKey, "if"), "170: " + getCheckMessage(clazz, messageKey, "else"), "175: " + getCheckMessage(clazz, messageKey, "for"), "178: " + getCheckMessage(clazz, messageKey, "for"), "189: " + getCheckMessage(clazz, messageKey, "while"), "192: " + getCheckMessage(clazz, messageKey, "do"), "198: " + getCheckMessage(clazz, messageKey, "if"), "201: " + getCheckMessage(clazz, messageKey, "if"), "202: " + getCheckMessage(clazz, messageKey, "else"), "207: " + getCheckMessage(clazz, messageKey, "for"), "210: " + getCheckMessage(clazz, messageKey, "for") };
    final Configuration checkConfig = getCheckConfig("NeedBraces");
    final String filePath = getPath("InputNeedBraces.java");
    final Integer[] warnList = getLinesWithWarn(filePath);
    verify(checkConfig, filePath, expected, warnList);
}
Also used : NeedBracesCheck(com.puppycrawl.tools.checkstyle.checks.blocks.NeedBracesCheck) Configuration(com.puppycrawl.tools.checkstyle.api.Configuration) Test(org.junit.Test)

Example 55 with Configuration

use of com.puppycrawl.tools.checkstyle.api.Configuration in project checkstyle by checkstyle.

the class LeftCurlyTest method leftCurlyBracesTest.

@Test
public void leftCurlyBracesTest() throws Exception {
    final String[] expected = { "4:1: " + getCheckMessage(LeftCurlyCheck.class, MSG_KEY_LINE_PREVIOUS, "{", 1), "7:5: " + getCheckMessage(LeftCurlyCheck.class, MSG_KEY_LINE_PREVIOUS, "{", 5), "13:5: " + getCheckMessage(LeftCurlyCheck.class, MSG_KEY_LINE_PREVIOUS, "{", 5), "26:5: " + getCheckMessage(LeftCurlyCheck.class, MSG_KEY_LINE_PREVIOUS, "{", 5), "43:5: " + getCheckMessage(LeftCurlyCheck.class, MSG_KEY_LINE_PREVIOUS, "{", 5), "61:5: " + getCheckMessage(LeftCurlyCheck.class, MSG_KEY_LINE_PREVIOUS, "{", 5), "97:5: " + getCheckMessage(LeftCurlyCheck.class, MSG_KEY_LINE_PREVIOUS, "{", 5) };
    final Configuration checkConfig = getCheckConfig("LeftCurly");
    final String filePath = getPath("InputLeftCurlyBraces.java");
    final Integer[] warnList = getLinesWithWarn(filePath);
    verify(checkConfig, filePath, expected, warnList);
}
Also used : Configuration(com.puppycrawl.tools.checkstyle.api.Configuration) Test(org.junit.Test)

Aggregations

Configuration (com.puppycrawl.tools.checkstyle.api.Configuration)137 Test (org.junit.Test)127 PrepareForTest (org.powermock.core.classloader.annotations.PrepareForTest)21 DefaultConfiguration (com.puppycrawl.tools.checkstyle.DefaultConfiguration)16 Properties (java.util.Properties)13 CheckstyleException (com.puppycrawl.tools.checkstyle.api.CheckstyleException)9 File (java.io.File)9 Checker (com.puppycrawl.tools.checkstyle.Checker)5 PropertiesExpander (com.puppycrawl.tools.checkstyle.PropertiesExpander)4 OneTopLevelClassCheck (com.puppycrawl.tools.checkstyle.checks.design.OneTopLevelClassCheck)3 ArrayList (java.util.ArrayList)3 HashSet (java.util.HashSet)3 ModuleFactory (com.puppycrawl.tools.checkstyle.ModuleFactory)2 AuditListener (com.puppycrawl.tools.checkstyle.api.AuditListener)2 RootModule (com.puppycrawl.tools.checkstyle.api.RootModule)2 AnnotationLocationCheck (com.puppycrawl.tools.checkstyle.checks.annotation.AnnotationLocationCheck)2 EmptyLineSeparatorCheck (com.puppycrawl.tools.checkstyle.checks.whitespace.EmptyLineSeparatorCheck)2 MethodParamPadCheck (com.puppycrawl.tools.checkstyle.checks.whitespace.MethodParamPadCheck)2 FileInputStream (java.io.FileInputStream)2 IOException (java.io.IOException)2