Search in sources :

Example 56 with CFLintResult

use of com.cflint.api.CFLintResult in project CFLint by cflint.

the class TestCFBugs_ComponentNames method testLowercaseNameScript.

@Test
public void testLowercaseNameScript() throws CFLintScanException {
    final String scriptSrc = "component {\r\n" + "}";
    CFLintResult lintresult = cfBugs.scan(scriptSrc, "lowercase.cfc");
    final List<BugInfo> result = lintresult.getIssues().values().iterator().next();
    assertEquals(1, result.size());
    assertEquals("COMPONENT_INVALID_NAME", result.get(0).getMessageCode());
    assertEquals(1, result.get(0).getLine());
}
Also used : CFLintResult(com.cflint.api.CFLintResult) Test(org.junit.Test)

Example 57 with CFLintResult

use of com.cflint.api.CFLintResult in project CFLint by cflint.

the class TestCFBugs_ComponentNames method testUpercaseNameTag.

@Test
public void testUpercaseNameTag() throws CFLintScanException {
    final String tagSrc = "<cfcomponent>\r\n" + "</cfcomponent>";
    CFLintResult lintresult = cfBugs.scan(tagSrc, "UPPERCASE.cfc");
    final List<BugInfo> result = lintresult.getIssues().values().iterator().next();
    assertEquals(1, result.size());
    assertEquals("COMPONENT_ALLCAPS_NAME", result.get(0).getMessageCode());
    assertEquals(1, result.get(0).getLine());
}
Also used : CFLintResult(com.cflint.api.CFLintResult) Test(org.junit.Test)

Example 58 with CFLintResult

use of com.cflint.api.CFLintResult in project CFLint by cflint.

the class TestCFBugs_ComponentNames method invalidCharsInNameScript.

@Test
public void invalidCharsInNameScript() throws CFLintScanException {
    final String scriptSrc = "component {\r\n" + "}";
    CFLintResult lintresult = cfBugs.scan(scriptSrc, "Component$Name.cfc");
    final List<BugInfo> result = lintresult.getIssues().values().iterator().next();
    assertEquals(1, result.size());
    assertEquals("COMPONENT_INVALID_NAME", result.get(0).getMessageCode());
    assertEquals(1, result.get(0).getLine());
}
Also used : CFLintResult(com.cflint.api.CFLintResult) Test(org.junit.Test)

Example 59 with CFLintResult

use of com.cflint.api.CFLintResult in project CFLint by cflint.

the class TestCFBugs_ComponentNames method nameIsTemporyTag.

@Test
public void nameIsTemporyTag() throws CFLintScanException {
    final String tagSrc = "<cfcomponent>\r\n" + "</cfcomponent>";
    CFLintResult lintresult = cfBugs.scan(tagSrc, "Temp.cfc");
    final List<BugInfo> result = lintresult.getIssues().values().iterator().next();
    assertEquals(1, result.size());
    assertEquals("COMPONENT_IS_TEMPORARY", result.get(0).getMessageCode());
    assertEquals(1, result.get(0).getLine());
}
Also used : CFLintResult(com.cflint.api.CFLintResult) Test(org.junit.Test)

Example 60 with CFLintResult

use of com.cflint.api.CFLintResult in project CFLint by cflint.

the class TestCFBugs_ComponentNames method nameTooLongScript.

@Test
public void nameTooLongScript() throws CFLintScanException {
    final String scriptSrc = "component {\r\n" + "}";
    CFLintResult lintresult = cfBugs.scan(scriptSrc, "Componenthasaverylongcomponentname.cfc");
    final List<BugInfo> result = lintresult.getIssues().values().iterator().next();
    assertEquals(1, result.size());
    assertEquals("COMPONENT_TOO_LONG", result.get(0).getMessageCode());
    assertEquals(1, result.get(0).getLine());
}
Also used : CFLintResult(com.cflint.api.CFLintResult) Test(org.junit.Test)

Aggregations

CFLintResult (com.cflint.api.CFLintResult)298 Test (org.junit.Test)289 List (java.util.List)70 CFLintAPI (com.cflint.api.CFLintAPI)2 StringWriter (java.io.StringWriter)2 Ignore (org.junit.Ignore)2 CFLintConfiguration (com.cflint.config.CFLintConfiguration)1 CFLintConfigurationException (com.cflint.exception.CFLintConfigurationException)1 CFLintScanException (com.cflint.exception.CFLintScanException)1 MarshallerException (com.cflint.xml.MarshallerException)1 File (java.io.File)1 FileWriter (java.io.FileWriter)1 IOException (java.io.IOException)1 InputStreamReader (java.io.InputStreamReader)1 OutputStreamWriter (java.io.OutputStreamWriter)1 PrintWriter (java.io.PrintWriter)1 Writer (java.io.Writer)1 JAXBException (javax.xml.bind.JAXBException)1 TransformerException (javax.xml.transform.TransformerException)1