summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/aai/validation/modeldriven/parser/TestXmlModelParser.java
blob: 4ba7fe57cc0dad98da7855be66b90a45efeb3a28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright (c) 2018-2019 AT&T Intellectual Property. All rights reserved.
 * Copyright (c) 2018-2019 European Software Marketing Ltd.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.onap.aai.validation.modeldriven.parser;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;

import java.io.File;
import java.util.ArrayList;
import java.util.List;
import org.dom4j.Element;
import org.dom4j.Node;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;

public class TestXmlModelParser {

    static {
        System.setProperty("APP_HOME", ".");
    }

    private static final String CONNECTOR_MODEL_ID = "460c6de2-a92b-4e3b-9ba3-538ce782b2fa";
    private static final String MODEL_ID_ATTRIBUTE = "model-name-version-id";

    private Element modelElement;

    @Rule
    public ExpectedException exception = ExpectedException.none();

    @Before
    public void setUp() throws Exception {
        File modelFile = new File("src/test/resources/model-validation/model-parser/all-models.xml");
        Element modelsElement = XMLModelParser.parse(modelFile, false);
        modelElement = XMLModelParser.getModelElementWithId(modelsElement, MODEL_ID_ATTRIBUTE, CONNECTOR_MODEL_ID);
    }

    @Test
    public void testParseXmlModelFile() throws Exception {
        assertEquals("Invalid model element name.", "model", modelElement.getName());
    }

    @Test
    public void testGetAttributes() throws Exception {
        String attrsXPath = "metadata/metadatum/metaname";
        List<Node> attrNodes = XMLModelParser.getObjectsFromXPath(modelElement, attrsXPath);
        assertEquals("Unexpected number of attributes.", 2, attrNodes.size());

        List<String> validAttrs = new ArrayList<>();
        validAttrs.add("a");
        validAttrs.add("b");

        List<String> actualAttrs = new ArrayList<>();
        for (Node node : attrNodes) {
            actualAttrs.add(node.getText());
        }

        assertTrue("Unexpected attribute names.", validAttrs.containsAll(actualAttrs));
    }

    @Test
    public void testGetRelatedObjects() throws Exception {
        String relObjsXPath = "model-elements/model-element";
        List<Node> relatedNodes = XMLModelParser.getObjectsFromXPath(modelElement, relObjsXPath);
        assertEquals("Unexpected number of related objects.", 1, relatedNodes.size());

        Node relatedNode = relatedNodes.get(0).selectSingleNode("model-element-uuid");
        assertEquals("Unexpected related object UUID.", "71b825be-febf-45f7-b86a-ca0e3de19c90", relatedNode.getText());
    }

    @Test
    public void testModelValidationFailure() throws Exception {
        File modelFile = new File("src/test/resources/model-validation/model-parser/all-models.xml");

        assertNull("Validation failure should result in null being returned.", XMLModelParser.parse(modelFile, true));
    }
}