Add new tests to CLAMP
[clamp.git] / src / test / java / org / onap / clamp / clds / model / prop / ModelPropertiesTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                             reserved.
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23
24 package org.onap.clamp.clds.model.prop;
25
26 import static org.junit.Assert.assertEquals;
27 import static org.junit.Assert.assertTrue;
28
29 import java.io.IOException;
30 import java.util.ArrayList;
31 import java.util.List;
32
33 import org.junit.Before;
34 import org.junit.Test;
35 import org.onap.clamp.clds.model.CldsModel;
36 import org.onap.clamp.clds.util.ResourceFileUtil;
37
38 /**
39  * Test org.onap.clamp.ClampDesigner.model.prop package using ModelProperties.
40  */
41 public class ModelPropertiesTest {
42
43     @Before
44     public void registerNewClasses() {
45         ModelProperties.registerModelElement(Holmes.class, Holmes.getType());
46     }
47
48     @Test
49     public void testHolmes() throws IOException {
50
51         String modelBpmnProp = ResourceFileUtil.getResourceAsString("example/model-properties/modelBpmnProp.json");
52         String modelBpmn = ResourceFileUtil.getResourceAsString("example/model-properties/modelBpmn.json");
53
54         ModelProperties prop = new ModelProperties("example-model-name", "example-control-name", null, true, modelBpmn,
55                 modelBpmnProp);
56
57         StringMatch stringMatch = prop.getType(StringMatch.class);
58         assertTrue(stringMatch.isFound());
59         assertEquals("1505133578560", stringMatch.getResourceGroups().get(0).getGroupNumber());
60         assertEquals("0", stringMatch.getResourceGroups().get(0).getPolicyId());
61         assertEquals(1, stringMatch.getResourceGroups().get(0).getServiceConfigurations().size());
62         List<String> aaiMathcingFields = new ArrayList<String>();
63         aaiMathcingFields.add("complex.city");
64         assertEquals(aaiMathcingFields,
65                 stringMatch.getResourceGroups().get(0).getServiceConfigurations().get(0).getaaiMatchingFields());
66         assertEquals("1600", stringMatch.getResourceGroups().get(0).getServiceConfigurations().get(0).getAgeLimit());
67         assertEquals(1, stringMatch.getResourceGroups().get(0).getServiceConfigurations().get(0).getStringSet().size());
68
69         Collector collector = prop.getType(Collector.class);
70         assertTrue(collector.isFound());
71         assertEquals("DCAE-COLLECTOR-UCSNMP", collector.getTopicPublishes());
72
73         Policy policy = prop.getType(Policy.class);
74         assertTrue(policy.isFound());
75         assertEquals(1, policy.getPolicyChains().size());
76         assertEquals("0", policy.getPolicyChains().get(0).getPolicyId());
77         assertEquals(1, policy.getPolicyChains().get(0).getPolicyItems().size());
78
79         Tca tca = prop.getType(Tca.class);
80         assertTrue(tca.isFound());
81         assertEquals(1, tca.getTcaItems().size());
82         assertEquals(0, tca.getTcaItems().get(0).getTcaThreshholds().size());
83
84         Holmes holmes = prop.getType(Holmes.class);
85         assertTrue(holmes.isFound());
86         assertEquals("policy1", holmes.getOperationalPolicy());
87         assertEquals("blabla", holmes.getCorrelationLogic());
88     }
89
90     @Test
91     public void testGetVf() throws IOException {
92         CldsModel cldsModel = new CldsModel();
93         cldsModel.setPropText(
94                 ResourceFileUtil.getResourceAsString("example/model-properties/modelBpmnPropWithGlobal.json"));
95         assertEquals("f5213e3a-9191-4362-93b5-b67f8d770e44", ModelProperties.getVf(cldsModel));
96     }
97 }