Fix bug at runtime
[clamp.git] / src / test / java / org / onap / clamp / clds / it / PolicyClientIT.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.it;
25
26 import static org.junit.Assert.assertTrue;
27
28 import java.io.IOException;
29 import java.util.Map;
30 import java.util.UUID;
31 import java.util.concurrent.TimeUnit;
32
33 import org.junit.Before;
34 import org.junit.Test;
35 import org.junit.runner.RunWith;
36 import org.onap.clamp.clds.AbstractIT;
37 import org.onap.clamp.clds.client.req.OperationalPolicyReq;
38 import org.onap.clamp.clds.client.req.StringMatchPolicyReq;
39 import org.onap.clamp.clds.client.req.TcaMPolicyReq;
40 import org.onap.clamp.clds.model.CldsEvent;
41 import org.onap.clamp.clds.model.prop.ModelProperties;
42 import org.onap.clamp.clds.model.prop.Policy;
43 import org.onap.clamp.clds.model.prop.PolicyChain;
44 import org.onap.clamp.clds.model.prop.StringMatch;
45 import org.onap.clamp.clds.model.prop.Tca;
46 import org.onap.clamp.clds.util.ResourceFileUtil;
47 import org.onap.policy.api.AttributeType;
48 import org.skyscreamer.jsonassert.JSONAssert;
49 import org.springframework.boot.test.context.SpringBootTest;
50 import org.springframework.test.context.TestPropertySource;
51 import org.springframework.test.context.junit4.SpringRunner;
52
53 /**
54  * Test Policy API in org.onap.clamp.ClampDesigner.client package - replicate
55  * Policy Delegates in tests.
56  */
57 @RunWith(SpringRunner.class)
58 @SpringBootTest
59 @TestPropertySource(locations = "classpath:application-no-camunda.properties")
60 public class PolicyClientIT extends AbstractIT {
61     String modelProp;
62     String modelBpmnProp;
63     String modelName;
64     String controlName;
65
66     /**
67      * Initialize Test.
68      */
69     @Before
70     public void setUp() throws IOException {
71         modelProp = ResourceFileUtil.getResourceAsString("example/modelProp.json");
72         modelBpmnProp = ResourceFileUtil.getResourceAsString("example/modelBpmnProp.json");
73         modelName = "example-model06";
74         controlName = "ClosedLoop_FRWL_SIG_fad4dcae_e498_11e6_852e_0050568c4ccf";
75     }
76
77     private void createUpdateStringMatch(String actionCd) throws Exception {
78         ModelProperties prop = new ModelProperties(modelName, controlName, actionCd, false, modelBpmnProp, modelProp);
79         StringMatch stringMatch = prop.getType(StringMatch.class);
80         if (stringMatch.isFound()) {
81             String stringMatchPolicyRequestUuid = UUID.randomUUID().toString();
82
83             String policyJson = StringMatchPolicyReq.format(refProp, prop);
84             String correctValue = ResourceFileUtil.getResourceAsString("expected/stringmatch.json");
85             JSONAssert.assertEquals(policyJson, correctValue, true);
86             String responseMessage = "";
87             try {
88                 responseMessage = policyClient.sendMicroServiceInJson(policyJson, prop, stringMatchPolicyRequestUuid);
89             } catch (Exception e) {
90                 assertTrue(e.getMessage().contains("Policy send failed: PE500 "));
91             }
92         }
93     }
94
95     private void createUpdateOperationalPolicy(String actionCd) throws Exception {
96         ModelProperties prop = new ModelProperties(modelName, controlName, actionCd, false, modelBpmnProp, modelProp);
97         Policy policy = prop.getType(Policy.class);
98         if (policy.isFound()) {
99             for (PolicyChain policyChain : policy.getPolicyChains()) {
100                 String operationalPolicyRequestUuid = UUID.randomUUID().toString();
101
102                 Map<AttributeType, Map<String, String>> attributes = OperationalPolicyReq.formatAttributes(refProp,
103                         prop, policy.getId(), policyChain);
104                 String responseMessage = policyClient.sendBrmsPolicy(attributes, prop, operationalPolicyRequestUuid);
105             }
106         }
107     }
108
109     private void createUpdateTcaPolicy(String actionCd) throws Exception {
110         ModelProperties prop = new ModelProperties(modelName, controlName, actionCd, false, modelBpmnProp, modelProp);
111         Tca tca = prop.getType(Tca.class);
112         if (tca.isFound()) {
113             String tcaPolicyRequestUuid = UUID.randomUUID().toString();
114             String policyJson = TcaMPolicyReq.formatTca(refProp, prop);
115             String correctValue = ResourceFileUtil.getResourceAsString("expected/tca.json");
116             JSONAssert.assertEquals(policyJson, correctValue, true);
117             String responseMessage = "";
118             try {
119                 responseMessage = policyClient.sendMicroServiceInJson(policyJson, prop, tcaPolicyRequestUuid);
120             } catch (Exception e) {
121                 assertTrue(e.getMessage().contains("Exception while communicating with Policy"));
122             }
123         }
124     }
125
126     private void deleteStringMatchPolicy(String actionCd) throws Exception {
127         ModelProperties prop = new ModelProperties(modelName, controlName, actionCd, false, modelBpmnProp, modelProp);
128
129         StringMatch stringMatch = prop.getType(StringMatch.class);
130         if (stringMatch.isFound()) {
131             prop.setCurrentModelElementId(stringMatch.getId());
132             String responseMessage = "";
133             try {
134                 responseMessage = policyClient.deleteMicrosService(prop);
135             } catch (Exception e) {
136                 assertTrue(e.getMessage().contains("Policy delete failed: PE500 "));
137             }
138         }
139     }
140
141     private void deleteOperationalPolicy(String actionCd) throws Exception {
142         ModelProperties prop = new ModelProperties(modelName, controlName, actionCd, false, modelBpmnProp, modelProp);
143
144         Policy policy = prop.getType(Policy.class);
145         if (policy.isFound()) {
146             prop.setCurrentModelElementId(policy.getId());
147             for (PolicyChain policyChain : policy.getPolicyChains()) {
148                 prop.setPolicyUniqueId(policyChain.getPolicyId());
149                 String responseMessage = policyClient.deleteBrms(prop);
150             }
151         }
152     }
153
154     private void deleteTcaPolicy(String actionCd) throws Exception {
155         ModelProperties prop = new ModelProperties(modelName, controlName, actionCd, false, modelBpmnProp, modelProp);
156
157         Tca tca = prop.getType(Tca.class);
158         if (tca.isFound()) {
159             prop.setCurrentModelElementId(tca.getId());
160             String responseMessage = "";
161             try {
162                 responseMessage = policyClient.deleteMicrosService(prop);
163             } catch (Exception e) {
164                 assertTrue(e.getMessage().contains("Policy delete failed: PE500 "));
165             }
166         }
167     }
168
169     // @Test
170     /**
171      * Temporarily disabled Test.
172      */
173     public void testCreateUpdateDeleteStringMatchPolicy() throws Exception {
174
175         createUpdateStringMatch(CldsEvent.ACTION_SUBMIT);
176
177         TimeUnit.SECONDS.sleep(20);
178
179         deleteStringMatchPolicy(CldsEvent.ACTION_DELETE);
180     }
181
182     // @Test
183     /**
184      * Temporarily disabled Test.
185      */
186     public void testCreateUpdateDeleteOperationalPolicy() throws Exception {
187
188         createUpdateOperationalPolicy(CldsEvent.ACTION_SUBMIT);
189
190         TimeUnit.SECONDS.sleep(20);
191
192         deleteOperationalPolicy(CldsEvent.ACTION_DELETE);
193     }
194
195     @Test
196     public void testCreateUpdateDeleteTcaPolicy() throws Exception {
197
198         createUpdateTcaPolicy(CldsEvent.ACTION_SUBMIT);
199
200         TimeUnit.SECONDS.sleep(20);
201
202         deleteTcaPolicy(CldsEvent.ACTION_DELETE);
203     }
204 }