use of org.drools.compiler.lang.descr.PackageDescr in project drools by kiegroup.
the class RuleParserTest method testMultipleRules.
@Test
public void testMultipleRules() throws Exception {
final PackageDescr pkg = (PackageDescr) parseResource("compilationUnit", "multiple_rules.drl");
final List<RuleDescr> rules = pkg.getRules();
assertEquals(2, rules.size());
final RuleDescr rule0 = rules.get(0);
assertEquals("Like Stilton", rule0.getName());
final RuleDescr rule1 = rules.get(1);
assertEquals("Like Cheddar", rule1.getName());
// checkout the first rule
AndDescr lhs = rule1.getLhs();
assertNotNull(lhs);
assertEquals(1, lhs.getDescrs().size());
assertEqualsIgnoreWhitespace("System.out.println(\"I like \" + t);", (String) rule0.getConsequence());
// Check first pattern
PatternDescr first = (PatternDescr) lhs.getDescrs().get(0);
assertEquals("Cheese", first.getObjectType());
// checkout the second rule
lhs = rule1.getLhs();
assertNotNull(lhs);
assertEquals(1, lhs.getDescrs().size());
assertEqualsIgnoreWhitespace("System.out.println(\"I like \" + t);", (String) rule1.getConsequence());
// Check first pattern
first = (PatternDescr) lhs.getDescrs().get(0);
assertEquals("Cheese", first.getObjectType());
}
use of org.drools.compiler.lang.descr.PackageDescr in project drools by kiegroup.
the class RuleParserTest method testFromWithInlineListMethod.
@Test
public void testFromWithInlineListMethod() throws Exception {
String source = "rule XYZ \n" + " when \n" + " o: Order( ) \n" + " Number( ) from [1, 2, 3].sublist(1, 2) \n" + " then \n" + " System.err.println(\"Invalid customer id found!\"); \n" + " o.addError(\"Invalid customer id\"); \n" + "end \n";
PackageDescr pkg = (PackageDescr) parse("compilationUnit", source);
assertFalse(parser.getErrors().toString(), parser.hasErrors());
RuleDescr rule = (RuleDescr) pkg.getRules().get(0);
assertEquals("XYZ", rule.getName());
assertFalse(parser.hasErrors());
PatternDescr number = (PatternDescr) rule.getLhs().getDescrs().get(1);
assertEquals("[1, 2, 3].sublist(1, 2)", ((FromDescr) number.getSource()).getDataSource().toString());
}
use of org.drools.compiler.lang.descr.PackageDescr in project drools by kiegroup.
the class RuleParserTest method testRuleMetadata.
@Test
public void testRuleMetadata() throws Exception {
final PackageDescr pkg = (PackageDescr) parseResource("compilationUnit", "Rule_with_Metadata.drl");
assertFalse(parser.getErrors().toString(), parser.hasErrors());
// @fooAttribute(barValue)
// @fooAtt2(barVal2)
RuleDescr rule = pkg.getRules().get(0);
assertTrue(rule.getAnnotationNames().contains("fooMeta1"));
assertEquals("barVal1", rule.getAnnotation("fooMeta1").getValue());
assertTrue(rule.getAnnotationNames().contains("fooMeta2"));
assertEquals("barVal2", rule.getAnnotation("fooMeta2").getValue());
assertEqualsIgnoreWhitespace("System.out.println(\"Consequence\");", (String) rule.getConsequence());
}
use of org.drools.compiler.lang.descr.PackageDescr in project drools by kiegroup.
the class RuleParserTest method testPackageWithError2.
@Test
public void testPackageWithError2() throws Exception {
final String source = "package 12 12312 231";
final DrlParser parser = new DrlParser(LanguageLevelOption.DRL6);
final PackageDescr pkg = parser.parse(true, new StringReader(source));
assertTrue(parser.hasErrors());
assertEquals("", pkg.getName());
}
use of org.drools.compiler.lang.descr.PackageDescr in project drools by kiegroup.
the class RuleParserTest method testEmptyPattern.
@Test
public void testEmptyPattern() throws Exception {
PackageDescr pkg = (PackageDescr) parseResource("compilationUnit", "test_EmptyPattern.drl");
assertFalse(parser.getErrors().toString(), parser.hasErrors());
assertEquals(1, pkg.getRules().size());
final RuleDescr ruleDescr = (RuleDescr) pkg.getRules().get(0);
assertEquals("simple rule", ruleDescr.getName());
assertNotNull(ruleDescr.getLhs());
assertEquals(1, ruleDescr.getLhs().getDescrs().size());
final PatternDescr patternDescr = (PatternDescr) ruleDescr.getLhs().getDescrs().get(0);
assertEquals(0, // this
patternDescr.getConstraint().getDescrs().size());
assertEquals("Cheese", patternDescr.getObjectType());
}
Aggregations