use of org.drools.drl.parser.lang.dsl.DSLTokenizedMappingFile in project drools by kiegroup.
the class DSLMappingFileTest method testParseFileWithEscaptedBrackets.
@Test
public void testParseFileWithEscaptedBrackets() {
String file = "[when][]ATTRIBUTE \"{attr}\" IS IN \\[{list}\\]=Attribute( {attr} in ({list}) )";
try {
final Reader reader = new StringReader(file);
this.file = new DSLTokenizedMappingFile();
final boolean parsingResult = this.file.parseAndLoad(reader);
reader.close();
assertTrue(this.file.getErrors().toString(), parsingResult);
assertTrue(this.file.getErrors().isEmpty());
assertEquals(1, this.file.getMapping().getEntries().size());
DSLMappingEntry entry = (DSLMappingEntry) this.file.getMapping().getEntries().get(0);
assertEquals(DSLMappingEntry.CONDITION, entry.getSection());
assertEquals(DSLMappingEntry.EMPTY_METADATA, entry.getMetaData());
assertEquals("ATTRIBUTE \"{attr}\" IS IN \\[{list}\\]", entry.getMappingKey());
assertEquals("Attribute( {attr} in ({list}) )", entry.getMappingValue());
} catch (final IOException e) {
e.printStackTrace();
fail("Should not raise exception ");
}
}
use of org.drools.drl.parser.lang.dsl.DSLTokenizedMappingFile in project drools by kiegroup.
the class DefaultExpanderTest method testExpandKeyword.
@Test
public void testExpandKeyword() throws Exception {
DSLMappingFile file = new DSLTokenizedMappingFile();
String dsl = "[keyword]key {param}=Foo( attr=={param} )";
file.parseAndLoad(new StringReader(dsl));
assertEquals(0, file.getErrors().size());
DefaultExpander ex = new DefaultExpander();
ex.addDSLMapping(file.getMapping());
String source = "rule x" + NL + "when" + NL + " key 1 " + NL + " key 2 " + NL + "then" + NL + "end";
String drl = ex.expand(source);
System.out.println(drl);
assertTrue(drl.contains("attr==1"));
assertTrue(drl.contains("attr==2"));
// System.err.println(ex.expand( "rule 'x' " + NL + " when " + NL + " foo " + NL + " then " + NL + " end" ));
}
use of org.drools.drl.parser.lang.dsl.DSLTokenizedMappingFile in project drools by kiegroup.
the class DefaultExpanderTest method testLineNumberError.
@Test
public void testLineNumberError() throws Exception {
DSLMappingFile file = new DSLTokenizedMappingFile();
String dsl = "[when]foo=Foo()" + NL + "[then]bar {num}=baz({num});";
file.parseAndLoad(new StringReader(dsl));
DefaultExpander ex = new DefaultExpander();
ex.addDSLMapping(file.getMapping());
String source = "rule 'q'" + NL + "agenda-group 'x'" + NL + "when" + NL + " __ " + NL + "then" + NL + " bar 42" + NL + "\tgoober" + NL + "end";
ex.expand(source);
assertTrue(ex.hasErrors());
assertEquals(2, ex.getErrors().size());
ExpanderException err = (ExpanderException) ex.getErrors().get(0);
assertEquals(4, err.getLine());
err = (ExpanderException) ex.getErrors().get(1);
assertEquals(7, err.getLine());
}
use of org.drools.drl.parser.lang.dsl.DSLTokenizedMappingFile in project drools by kiegroup.
the class DefaultExpanderTest method testANTLRExpandWithKeywordClashes.
@Test
public void testANTLRExpandWithKeywordClashes() throws Exception {
DSLTokenizedMappingFile file = new DSLTokenizedMappingFile();
String dsl = "[when]Invoke rule executor=ruleExec: RuleExecutor()" + NL + "[then]Execute rule \"{id}\"=ruleExec.ExecuteSubRule( new Long({id}));";
file.parseAndLoad(new StringReader(dsl));
assertEquals(0, file.getErrors().size());
DefaultExpander ex = new DefaultExpander();
ex.addDSLMapping(file.getMapping());
String source = "package something;" + NL + NL + "rule \"1\"" + NL + "when" + NL + " Invoke rule executor" + NL + "then" + NL + " Execute rule \"5\"" + NL + "end";
String expected = "package something;" + NL + NL + "rule \"1\"" + NL + "when" + NL + " ruleExec: RuleExecutor()" + NL + "then" + NL + " ruleExec.ExecuteSubRule( new Long(5));" + NL + "end";
String drl = ex.expand(source);
// System.out.println("["+drl+"]" );
// System.out.println("["+expected+"]" );
assertFalse(ex.hasErrors());
assertEquals(expected, drl);
}
use of org.drools.drl.parser.lang.dsl.DSLTokenizedMappingFile in project drools by kiegroup.
the class DefaultExpanderTest method testEqualSignInTernaryOp.
@Test
public void testEqualSignInTernaryOp() throws Exception {
// BZ-1013960
String source = "declare Person" + NL + " age : int" + NL + " name : String" + NL + "end" + NL + "" + NL + "rule \"Your First Rule\"" + NL + " when" + NL + " There is a Person" + NL + " - with a negative age" + NL + " - with a positive age" + NL + " - with a zero age" + NL + " then" + NL + " print \"Your First Rule\"" + NL + "" + NL + "end" + NL;
String dsl = "[when][]There is an? {entity}=${entity!lc}: {entity!ucfirst}()" + NL + "[when][]- with an? {attr} greater than {amount}={attr} > {amount!num}" + NL + "[then]print \"{text}\"=System.out.println(\"{text}\");" + NL + "" + NL + "[when]- with a {what} {attr}={attr} {what!zero?==0/!=0}" + NL;
String expected = "declare Person" + NL + " age : int" + NL + " name : String" + NL + "end" + NL + "" + NL + "rule \"Your First Rule\"" + NL + " when" + NL + " $person: Person(age !=0, age !=0, age ==0)" + NL + " then" + NL + " System.out.println(\"Your First Rule\");" + NL + "" + NL + "end" + NL;
DSLTokenizedMappingFile file = new DSLTokenizedMappingFile();
file.parseAndLoad(new StringReader(dsl));
assertEquals(file.getErrors().toString(), 0, file.getErrors().size());
DefaultExpander ex = new DefaultExpander();
ex.addDSLMapping(file.getMapping());
String drl = ex.expand(source);
assertFalse(ex.hasErrors());
assertEquals(expected, drl);
}
Aggregations