Reimplement Widget.Type enum class
[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      * Assert that the TOSCA type String is mapped to the expected Widget Type.
78      * 
79      * @param toscaType
80      *            the TOSCA type or prefix
81      * @param widgetType
82      *            the type of Widget expected from the mappings
83      */
84     private void assertMapping(String toscaType, WidgetType widgetType) {
85         assertThat(Model.getModelFor(toscaType).getWidgetType(), is(widgetType));
86     }
87
88     /**
89      * Assert that the TOSCA metadata type is mapped to the expected Widget Type.
90      * 
91      * @param toscaType
92      *            the name (or name prefix) of the TOSCA type
93      * @param metadataType
94      *            the type specified in the TOSCA metadata
95      * @param widgetType
96      *            the type of Widget expected from the mappings
97      */
98     private void assertMapping(String toscaType, String metadataType, WidgetType widgetType) {
99         assertThat(Model.getModelFor(toscaType, metadataType).getWidgetType(), is(widgetType));
100     }
101
102 }