use of org.drools.compiler.lang.dsl.DSLMappingEntry in project drools by kiegroup.
the class DSLMappingFileTest method testParseFileWithEscaptedCurlyBrackets.
@Test
public void testParseFileWithEscaptedCurlyBrackets() {
String file = "[consequence][$policy]Add surcharge {surcharge} to Policy=modify(policy) \\{price = {surcharge}\\}";
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.CONSEQUENCE, entry.getSection());
assertEquals("$policy", entry.getMetaData().toString());
assertEquals("Add surcharge {surcharge} to Policy", entry.getMappingKey());
assertEquals("modify(policy) \\{price = {surcharge}\\}", entry.getMappingValue());
String input = "rule x" + NL + "when" + NL + "then" + NL + "Add surcharge 300 to Policy" + NL + "end" + NL + "";
String expected = "rule x" + NL + "when" + NL + "then" + NL + "modify(policy) {price = 300}" + NL + "end" + NL + "";
DefaultExpander de = new DefaultExpander();
de.addDSLMapping(this.file.getMapping());
final String result = de.expand(input);
// String result = entry.getKeyPattern().matcher( input ).replaceAll( entry.getValuePattern() );
assertEquals(expected, result);
} catch (final IOException e) {
e.printStackTrace();
fail("Should not raise exception ");
}
}
use of org.drools.compiler.lang.dsl.DSLMappingEntry in project drools by kiegroup.
the class DSLMappingFileTest method testParseFileWithEscaptedEquals.
@Test
@Ignore
public void testParseFileWithEscaptedEquals() {
String file = "[when][]something:\\={value}=Attribute( something == \"{value}\" )";
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("something:={value}", entry.getMappingKey());
assertEquals("Attribute( something == \"{value}\" )", entry.getMappingValue());
} catch (final IOException e) {
e.printStackTrace();
fail("Should not raise exception ");
}
}
use of org.drools.compiler.lang.dsl.DSLMappingEntry in project drools-wb by kiegroup.
the class DslFileIndexer method fillIndexBuilder.
@Override
public DefaultIndexBuilder fillIndexBuilder(final Path path) throws Exception {
final List<String> lhs = new ArrayList<String>();
final List<String> rhs = new ArrayList<String>();
final String dsl = ioService.readAllString(path);
// Construct a dummy DRL file to parse index elements
final DSLTokenizedMappingFile dslLoader = new DSLTokenizedMappingFile();
if (dslLoader.parseAndLoad(new StringReader(dsl))) {
DSLMapping dslMapping = dslLoader.getMapping();
for (DSLMappingEntry e : dslMapping.getEntries()) {
switch(e.getSection()) {
case CONDITION:
lhs.add(e.getValuePattern());
break;
case CONSEQUENCE:
rhs.add(e.getValuePattern());
break;
default:
}
}
final String drl = makeDrl(path, lhs, rhs);
return fillDrlIndexBuilder(path, drl);
}
return null;
}
Aggregations