60056d42f7b416fb16deba47899f9063df45a4b2
[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         Policy policy = prop.getType(Policy.class);
58         assertTrue(policy.isFound());
59         assertEquals(1, policy.getPolicyChains().size());
60         assertEquals("0", policy.getPolicyChains().get(0).getPolicyId());
61         assertEquals(1, policy.getPolicyChains().get(0).getPolicyItems().size());
62         assertEquals("resourceid", policy.getPolicyChains().get(0).getPolicyItems().get(0).getTargetResourceId());
63         assertEquals(180, policy.getPolicyChains().get(0).getPolicyItems().get(0).getRetryTimeLimit());
64         assertEquals(3, policy.getPolicyChains().get(0).getPolicyItems().get(0).getMaxRetries());
65         assertEquals("", policy.getPolicyChains().get(0).getPolicyItems().get(0).getParentPolicy());
66         assertEquals(null, policy.getPolicyChains().get(0).getPolicyItems().get(0).getParentPolicyConditions());
67
68         Tca tca = prop.getType(Tca.class);
69         assertTrue(tca.isFound());
70         assertEquals(1, tca.getTcaItems().size());
71         assertEquals(0, tca.getTcaItems().get(0).getTcaThreshholds().size());
72
73         Holmes holmes = prop.getType(Holmes.class);
74         assertTrue(holmes.isFound());
75         assertEquals("policy1", holmes.getOperationalPolicy());
76         assertEquals("blabla", holmes.getCorrelationLogic());
77     }
78
79     @Test
80     public void testGetVf() throws IOException {
81         CldsModel cldsModel = new CldsModel();
82         cldsModel.setPropText(
83                 ResourceFileUtil.getResourceAsString("example/model-properties/modelBpmnPropWithGlobal.json"));
84         assertEquals("f5213e3a-9191-4362-93b5-b67f8d770e44", ModelProperties.getVf(cldsModel));
85     }
86 }