use of org.kie.dmn.api.core.DMNResult in project drools by kiegroup.
the class DMNDecisionTableRuntimeTest method testDecisionTableOutputDMNTypeCollection_NOtypecheck.
@Test
public void testDecisionTableOutputDMNTypeCollection_NOtypecheck() {
// DROOLS-2359
// do NOT use the DMNRuntimeUtil as that enables typeSafe check override for runtime.
KieServices ks = KieServices.Factory.get();
final KieContainer kieContainer = KieHelper.getKieContainer(ks.newReleaseId("org.kie", "dmn-test-" + UUID.randomUUID(), "1.0"), ks.getResources().newClassPathResource("DecisionTableOutputDMNTypeCollection.dmn", this.getClass()));
DMNRuntime runtime = kieContainer.newKieSession().getKieRuntime(DMNRuntime.class);
DMNModel dmnModel = runtime.getModel("http://www.trisotech.com/dmn/definitions/_ae5d2033-c6d0-411f-a394-da33a70e5638", "Drawing 1");
assertThat(dmnModel, notNullValue());
assertThat(DMNRuntimeUtil.formatMessages(dmnModel.getMessages()), dmnModel.hasErrors(), is(false));
DMNContext context = DMNFactory.newContext();
context.set("selector", "asd");
DMNResult dmnResult = runtime.evaluateAll(dmnModel, context);
assertThat(DMNRuntimeUtil.formatMessages(dmnResult.getMessages()), dmnResult.hasErrors(), is(false));
DMNContext result = dmnResult.getContext();
assertThat(result.get("a decision"), is(Arrays.asList("abc", "xyz")));
}
use of org.kie.dmn.api.core.DMNResult in project drools by kiegroup.
the class DMNDecisionTableRuntimeTest method testDecisionTableMultipleResults.
@Test
public void testDecisionTableMultipleResults() {
final DMNRuntime runtime = DMNRuntimeUtil.createRuntime("car_damage_responsibility.dmn", this.getClass());
final DMNRuntimeEventListener listener = Mockito.mock(DMNRuntimeEventListener.class);
runtime.addListener(listener);
final DMNModel dmnModel = runtime.getModel("http://www.trisotech.com/definitions/_820611e9-c21c-47cd-8e52-5cba2be9f9cc", "Car Damage Responsibility");
assertThat(dmnModel, notNullValue());
final DMNContext context = DMNFactory.newContext();
context.set("Membership Level", "Silver");
context.set("Damage Types", "Body");
context.set("Responsible", "Driver");
final DMNResult dmnResult = runtime.evaluateAll(dmnModel, context);
assertThat(dmnResult.hasErrors(), is(false));
final DMNContext result = dmnResult.getContext();
assertThat((Map<String, Object>) result.get("Car Damage Responsibility"), hasEntry(is("EU Rent"), is(BigDecimal.valueOf(40))));
assertThat((Map<String, Object>) result.get("Car Damage Responsibility"), hasEntry(is("Renter"), is(BigDecimal.valueOf(60))));
assertThat(result.get("Payment method"), is("Check"));
final ArgumentCaptor<AfterEvaluateDecisionTableEvent> captor = ArgumentCaptor.forClass(AfterEvaluateDecisionTableEvent.class);
verify(listener, times(2)).afterEvaluateDecisionTable(captor.capture());
final AfterEvaluateDecisionTableEvent first = captor.getAllValues().get(0);
assertThat(first.getMatches(), is(Collections.singletonList(5)));
assertThat(first.getSelected(), is(Collections.singletonList(5)));
final AfterEvaluateDecisionTableEvent second = captor.getAllValues().get(1);
assertThat(second.getMatches(), is(Collections.singletonList(3)));
assertThat(second.getSelected(), is(Collections.singletonList(3)));
}
use of org.kie.dmn.api.core.DMNResult in project drools by kiegroup.
the class DMNDecisionTableRuntimeTest method testDTInputExpressionLocalXmlnsInference.
@Test
public void testDTInputExpressionLocalXmlnsInference() {
DMNRuntime runtime = DMNRuntimeUtil.createRuntime("drools1502-InputExpression.dmn", this.getClass());
DMNModel dmnModel = runtime.getModel("https://www.drools.org/kie-dmn/definitions", "definitions");
assertThat(dmnModel, notNullValue());
assertThat(DMNRuntimeUtil.formatMessages(dmnModel.getMessages()), dmnModel.hasErrors(), is(false));
DMNContext context = runtime.newContext();
context.set("MyInput", "a");
DMNResult dmnResult = runtime.evaluateAll(dmnModel, context);
assertThat(DMNRuntimeUtil.formatMessages(dmnResult.getMessages()), dmnResult.hasErrors(), is(false));
DMNContext result = dmnResult.getContext();
assertThat(result.get("MyDecision"), is("Decision taken"));
}
use of org.kie.dmn.api.core.DMNResult in project drools by kiegroup.
the class DMNDecisionTableRuntimeTest method testSimpleDecisionTableMultipleOutputWrongOutputType.
@Test
public void testSimpleDecisionTableMultipleOutputWrongOutputType() {
final DMNRuntime runtime = DMNRuntimeUtil.createRuntime("0004-simpletable-P-multiple-outputs-wrong-output.dmn", this.getClass());
final DMNModel dmnModel = runtime.getModel("https://github.com/kiegroup/kie-dmn", "0004-simpletable-P-multiple-outputs-wrong-output");
assertThat(dmnModel, notNullValue());
final DMNContext context = DMNFactory.newContext();
context.set("Age", BigDecimal.valueOf(18));
context.set("RiskCategory", "Medium");
context.set("isAffordable", true);
final DMNResult dmnResult = runtime.evaluateAll(dmnModel, context);
assertThat(dmnResult.hasErrors(), is(true));
assertThat(dmnResult.getMessages().stream().filter(message -> message.getFeelEvent().getSourceException() instanceof NullPointerException).count(), is(0L));
}
use of org.kie.dmn.api.core.DMNResult in project drools by kiegroup.
the class DMNDecisionTableRuntimeTest method testNullRelation.
@Test
public void testNullRelation() {
DMNRuntime runtime = DMNRuntimeUtil.createRuntime("nullrelation.dmn", getClass());
DMNModel model = runtime.getModel("http://www.trisotech.com/definitions/_946a2145-89ae-4197-88b4-40e6f88c8101", "Null in relations");
assertThat(model, notNullValue());
assertThat(DMNRuntimeUtil.formatMessages(model.getMessages()), model.hasErrors(), is(false));
DMNContext context = DMNFactory.newContext();
context.set("Value", "a3");
DMNResult result = runtime.evaluateByName(model, context, "Mapping");
assertThat(DMNRuntimeUtil.formatMessages(result.getMessages()), result.hasErrors(), is(false));
}
Aggregations