Update TCA config json send to Policy
[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.assertNotNull;
28 import static org.junit.Assert.assertTrue;
29
30 import java.io.IOException;
31
32 import org.junit.Before;
33 import org.junit.Test;
34 import org.onap.clamp.clds.model.CldsModel;
35 import org.onap.clamp.clds.util.ResourceFileUtil;
36
37 /**
38  * Test org.onap.clamp.ClampDesigner.model.prop package using ModelProperties.
39  */
40 public class ModelPropertiesTest {
41
42     @Before
43     public void registerNewClasses() {
44         ModelProperties.registerModelElement(Holmes.class, Holmes.getType());
45     }
46
47     @Test
48     public void testTcaModelDecoding() throws IOException {
49
50         String modelBpmnProp = ResourceFileUtil
51                 .getResourceAsString("example/model-properties/tca/modelBpmnProperties.json");
52         String modelBpmn = ResourceFileUtil.getResourceAsString("example/model-properties/tca/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         assertNotNull(tca);
70         assertTrue(tca.isFound());
71         assertEquals("vFirewallBroadcastPackets", tca.getTcaItem().getEventName());
72         assertEquals("VNF", tca.getTcaItem().getControlLoopSchemaType());
73         assertEquals("policy1", tca.getTcaItem().getPolicyId());
74         assertEquals("f734f031-10aa-t8fb-330f-04dde2886325", tca.getTcaItem().getTcaUuId());
75         assertEquals(2, tca.getTcaItem().getTcaThresholds().size());
76
77         assertEquals("ABATED", tca.getTcaItem().getTcaThresholds().get(0).getClosedLoopEventStatus());
78         assertEquals(
79                 "$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsAccumulated",
80                 tca.getTcaItem().getTcaThresholds().get(0).getFieldPath());
81         assertEquals("LESS_OR_EQUAL", tca.getTcaItem().getTcaThresholds().get(0).getOperator());
82         assertEquals(Integer.valueOf(123), tca.getTcaItem().getTcaThresholds().get(0).getThreshold());
83
84         assertEquals("ONSET", tca.getTcaItem().getTcaThresholds().get(1).getClosedLoopEventStatus());
85         assertEquals("$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedDiscardedPacketsDelta",
86                 tca.getTcaItem().getTcaThresholds().get(1).getFieldPath());
87         assertEquals("GREATER_OR_EQUAL", tca.getTcaItem().getTcaThresholds().get(1).getOperator());
88         assertEquals(Integer.valueOf(123), tca.getTcaItem().getTcaThresholds().get(1).getThreshold());
89     }
90
91     @Test
92     public void testHolmesModelDecoding() throws IOException {
93
94         String modelBpmnProp = ResourceFileUtil
95                 .getResourceAsString("example/model-properties/holmes/modelBpmnProperties.json");
96         String modelBpmn = ResourceFileUtil.getResourceAsString("example/model-properties/holmes/modelBpmn.json");
97
98         ModelProperties prop = new ModelProperties("example-model-name", "example-control-name", null, true, modelBpmn,
99                 modelBpmnProp);
100
101         Policy policy = prop.getType(Policy.class);
102         assertTrue(policy.isFound());
103         assertEquals(1, policy.getPolicyChains().size());
104         assertEquals("0", policy.getPolicyChains().get(0).getPolicyId());
105         assertEquals(1, policy.getPolicyChains().get(0).getPolicyItems().size());
106         assertEquals("resourceid", policy.getPolicyChains().get(0).getPolicyItems().get(0).getTargetResourceId());
107         assertEquals(180, policy.getPolicyChains().get(0).getPolicyItems().get(0).getRetryTimeLimit());
108         assertEquals(3, policy.getPolicyChains().get(0).getPolicyItems().get(0).getMaxRetries());
109         assertEquals("", policy.getPolicyChains().get(0).getPolicyItems().get(0).getParentPolicy());
110         assertEquals(null, policy.getPolicyChains().get(0).getPolicyItems().get(0).getParentPolicyConditions());
111
112         Holmes holmes = prop.getType(Holmes.class);
113         assertNotNull(holmes);
114         assertTrue(holmes.isFound());
115         assertEquals("configPolicy1", holmes.getConfigPolicyName());
116         assertEquals("blabla", holmes.getCorrelationLogic());
117     }
118
119     @Test
120     public void testGetVf() throws IOException {
121         CldsModel cldsModel = new CldsModel();
122         cldsModel.setPropText(
123                 ResourceFileUtil.getResourceAsString("example/model-properties/tca/modelBpmnProperties.json"));
124         assertEquals("f5213e3a-9191-4362-93b5-b67f8d770e44", ModelProperties.getVf(cldsModel));
125     }
126 }