Search in sources :

Example 16 with Definitions

use of org.kie.dmn.model.v1_1.Definitions in project drools by kiegroup.

the class DMNXMLLoaderTest method testLoadingDecisionServices.

@Test
public void testLoadingDecisionServices() {
    final DMNMarshaller DMNMarshaller = DMNMarshallerFactory.newMarshallerWithExtensions(Arrays.asList(new DecisionServicesExtensionRegister()));
    final InputStream is = this.getClass().getResourceAsStream("0004-decision-services.dmn");
    final InputStreamReader isr = new InputStreamReader(is);
    final Definitions def = DMNMarshaller.unmarshal(isr);
    assertThat(def.getDecisionService().size(), is(2));
    DecisionService decisionService1 = def.getDecisionService().get(0);
    assertThat(decisionService1.getId(), is("_70386614-9838-420b-a2ae-ff901ada63fb"));
    assertThat(decisionService1.getName(), is("A Only Knowing B and C"));
    assertThat(decisionService1.getDescription(), is("Description of A (BC)"));
    assertThat(decisionService1.getOutputDecision().size(), is(1));
    assertThat(decisionService1.getEncapsulatedDecision().size(), is(0));
    assertThat(decisionService1.getInputDecision().size(), is(2));
    assertThat(decisionService1.getInputData().size(), is(0));
    assertThat(decisionService1.getOutputDecision().get(0).getHref(), is("#_c2b44706-d479-4ceb-bb74-73589d26dd04"));
    DecisionService decisionService2 = def.getDecisionService().get(1);
    assertThat(decisionService2.getId(), is("_4620ef13-248a-419e-bc68-6b601b725a03"));
    assertThat(decisionService2.getName(), is("A only as output knowing D and E"));
    assertThat(decisionService2.getOutputDecision().size(), is(1));
    assertThat(decisionService2.getEncapsulatedDecision().size(), is(2));
    assertThat(decisionService2.getInputDecision().size(), is(0));
    assertThat(decisionService2.getInputData().size(), is(2));
    assertThat(decisionService2.getInputData().get(0).getHref(), is("#_bcea16fb-6c19-4bde-b37d-73407002c064"));
    assertThat(decisionService2.getInputData().get(1).getHref(), is("#_207b9195-a441-47f2-9414-2fad64b463f9"));
}
Also used : DMNMarshaller(org.kie.dmn.api.marshalling.v1_1.DMNMarshaller) InputStreamReader(java.io.InputStreamReader) DecisionServicesExtensionRegister(org.kie.dmn.backend.marshalling.v1_1.xstream.extensions.DecisionServicesExtensionRegister) InputStream(java.io.InputStream) Definitions(org.kie.dmn.model.v1_1.Definitions) DecisionService(org.kie.dmn.model.v1_1.DecisionService) Test(org.junit.Test)

Example 17 with Definitions

use of org.kie.dmn.model.v1_1.Definitions in project drools by kiegroup.

the class DMNXMLLoaderTest method testLoadingDishDecision.

@Test
@Ignore("No unmarshaller implemented")
public void testLoadingDishDecision() {
    final DMNMarshaller DMNMarshaller = DMNMarshallerFactory.newDefaultMarshaller();
    final InputStream is = this.getClass().getResourceAsStream("/src/test/resources/dish-decision.xml");
    final InputStreamReader isr = new InputStreamReader(is);
    final Object o = DMNMarshaller.unmarshal(isr);
    final Definitions root = (Definitions) o;
    assertNotNull(root);
}
Also used : DMNMarshaller(org.kie.dmn.api.marshalling.v1_1.DMNMarshaller) InputStreamReader(java.io.InputStreamReader) InputStream(java.io.InputStream) Definitions(org.kie.dmn.model.v1_1.Definitions) Ignore(org.junit.Ignore) Test(org.junit.Test)

Example 18 with Definitions

use of org.kie.dmn.model.v1_1.Definitions in project drools by kiegroup.

the class DMNXMLLoaderTest method testLoadingWithNoDecisionServices.

