Additional JUnit tests for Model classes
[aai/babel.git] / src / test / java / org / onap / aai / babel / xml / generator / model / TestModel.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright (c) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Copyright (c) 2017-2019 European Software Marketing Ltd.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.aai.babel.xml.generator.model;
23
24 import static org.hamcrest.CoreMatchers.is;
25 import static org.hamcrest.CoreMatchers.nullValue;
26 import static org.junit.Assert.assertThat;
27
28 import java.io.IOException;
29 import org.junit.BeforeClass;
30 import org.junit.Test;
31 import org.onap.aai.babel.util.ArtifactTestUtils;
32
33 /**
34  * Direct tests of the Model abstract class (to improve code coverage). Not all methods are tested here. Some are
35  * covered by the tests of derived classes.
36  */
37 public class TestModel {
38
39     /**
40      * Load the Widget Configuration, including the type mappings and the UUID mappings.
41      *
42      * @throws IOException
43      *             if the mappings configuration cannot be loaded
44      */
45     @BeforeClass
46     public static void setup() throws IOException {
47         ArtifactTestUtils util = new ArtifactTestUtils();
48         util.loadWidgetToUuidMappings();
49         util.loadWidgetMappings();
50     }
51
52     @Test
53     public void testGetModels() {
54         assertThat(Model.getModelFor(null), is(nullValue()));
55         assertThat(Model.getModelFor(""), is(nullValue()));
56         assertThat(Model.getModelFor("any.unknown.type"), is(nullValue()));
57
58         assertMapping("org.openecomp.resource.vfc", WidgetType.valueOf("VSERVER"));
59         assertMapping("org.openecomp.resource.cp", WidgetType.valueOf("LINT"));
60         assertMapping("org.openecomp.cp", WidgetType.valueOf("LINT"));
61         assertMapping("org.openecomp.cp.some.suffix", WidgetType.valueOf("LINT"));
62         assertMapping("org.openecomp.resource.vl", WidgetType.valueOf("L3_NET"));
63         assertMapping("org.openecomp.resource.vf", WidgetType.valueOf("VF"));
64         assertMapping("org.openecomp.groups.vfmodule", WidgetType.valueOf("VFMODULE"));
65         assertMapping("org.openecomp.groups.VfModule", WidgetType.valueOf("VFMODULE"));
66         assertMapping("org.openecomp.resource.vfc.nodes.heat.cinder", WidgetType.valueOf("VOLUME"));
67         assertMapping("org.openecomp.nodes.PortMirroringConfiguration", "Configuration",
68                 WidgetType.valueOf("CONFIGURATION"));
69         assertMapping("any.string", "Configuration", WidgetType.valueOf("CONFIGURATION"));
70         assertMapping("org.openecomp.resource.cr.Kk1806Cr1", "CR", WidgetType.valueOf("CR"));
71         assertMapping("any.string", "CR", WidgetType.valueOf("CR"));
72
73         assertMapping("org.openecomp.resource.vfc", "an.unknown.type", WidgetType.valueOf("VSERVER"));
74     }
75
76     /**
77      * Test that there is no exception if processing a Model that has no metadata properties.
78      */
79     @Test
80     public void testNullIdentProperties() {
81         createTestModel().populateModelIdentificationInformation(null);
82     }
83
84     /**
85      * Test that an exception occurs if calling code passes an unsupported Widget Type value to the base implementation
86      * of the hasWidgetType() method.
87      */
88     @Test(expected = IllegalArgumentException.class)
89     public void testUnknownWidgetType() {
90         createTestModel().hasWidgetType(null);
91     }
92
93     /**
94      * Create any Model with a valid WidgetType, for method testing.
95      *
96      * @return a valid Model for testing purposes
97      */
98     private Model createTestModel() {
99         return new Resource(WidgetType.valueOf("VSERVER"), false);
100     }
101
102     /**
103      * Assert that the TOSCA type String is mapped to the expected Widget Type.
104      *
105      * @param toscaType
106      *            the TOSCA type or prefix
107      * @param widgetType
108      *            the type of Widget expected from the mappings
109      */
110     private void assertMapping(String toscaType, WidgetType widgetType) {
111         assertThat(Model.getModelFor(toscaType).getWidgetType(), is(widgetType));
112     }
113
114     /**
115      * Assert that the TOSCA metadata type is mapped to the expected Widget Type.
116      *
117      * @param toscaType
118      *            the name (or name prefix) of the TOSCA type
119      * @param metadataType
120      *            the type specified in the TOSCA metadata
121      * @param widgetType
122      *            the type of Widget expected from the mappings
123      */
124     private void assertMapping(String toscaType, String metadataType, WidgetType widgetType) {
125         assertThat(Model.getModelFor(toscaType, metadataType).getWidgetType(), is(widgetType));
126     }
127
128 }