use of com.cflint.config.CFLintPluginInfo in project CFLint by cflint.
the class TestCFTagUppercaseChecker method setUp.
@Before
public void setUp() throws Exception {
final CFLintConfig conf = new CFLintConfig();
PluginInfoRule pluginRule = new PluginInfoRule();
pluginRule.setName("CFTagCaseChecker");
conf.getRules().add(pluginRule);
PluginMessage pluginMessage = new PluginMessage("CFTAG_PREFERRED_CASE");
pluginMessage.setSeverity(Levels.ERROR);
pluginMessage.setMessageText("Tag <${variable}> should be written in lowercase or camelCase for consistency in code.");
pluginRule.getMessages().add(pluginMessage);
CFLintPluginInfo pluginInfo = new CFLintPluginInfo();
pluginInfo.getRules().add(pluginRule);
pluginRule.setClassName("CFTagCaseChecker");
pluginRule.addParameter("PreferCase", "upper");
cfBugs = new CFLintAPI(new ConfigBuilder(pluginInfo).include("CFTAG_PREFERRED_CASE").build());
cfBugs.setLogError(false);
}
use of com.cflint.config.CFLintPluginInfo in project CFLint by cflint.
the class TestCFTagLowercaseChecker method setUp.
@Before
public void setUp() throws Exception {
final CFLintConfig conf = new CFLintConfig();
PluginInfoRule pluginRule = new PluginInfoRule();
pluginRule.setName("CFTagCaseChecker");
conf.getRules().add(pluginRule);
PluginMessage pluginMessage = new PluginMessage("CFTAG_PREFERRED_CASE");
pluginMessage.setSeverity(Levels.ERROR);
pluginMessage.setMessageText("Tag <${variable}> should be written in lowercase or camelCase for consistency in code.");
pluginRule.getMessages().add(pluginMessage);
CFLintPluginInfo pluginInfo = new CFLintPluginInfo();
pluginInfo.getRules().add(pluginRule);
pluginRule.setClassName("CFTagCaseChecker");
pluginRule.addParameter("PreferCase", "lower");
cfBugs = new CFLintAPI(new ConfigBuilder(pluginInfo).include("CFTAG_PREFERRED_CASE").build());
cfBugs.setLogError(false);
}
use of com.cflint.config.CFLintPluginInfo in project CFLint by cflint.
the class TestCFCustomTagChecker method setUp.
@Before
public void setUp() throws Exception {
final CFLintConfig conf = new CFLintConfig();
final PluginInfoRule pluginRuleX = new PluginInfoRule();
pluginRuleX.setName("CFXTagChecker");
conf.getRules().add(pluginRuleX);
final PluginMessage pluginMessageX = new PluginMessage("AVOID_USING_MYLIB:CFCUSTOMTAG_TAG");
pluginMessageX.setSeverity(Levels.WARNING);
pluginMessageX.setMessageText("Avoid Leaving <${tagName}> tags in committed code. Debug information should be ommited from release code");
pluginRuleX.getMessages().add(pluginMessageX);
pluginRuleX.addParameter("tagName", ".*:cfcustomtag");
CFLintPluginInfo pluginInfo = new CFLintPluginInfo();
pluginInfo.getRules().add(pluginRuleX);
pluginRuleX.setClassName("CFXTagChecker");
cfBugs = new CFLintAPI(new ConfigBuilder(pluginInfo).include("AVOID_USING_MYLIB:CFCUSTOMTAG_TAG").build());
cfBugs.setLogError(false);
}
Aggregations