@Test
public void testLoadingWithNoDecisionServices() {
    final DMNMarshaller DMNMarshaller = DMNMarshallerFactory.newMarshallerWithExtensions(Arrays.asList(new DecisionServicesExtensionRegister()));
    final InputStream is = this.getClass().getResourceAsStream("0001-input-data-string.dmn");
    final InputStreamReader isr = new InputStreamReader(is);
    final Definitions def = DMNMarshaller.unmarshal(isr);
    // check if No DecisionServices in extended v1.1 does not NPE.
    assertThat(def.getDecisionService().size(), is(0));
}
Also used : DMNMarshaller(org.kie.dmn.api.marshalling.v1_1.DMNMarshaller) InputStreamReader(java.io.InputStreamReader) DecisionServicesExtensionRegister(org.kie.dmn.backend.marshalling.v1_1.xstream.extensions.DecisionServicesExtensionRegister) InputStream(java.io.InputStream) Definitions(org.kie.dmn.model.v1_1.Definitions) Test(org.junit.Test)

Example 19 with Definitions

use of org.kie.dmn.model.v1_1.Definitions in project drools by kiegroup.

the class DMNXMLLoaderTest method test0004_multiple_extensions.

@Test
public void test0004_multiple_extensions() throws Exception {
    DMNMarshaller marshaller = DMNMarshallerFactory.newMarshallerWithExtensions(Arrays.asList(new DecisionServicesExtensionRegister()));
    final InputStream is = this.getClass().getResourceAsStream("0004-decision-services_multiple_extensions.dmn");
    final InputStreamReader isr = new InputStreamReader(is);
    final Definitions def = marshaller.unmarshal(isr);
    assertThat(def.getExtensionElements().getAny().size(), is(1));
// if arrived here, means it did not fail with exception while trying to unmarshall unknown rss extension element, hence it just skipped it.
}
Also used : DMNMarshaller(org.kie.dmn.api.marshalling.v1_1.DMNMarshaller) InputStreamReader(java.io.InputStreamReader) DecisionServicesExtensionRegister(org.kie.dmn.backend.marshalling.v1_1.xstream.extensions.DecisionServicesExtensionRegister) InputStream(java.io.InputStream) Definitions(org.kie.dmn.model.v1_1.Definitions) Test(org.junit.Test)

Example 20 with Definitions

use of org.kie.dmn.model.v1_1.Definitions in project drools by kiegroup.

the class UnmarshalMarshalTest method testRoundTrip.

