use of org.kie.dmn.api.core.FEELPropertyAccessible in project drools by kiegroup.
the class DMN13specificTest method testDMNv1_3_ch11_asSpecInputDataValues.
@Test
public void testDMNv1_3_ch11_asSpecInputDataValues() {
testName = "testDMNv1_3_ch11_asSpecInputDataValues";
final DMNRuntime runtime = createRuntimeWithAdditionalResources("Chapter 11 Example.dmn", this.getClass(), "Financial.dmn");
final DMNModel dmnModel = runtime.getModel("http://www.trisotech.com/definitions/_9d01a0c4-f529-4ad8-ad8e-ec5fb5d96ad4", "Chapter 11 Example");
assertThat(dmnModel, notNullValue());
assertThat(DMNRuntimeUtil.formatMessages(dmnModel.getMessages()), dmnModel.hasErrors(), is(false));
final DMNContext context = DMNFactory.newContext();
context.set("Applicant data", mapOf(entry("Age", new BigDecimal(51)), // typo is present in DMNv1.3
entry("MartitalStatus", "M"), entry("EmploymentStatus", "EMPLOYED"), entry("ExistingCustomer", false), entry("Monthly", mapOf(entry("Income", new BigDecimal(10_000)), entry("Repayments", new BigDecimal(2_500)), entry("Expenses", new BigDecimal(3_000))))));
context.set("Bureau data", mapOf(entry("Bankrupt", false), entry("CreditScore", new BigDecimal(600))));
context.set("Requested product", mapOf(entry("ProductType", "STANDARD LOAN"), entry("Rate", new BigDecimal(0.08)), entry("Term", new BigDecimal(36)), entry("Amount", new BigDecimal(100_000))));
context.set("Supporting documents", null);
final DMNResult dmnResult = evaluateModel(runtime, dmnModel, context);
LOG.debug("{}", dmnResult);
assertThat(DMNRuntimeUtil.formatMessages(dmnResult.getMessages()), dmnResult.hasErrors(), is(false));
final DMNContext result = dmnResult.getContext();
assertThat(result.get("Strategy"), is("THROUGH"));
assertThat(result.get("Routing"), is("ACCEPT"));
if (isTypeSafe()) {
FEELPropertyAccessible outputSet = ((DMNContextFPAImpl) dmnResult.getContext()).getFpa();
Map<String, Object> allProperties = outputSet.allFEELProperties();
assertThat(allProperties.get("Strategy"), is("THROUGH"));
assertThat(allProperties.get("Routing"), is("ACCEPT"));
}
}
use of org.kie.dmn.api.core.FEELPropertyAccessible in project drools by kiegroup.
the class DMNRuntimeTypesTest method testListBasic_LOVerror.
@Test
public void testListBasic_LOVerror() {
final DMNRuntime runtime = createRuntime("listBasic.dmn", this.getClass());
final DMNModel dmnModel = runtime.getModel("https://kiegroup.org/dmn/_B84B17F3-3E84-4DED-996E-AA630A6BF9C4", "new-file");
assertThat(dmnModel, notNullValue());
assertThat(DMNRuntimeUtil.formatMessages(dmnModel.getMessages()), dmnModel.hasErrors(), is(false));
final DMNContext context = DMNFactory.newContext();
context.set("listNumber", Arrays.asList(1, 2, 3));
// fails allowedValues
context.set("vowel", "x");
// fails allowedValues of the inner type
context.set("listVowel", Arrays.asList("a", "x"));
// fails allowedValues
context.set("justA", "e");
// fails allowedValues of the inner type
context.set("listOfA", Arrays.asList("e"));
final DMNResult dmnResult = evaluateModel(runtime, dmnModel, context);
LOG.debug("{}", dmnResult);
assertThat(DMNRuntimeUtil.formatMessages(dmnResult.getMessages()), dmnResult.hasErrors(), is(true));
assertThat(dmnResult.getDecisionResultByName("DecisionListNumber").getResult(), is(new BigDecimal(3)));
assertThat(dmnResult.getDecisionResultByName("DecisionVowel").getEvaluationStatus(), not(DecisionEvaluationStatus.SUCCEEDED));
assertThat(dmnResult.getDecisionResultByName("DecisionListVowel").getEvaluationStatus(), not(DecisionEvaluationStatus.SUCCEEDED));
assertThat(dmnResult.getDecisionResultByName("DecisionJustA").getEvaluationStatus(), not(DecisionEvaluationStatus.SUCCEEDED));
assertThat(dmnResult.getDecisionResultByName("DecisionListOfA").getEvaluationStatus(), not(DecisionEvaluationStatus.SUCCEEDED));
if (isTypeSafe()) {
FEELPropertyAccessible outputSet = ((DMNContextFPAImpl) dmnResult.getContext()).getFpa();
Map<String, Object> allProperties = outputSet.allFEELProperties();
assertThat(allProperties.get("DecisionListNumber"), is(new BigDecimal(3)));
assertThat(allProperties.get("DecisionVowel"), nullValue());
assertThat(allProperties.get("DecisionListVowel"), nullValue());
assertThat(allProperties.get("DecisionJustA"), nullValue());
assertThat(allProperties.get("DecisionListOfA"), nullValue());
}
}
use of org.kie.dmn.api.core.FEELPropertyAccessible in project drools by kiegroup.
the class DMNRuntimeTypesTest method testOneOfEachType.
@Test
public void testOneOfEachType() throws Exception {
final DMNRuntime runtime = createRuntime("OneOfEachType.dmn", this.getClass());
final DMNModel dmnModel = runtime.getModel("http://www.trisotech.com/definitions/_4f5608e9-4d74-4c22-a47e-ab657257fc9c", "OneOfEachType");
assertThat(dmnModel, notNullValue());
assertThat(DMNRuntimeUtil.formatMessages(dmnModel.getMessages()), dmnModel.hasErrors(), is(false));
DMNContext context = DMNFactory.newContext();
if (!isTypeSafe()) {
context.set("InputString", "John Doe");
context.set("InputNumber", BigDecimal.ONE);
context.set("InputBoolean", true);
context.set("InputDTDuration", Duration.parse("P1D"));
context.set("InputYMDuration", Period.parse("P1M"));
context.set("InputDateAndTime", LocalDateTime.of(2020, 4, 2, 9, 0));
context.set("InputDate", LocalDate.of(2020, 4, 2));
context.set("InputTime", LocalTime.of(9, 0));
} else {
JsonMapper mapper = JsonMapper.builder().addModule(new JavaTimeModule()).build();
final String JSON = "{\n" + " \"InputBoolean\": true,\n" + " \"InputDTDuration\": \"P1D\",\n" + " \"InputDate\": \"2020-04-02\",\n" + " \"InputDateAndTime\": \"2020-04-02T09:00:00\",\n" + " \"InputNumber\": 1,\n" + " \"InputString\": \"John Doe\",\n" + " \"InputTime\": \"09:00\",\n" + " \"InputYMDuration\": \"P1M\"\n" + "}";
Class<?> inputSetClass = getStronglyClassByName(dmnModel, "InputSet");
FEELPropertyAccessible inputSet = (FEELPropertyAccessible) mapper.readValue(JSON, inputSetClass);
context = new DMNContextFPAImpl(inputSet);
}
final DMNResult dmnResult = evaluateModel(runtime, dmnModel, context);
LOG.debug("{}", dmnResult);
assertThat(DMNRuntimeUtil.formatMessages(dmnResult.getMessages()), dmnResult.hasErrors(), is(false));
assertThat(dmnResult.getDecisionResultByName("DecisionString").getResult(), is("Hello, John Doe"));
assertThat(dmnResult.getDecisionResultByName("DecisionNumber").getResult(), is(new BigDecimal(2)));
assertThat(dmnResult.getDecisionResultByName("DecisionBoolean").getResult(), is(false));
assertThat(dmnResult.getDecisionResultByName("DecisionDTDuration").getResult(), is(Duration.parse("P2D")));
assertThat(dmnResult.getDecisionResultByName("DecisionYMDuration").getResult(), is(ComparablePeriod.parse("P2M")));
assertThat(dmnResult.getDecisionResultByName("DecisionDateAndTime").getResult(), is(LocalDateTime.of(2020, 4, 2, 10, 0)));
assertThat(dmnResult.getDecisionResultByName("DecisionDate").getResult(), is(LocalDate.of(2020, 4, 3)));
assertThat(dmnResult.getDecisionResultByName("DecisionTime").getResult(), is(LocalTime.of(10, 0)));
if (isTypeSafe()) {
FEELPropertyAccessible outputSet = ((DMNContextFPAImpl) dmnResult.getContext()).getFpa();
Map<String, Object> allProperties = outputSet.allFEELProperties();
assertThat(allProperties.get("DecisionString"), is("Hello, John Doe"));
assertThat(allProperties.get("DecisionNumber"), is(new BigDecimal(2)));
assertThat(allProperties.get("DecisionBoolean"), is(false));
assertThat(allProperties.get("DecisionDTDuration"), is(Duration.parse("P2D")));
assertThat(allProperties.get("DecisionYMDuration"), is(ComparablePeriod.parse("P2M")));
assertThat(allProperties.get("DecisionDateAndTime"), is(LocalDateTime.of(2020, 4, 2, 10, 0)));
assertThat(allProperties.get("DecisionDate"), is(LocalDate.of(2020, 4, 3)));
assertThat(allProperties.get("DecisionTime"), is(LocalTime.of(10, 0)));
}
}
use of org.kie.dmn.api.core.FEELPropertyAccessible in project drools by kiegroup.
the class DMNRuntimeTypesTest method testFixInnerComposite.
@Test
public void testFixInnerComposite() {
final DMNRuntime runtime = createRuntime("fixInnerComposite.dmn", this.getClass());
final DMNModel dmnModel = runtime.getModel("https://kiegroup.org/dmn/_E82058C1-27D3-44F3-B1B3-4C02D17B7A05", "new-file");
assertThat(dmnModel, notNullValue());
assertThat(DMNRuntimeUtil.formatMessages(dmnModel.getMessages()), dmnModel.hasErrors(), is(false));
final DMNContext context = DMNFactory.newContext();
Map<String, Object> employee = mapOf(entry("Name", "John Doe"), entry("Marital Status", "S"));
context.set("InputData-1", employee);
final DMNResult dmnResult = evaluateModel(runtime, dmnModel, context);
LOG.debug("{}", dmnResult);
assertThat(DMNRuntimeUtil.formatMessages(dmnResult.getMessages()), dmnResult.hasErrors(), is(false));
assertThat(dmnResult.getDecisionResultByName("Decision-1").getResult(), is("John Doe is S"));
if (isTypeSafe()) {
FEELPropertyAccessible outputSet = ((DMNContextFPAImpl) dmnResult.getContext()).getFpa();
Map<String, Object> allProperties = outputSet.allFEELProperties();
assertThat(allProperties.get("Decision-1"), is("John Doe is S"));
}
}
Aggregations