Remove Camunda and replace by Camel
[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-2018 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         String modelBpmnProp = ResourceFileUtil
50                 .getResourceAsString("example/model-properties/tca/modelBpmnProperties.json");
51         String modelBpmn = ResourceFileUtil.getResourceAsString("example/model-properties/tca/modelBpmn.json");
52         ModelProperties prop = new ModelProperties("example-model-name", "example-control-name", null, true, modelBpmn,
53                 modelBpmnProp);
54         Policy policy = prop.getType(Policy.class);
55         assertTrue(policy.isFound());
56         assertEquals(1, policy.getPolicyChains().size());
57         assertEquals("0", policy.getPolicyChains().get(0).getPolicyId());
58         assertEquals(1, policy.getPolicyChains().get(0).getPolicyItems().size());
59         assertEquals("resourceid", policy.getPolicyChains().get(0).getPolicyItems().get(0).getTargetResourceId());
60         assertEquals(180, policy.getPolicyChains().get(0).getPolicyItems().get(0).getRetryTimeLimit());
61         assertEquals(3, policy.getPolicyChains().get(0).getPolicyItems().get(0).getMaxRetries());
62         assertEquals("", policy.getPolicyChains().get(0).getPolicyItems().get(0).getParentPolicy());
63         assertEquals(null, policy.getPolicyChains().get(0).getPolicyItems().get(0).getParentPolicyConditions());
64         Tca tca = prop.getType(Tca.class);
65         assertNotNull(tca);
66         assertTrue(tca.isFound());
67         assertEquals("vFirewallBroadcastPackets", tca.getTcaItem().getEventName());
68         assertEquals("VNF", tca.getTcaItem().getControlLoopSchemaType());
69         assertEquals("policy1", tca.getTcaItem().getPolicyId());
70         assertEquals("f734f031-10aa-t8fb-330f-04dde2886325", tca.getTcaItem().getTcaUuId());
71         assertEquals(2, tca.getTcaItem().getTcaThresholds().size());
72         assertEquals("ABATED", tca.getTcaItem().getTcaThresholds().get(0).getClosedLoopEventStatus());
73         assertEquals(
74                 "$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedBroadcastPacketsAccumulated",
75                 tca.getTcaItem().getTcaThresholds().get(0).getFieldPath());
76         assertEquals("LESS_OR_EQUAL", tca.getTcaItem().getTcaThresholds().get(0).getOperator());
77         assertEquals(Integer.valueOf(123), tca.getTcaItem().getTcaThresholds().get(0).getThreshold());
78         assertEquals("ONSET", tca.getTcaItem().getTcaThresholds().get(1).getClosedLoopEventStatus());
79         assertEquals("$.event.measurementsForVfScalingFields.vNicPerformanceArray[*].receivedDiscardedPacketsDelta",
80                 tca.getTcaItem().getTcaThresholds().get(1).getFieldPath());
81         assertEquals("GREATER_OR_EQUAL", tca.getTcaItem().getTcaThresholds().get(1).getOperator());
82         assertEquals(Integer.valueOf(123), tca.getTcaItem().getTcaThresholds().get(1).getThreshold());
83     }
84
85     @Test
86     public void testHolmesModelDecoding() throws IOException {
87         String modelBpmnProp = ResourceFileUtil
88                 .getResourceAsString("example/model-properties/holmes/modelBpmnProperties.json");
89         String modelBpmn = ResourceFileUtil.getResourceAsString("example/model-properties/holmes/modelBpmn.json");
90         ModelProperties prop = new ModelProperties("example-model-name", "example-control-name", null, true, modelBpmn,
91                 modelBpmnProp);
92         Policy policy = prop.getType(Policy.class);
93         assertTrue(policy.isFound());
94         assertEquals(1, policy.getPolicyChains().size());
95         assertEquals("0", policy.getPolicyChains().get(0).getPolicyId());
96         assertEquals(1, policy.getPolicyChains().get(0).getPolicyItems().size());
97         assertEquals("resourceid", policy.getPolicyChains().get(0).getPolicyItems().get(0).getTargetResourceId());
98         assertEquals(180, policy.getPolicyChains().get(0).getPolicyItems().get(0).getRetryTimeLimit());
99         assertEquals(3, policy.getPolicyChains().get(0).getPolicyItems().get(0).getMaxRetries());
100         assertEquals("", policy.getPolicyChains().get(0).getPolicyItems().get(0).getParentPolicy());
101         assertEquals(null, policy.getPolicyChains().get(0).getPolicyItems().get(0).getParentPolicyConditions());
102         Holmes holmes = prop.getType(Holmes.class);
103         assertNotNull(holmes);
104         assertTrue(holmes.isFound());
105         assertEquals("configPolicy1", holmes.getConfigPolicyName());
106         assertEquals("blabla", holmes.getCorrelationLogic());
107     }
108
109     @Test
110     public void testGetVf() throws IOException {
111         CldsModel cldsModel = new CldsModel();
112         cldsModel.setPropText(
113                 ResourceFileUtil.getResourceAsString("example/model-properties/tca/modelBpmnProperties.json"));
114         assertEquals("023a3f0d-1161-45ff-b4cf-8918a8ccf3ad", ModelProperties.getVf(cldsModel));
115     }
116 }