public void testRoundTrip(String subdir, String xmlfile, DMNMarshaller marshaller) throws Exception {
    File baseOutputDir = new File("target/test-xmlunit/");
    File testClassesBaseDir = new File("target/test-classes/");
    File inputXMLFile = new File(testClassesBaseDir, subdir + xmlfile);
    FileInputStream fis = new FileInputStream(inputXMLFile);
    Definitions unmarshal = marshaller.unmarshal(new InputStreamReader(fis));
    Validator v = Validator.forLanguage(Languages.W3C_XML_SCHEMA_NS_URI);
    v.setSchemaSource(new StreamSource(this.getClass().getResource("/dmn.xsd").getFile()));
    ValidationResult validateInputResult = v.validateInstance(new StreamSource(inputXMLFile));
    if (!validateInputResult.isValid()) {
        for (ValidationProblem p : validateInputResult.getProblems()) {
            System.err.println(p);
        }
    }
    assertTrue(validateInputResult.isValid());
    final File subdirFile = new File(baseOutputDir, subdir);
    if (!subdirFile.mkdirs()) {
        logger.warn("mkdirs() failed for File: " + subdirFile.getAbsolutePath() + "!");
    }
    FileOutputStream sourceFos = new FileOutputStream(new File(baseOutputDir, subdir + "a." + xmlfile));
    Files.copy(new File(testClassesBaseDir, subdir + xmlfile).toPath(), sourceFos);
    sourceFos.flush();
    sourceFos.close();
    System.out.println(marshaller.marshal(unmarshal));
    File outputXMLFile = new File(baseOutputDir, subdir + "b." + xmlfile);
    try (FileWriter targetFos = new FileWriter(outputXMLFile)) {
        marshaller.marshal(unmarshal, targetFos);
    }
    // Should also validate output XML:
    ValidationResult validateOutputResult = v.validateInstance(new StreamSource(outputXMLFile));
    if (!validateOutputResult.isValid()) {
        for (ValidationProblem p : validateOutputResult.getProblems()) {
            System.err.println(p);
        }
    }
    assertTrue(validateOutputResult.isValid());
    System.out.println("\n---\nDefault XMLUnit comparison:");
    Source control = Input.fromFile(inputXMLFile).build();
    Source test = Input.fromFile(outputXMLFile).build();
    Diff allDiffsSimilarAndDifferent = DiffBuilder.compare(control).withTest(test).build();
    allDiffsSimilarAndDifferent.getDifferences().forEach(System.out::println);
    System.out.println("XMLUnit comparison with customized similarity for defaults:");
    // in the following a manual DifferenceEvaluator is needed until XMLUnit is configured for properly parsing the XSD linked inside the XML,
    // in order to detect the optional+defaultvalue attributes of xml element which might be implicit in source-test, and explicit in test-serialized.
    /*
         * $ grep -Eo "<xsd:attribute name=\\\"([^\\\"]*)\\\" type=\\\"([^\\\"]*)\\\" use=\\\"optional\\\" default=\\\"([^\\\"])*\\\"" dmn.xsd 
<xsd:attribute name="expressionLanguage" type="xsd:anyURI" use="optional" default="http://www.omg.org/spec/FEEL/20140401"
<xsd:attribute name="typeLanguage" type="xsd:anyURI" use="optional" default="http://www.omg.org/spec/FEEL/20140401"
<xsd:attribute name="isCollection" type="xsd:boolean" use="optional" default="false"
<xsd:attribute name="hitPolicy" type="tHitPolicy" use="optional" default="UNIQUE"
<xsd:attribute name="preferredOrientation" type="tDecisionTableOrientation" use="optional" default="Rule-as-Row"

         */
    Set<QName> attrWhichCanDefault = new HashSet<QName>();
    attrWhichCanDefault.addAll(Arrays.asList(new QName[] { new QName("expressionLanguage"), new QName("typeLanguage"), new QName("isCollection"), new QName("hitPolicy"), new QName("preferredOrientation") }));
    Set<String> nodeHavingDefaultableAttr = new HashSet<>();
    nodeHavingDefaultableAttr.addAll(Arrays.asList(new String[] { "definitions", "decisionTable", "itemDefinition", "itemComponent" }));
    Diff checkSimilar = DiffBuilder.compare(control).withTest(test).withDifferenceEvaluator(DifferenceEvaluators.chain(DifferenceEvaluators.Default, ((comparison, outcome) -> {
        if (outcome == ComparisonResult.DIFFERENT && comparison.getType() == ComparisonType.ELEMENT_NUM_ATTRIBUTES) {
            if (comparison.getControlDetails().getTarget().getNodeName().equals(comparison.getTestDetails().getTarget().getNodeName()) && nodeHavingDefaultableAttr.contains(safeStripDMNPRefix(comparison.getControlDetails().getTarget()))) {
                return ComparisonResult.SIMILAR;
            }
        }
        if (outcome == ComparisonResult.DIFFERENT && comparison.getType() == ComparisonType.ATTR_NAME_LOOKUP) {
            boolean testIsDefaulableAttribute = false;
            QName whichDefaultableAttr = null;
            if (comparison.getControlDetails().getValue() == null && attrWhichCanDefault.contains(comparison.getTestDetails().getValue())) {
                for (QName a : attrWhichCanDefault) {
                    boolean check = comparison.getTestDetails().getXPath().endsWith("@" + a);
                    if (check) {
                        testIsDefaulableAttribute = true;
                        whichDefaultableAttr = a;
                        continue;
                    }
                }
            }
            if (testIsDefaulableAttribute) {
                if (comparison.getTestDetails().getXPath().equals(comparison.getControlDetails().getXPath() + "/@" + whichDefaultableAttr)) {
                    // TODO missing to check the explicited option attribute has value set to the actual default value.
                    return ComparisonResult.SIMILAR;
                }
            }
        }
        return outcome;
    }))).ignoreWhitespace().checkForSimilar().build();
    checkSimilar.getDifferences().forEach(System.err::println);
    if (!checkSimilar.getDifferences().iterator().hasNext()) {
        System.out.println("[ EMPTY - no diffs using customized similarity ]");
    }
    assertFalse("XML are NOT similar: " + checkSimilar.toString(), checkSimilar.hasDifferences());
}
Also used : Arrays(java.util.Arrays) Diff(org.xmlunit.diff.Diff) StreamSource(javax.xml.transform.stream.StreamSource) ValidationResult(org.xmlunit.validation.ValidationResult) LoggerFactory(org.slf4j.LoggerFactory) DMNMarshaller(org.kie.dmn.api.marshalling.v1_1.DMNMarshaller) ComparisonResult(org.xmlunit.diff.ComparisonResult) Source(javax.xml.transform.Source) MyTestRegister(org.kie.dmn.backend.marshalling.v1_1.extensions.MyTestRegister) HashSet(java.util.HashSet) Node(org.w3c.dom.Node) Assert.fail(org.junit.Assert.fail) Logger(org.slf4j.Logger) DMNModelInstrumentedBase(org.kie.dmn.model.v1_1.DMNModelInstrumentedBase) Files(java.nio.file.Files) DiffBuilder(org.xmlunit.builder.DiffBuilder) DifferenceEvaluators(org.xmlunit.diff.DifferenceEvaluators) FileWriter(java.io.FileWriter) FileOutputStream(java.io.FileOutputStream) Set(java.util.Set) Assert.assertTrue(org.junit.Assert.assertTrue) Test(org.junit.Test) FileInputStream(java.io.FileInputStream) Input(org.xmlunit.builder.Input) InputStreamReader(java.io.InputStreamReader) File(java.io.File) Languages(org.xmlunit.validation.Languages) ValidationProblem(org.xmlunit.validation.ValidationProblem) Definitions(org.kie.dmn.model.v1_1.Definitions) Ignore(org.junit.Ignore) Assert.assertFalse(org.junit.Assert.assertFalse) DecisionServicesExtensionRegister(org.kie.dmn.backend.marshalling.v1_1.xstream.extensions.DecisionServicesExtensionRegister) QName(javax.xml.namespace.QName) ComparisonType(org.xmlunit.diff.ComparisonType) Validator(org.xmlunit.validation.Validator) InputStreamReader(java.io.InputStreamReader) Diff(org.xmlunit.diff.Diff) QName(javax.xml.namespace.QName) Definitions(org.kie.dmn.model.v1_1.Definitions) StreamSource(javax.xml.transform.stream.StreamSource) FileWriter(java.io.FileWriter) ValidationProblem(org.xmlunit.validation.ValidationProblem) ValidationResult(org.xmlunit.validation.ValidationResult) FileInputStream(java.io.FileInputStream) StreamSource(javax.xml.transform.stream.StreamSource) Source(javax.xml.transform.Source) FileOutputStream(java.io.FileOutputStream) File(java.io.File) Validator(org.xmlunit.validation.Validator) HashSet(java.util.HashSet)

Aggregations

Test (org.junit.Test)21 Definitions (org.kie.dmn.model.v1_1.Definitions)21 DMNModel (org.kie.dmn.api.core.DMNModel)15 Ignore (org.junit.Ignore)13 DMNMessage (org.kie.dmn.api.core.DMNMessage)13 DMNRuntime (org.kie.dmn.api.core.DMNRuntime)12 ArrayList (java.util.ArrayList)10 ItemDefinition (org.kie.dmn.model.v1_1.ItemDefinition)10 Arrays (java.util.Arrays)9 List (java.util.List)9 Collectors (java.util.stream.Collectors)9 Assert.assertFalse (org.junit.Assert.assertFalse)9 Assert.assertTrue (org.junit.Assert.assertTrue)9 BigDecimal (java.math.BigDecimal)8 Duration (java.time.Duration)8 LocalDate (java.time.LocalDate)8 LocalTime (java.time.LocalTime)8 OffsetTime (java.time.OffsetTime)8 Period (java.time.Period)8 ZoneOffset (java.time.ZoneOffset)8