2de10b96fb9db26488079fc631d09dcf8fbc70b2
[aai/babel.git] / src / test / java / org / onap / aai / babel / parser / TestArtifactGeneratorToscaParser.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 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.parser;
23
24 import static org.hamcrest.CoreMatchers.equalTo;
25 import static org.hamcrest.MatcherAssert.assertThat;
26 import static org.hamcrest.Matchers.is;
27
28 import java.io.IOException;
29 import java.util.ArrayList;
30 import java.util.Collections;
31 import java.util.LinkedHashMap;
32 import java.util.List;
33 import org.junit.Test;
34 import org.mockito.Mockito;
35 import org.onap.aai.babel.util.ArtifactTestUtils;
36 import org.onap.aai.babel.util.Resources;
37 import org.onap.aai.babel.xml.generator.XmlArtifactGenerationException;
38 import org.onap.aai.babel.xml.generator.data.WidgetConfigurationUtil;
39 import org.onap.aai.babel.xml.generator.data.WidgetMapping;
40 import org.onap.aai.babel.xml.generator.model.Resource;
41 import org.onap.aai.babel.xml.generator.model.Widget.Type;
42 import org.onap.sdc.tosca.parser.api.ISdcCsarHelper;
43 import org.onap.sdc.toscaparser.api.Group;
44 import org.onap.sdc.toscaparser.api.NodeTemplate;
45 import org.onap.sdc.toscaparser.api.SubstitutionMappings;
46
47 /**
48  * Direct tests of the TOSCA parser-based Artifact Generator {@link ArtifactGeneratorToscaParser}., to cover exceptional
49  * cases.
50  */
51
52 public class TestArtifactGeneratorToscaParser {
53
54     private static final String TEST_UUID = "1234";
55
56     /**
57      * Initialize the Generator with an invalid artifact generator properties file path.
58      * 
59      * @throws IOException
60      *             if an error occurs reading the configuration properties
61      */
62     @Test(expected = IllegalArgumentException.class)
63     public void testMissingPropertiesFile() throws IOException {
64         System.setProperty(ArtifactGeneratorToscaParser.PROPERTY_ARTIFACT_GENERATOR_CONFIG_FILE, "non-existent.file");
65         ArtifactGeneratorToscaParser.initWidgetConfiguration();
66     }
67
68     /**
69      * Initialize the Generator with an invalid mappings file path.
70      * 
71      * @throws IOException
72      *             if the file content could not be read successfully
73      */
74     @Test(expected = IllegalArgumentException.class)
75     public void testMissingMappingsFile() throws IOException {
76         ArtifactGeneratorToscaParser.initToscaMappingsConfiguration("non-existent.file");
77     }
78
79     /**
80      * Initialize the Generator with no Widget Mappings content.
81      * 
82      * @throws IOException
83      *             if the file content could not be read successfully
84      */
85     @Test(expected = IOException.class)
86     public void testMissingMappingsContent() throws IOException {
87         String invalidJson = new ArtifactTestUtils().getResourcePath(Resources.EMPTY_TOSCA_MAPPING_CONFIG);
88         ArtifactGeneratorToscaParser.initToscaMappingsConfiguration(invalidJson);
89     }
90
91     /**
92      * Initialize the Generator with invalid Widget Mappings content.
93      * 
94      * @throws IOException
95      *             if the file content could not be read successfully
96      */
97     @Test(expected = IOException.class)
98     public void testInvalidMappingsContent() throws IOException {
99         String invalidJson = new ArtifactTestUtils().getResourcePath(Resources.INVALID_TOSCA_MAPPING_CONFIG);
100         ArtifactGeneratorToscaParser.initToscaMappingsConfiguration(invalidJson);
101     }
102
103     /**
104      * Process an Allotted Resource that does not have a Providing Service.
105      */
106     @Test(expected = IllegalArgumentException.class)
107     public void testMissingProvidingService() {
108         List<NodeTemplate> nodeTemplateList = Collections.singletonList(buildNodeTemplate("name", "BlockStorage"));
109         new ArtifactGeneratorToscaParser(null).processResourceModels(new Resource(Type.ALLOTTED_RESOURCE, true),
110                 nodeTemplateList);
111     }
112
113     /**
114      * Add a CR (a type of Resource which is not a Providing Service) to a Resource Model.
115      */
116     @Test(expected = IllegalArgumentException.class)
117     public void testAddResourceNotProvidingService() {
118         List<NodeTemplate> nodeTemplateList = Collections.singletonList(buildNodeTemplate("testCR", "CR"));
119         // Create any Resource to which the CR can be added
120         final Resource dummyResource = new Resource(Type.ALLOTTED_RESOURCE, true);
121         new ArtifactGeneratorToscaParser(null).processResourceModels(dummyResource, nodeTemplateList);
122     }
123
124     /**
125      * Initialise the Artifact Generator Widget Mapping config with incomplete data (no type).
126      */
127     @Test(expected = IllegalArgumentException.class)
128     public void testToscaMappingWithoutType() {
129         WidgetMapping invalidMapping = new WidgetMapping();
130         invalidMapping.setType(null);
131         WidgetConfigurationUtil.setWidgetMappings(Collections.singletonList(invalidMapping));
132     }
133
134     /**
135      * Initialise the Artifact Generator Widget Mapping config with incomplete data (no widget name).
136      */
137     @Test(expected = IllegalArgumentException.class)
138     public void testToscaMappingWithoutWidget() {
139         WidgetMapping invalidMapping = new WidgetMapping();
140         invalidMapping.setWidget(null);
141         WidgetConfigurationUtil.setWidgetMappings(Collections.singletonList(invalidMapping));
142     }
143
144     /**
145      * Process a dummy Group object for a Service Resource.
146      * 
147      * @throws XmlArtifactGenerationException
148      *             if there is no configuration defined for a member Widget of an instance group
149      */
150     @Test
151     public void testInstanceGroups() throws XmlArtifactGenerationException {
152         final String instanceGroupType = "org.openecomp.groups.ResourceInstanceGroup";
153         WidgetConfigurationUtil.setSupportedInstanceGroups(Collections.singletonList(instanceGroupType));
154
155         ISdcCsarHelper helper = Mockito.mock(ISdcCsarHelper.class);
156         SubstitutionMappings sm = Mockito.mock(SubstitutionMappings.class);
157
158         NodeTemplate serviceNodeTemplate =
159                 buildNodeTemplate("service", "org.openecomp.resource.cr.a-collection-resource");
160         serviceNodeTemplate.setSubMappingToscaTemplate(sm);
161         Mockito.when(helper.getNodeTemplateByName(serviceNodeTemplate.getName())).thenReturn(serviceNodeTemplate);
162
163         ArrayList<Group> groups = new ArrayList<>();
164         groups.add(buildGroup("group", instanceGroupType));
165         Mockito.when(helper.getGroupsOfOriginOfNodeTemplate(serviceNodeTemplate)).thenReturn(groups);
166
167         ArtifactGeneratorToscaParser parser = new ArtifactGeneratorToscaParser(helper);
168         List<Resource> resources =
169                 parser.processInstanceGroups(new Resource(Type.INSTANCE_GROUP, true), serviceNodeTemplate);
170
171         assertThat(resources.size(), is(1));
172         Resource resource = resources.get(0);
173         assertThat(resource.getModelNameVersionId(), is(equalTo(TEST_UUID)));
174     }
175
176     /**
177      * Create a NodeTemplate for unit testing purposes. In production code this object would only be created by the
178      * sdc-tosca parser.
179      *
180      * @param name
181      *            name of the NodeTemplate
182      * @param type
183      *            type of the NodeTemplate
184      * @return a new NodeTemplate object
185      */
186     private NodeTemplate buildNodeTemplate(String name, String type) {
187         LinkedHashMap<String, Object> nodeTemplateMap = new LinkedHashMap<>();
188         nodeTemplateMap.put(name, buildMap("type", type));
189         nodeTemplateMap.put(type, buildNodeTemplateCustomDefs());
190         return new NodeTemplate(name, nodeTemplateMap, nodeTemplateMap, null, null);
191     }
192
193     private LinkedHashMap<String, Object> buildNodeTemplateCustomDefs() {
194         LinkedHashMap<String, Object> customDefs = buildCustomDefs();
195         customDefs.put("attributes", null);
196         customDefs.put("requirements", null);
197         customDefs.put("capabilities", null);
198         customDefs.put("artifacts", null);
199         return customDefs;
200     }
201
202     private Group buildGroup(String name, String type) {
203         LinkedHashMap<String, Object> template = new LinkedHashMap<>();
204         template.put("type", type);
205         template.put("metadata", new LinkedHashMap<>());
206         template.put("properties", buildMap("UUID", TEST_UUID));
207         LinkedHashMap<String, Object> customDefMap = buildMap(name, template);
208         customDefMap.put(type, buildGroupCustomDefs());
209         return new Group(name, template, null, customDefMap);
210     }
211
212     private LinkedHashMap<String, Object> buildGroupCustomDefs() {
213         LinkedHashMap<String, Object> customDefs = buildCustomDefs();
214         customDefs.put("members", null);
215         return customDefs;
216     }
217
218     private LinkedHashMap<String, Object> buildCustomDefs() {
219         LinkedHashMap<String, Object> customDefs = new LinkedHashMap<>();
220         customDefs.put("derived_from", null);
221         customDefs.put("metadata", null);
222         customDefs.put("version", null);
223         customDefs.put("description", null);
224         customDefs.put("interfaces", null);
225         customDefs.put("properties", buildMap("UUID", buildMap("type", "java.lang.String")));
226         return customDefs;
227     }
228
229     private LinkedHashMap<String, Object> buildMap(String key, Object value) {
230         LinkedHashMap<String, Object> map = new LinkedHashMap<>();
231         map.put(key, value);
232         return map;
233     }
234 }