new method for policy client
[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.TcaRequestFormatter;
39 import org.onap.clamp.clds.model.CldsEvent;
40 import org.onap.clamp.clds.model.prop.ModelProperties;
41 import org.onap.clamp.clds.model.prop.Policy;
42 import org.onap.clamp.clds.model.prop.PolicyChain;
43 import org.onap.clamp.clds.model.prop.Tca;
44 import org.onap.clamp.clds.util.ResourceFileUtil;
45 import org.onap.policy.api.AttributeType;
46 import org.skyscreamer.jsonassert.JSONAssert;
47 import org.springframework.boot.test.context.SpringBootTest;
48 import org.springframework.test.context.TestPropertySource;
49 import org.springframework.test.context.junit4.SpringRunner;
50
51 /**
52  * Test Policy API in org.onap.clamp.ClampDesigner.client package - replicate
53  * Policy Delegates in tests.
54  */
55 @RunWith(SpringRunner.class)
56 @SpringBootTest
57 @TestPropertySource(locations = "classpath:application-no-camunda.properties")
58 public class PolicyClientIT extends AbstractIT {
59     String modelProp;
60     String modelBpmnProp;
61     String modelName;
62     String controlName;
63
64     /**
65      * Initialize Test.
66      */
67     @Before
68     public void setUp() throws IOException {
69         modelProp = ResourceFileUtil.getResourceAsString("example/modelProp.json");
70         modelBpmnProp = ResourceFileUtil.getResourceAsString("example/modelBpmnProp.json");
71         modelName = "example-model06";
72         controlName = "ClosedLoop_FRWL_SIG_fad4dcae_e498_11e6_852e_0050568c4ccf";
73     }
74
75     private void createUpdateOperationalPolicy(String actionCd) throws Exception {
76         ModelProperties prop = new ModelProperties(modelName, controlName, actionCd, false, modelBpmnProp, modelProp);
77         Policy policy = prop.getType(Policy.class);
78         if (policy.isFound()) {
79             for (PolicyChain policyChain : policy.getPolicyChains()) {
80                 String operationalPolicyRequestUuid = UUID.randomUUID().toString();
81
82                 Map<AttributeType, Map<String, String>> attributes = OperationalPolicyReq.formatAttributes(refProp,
83                         prop, policy.getId(), policyChain);
84                 String responseMessage = policyClient.sendBrmsPolicy(attributes, prop, operationalPolicyRequestUuid);
85             }
86         }
87     }
88
89     private void createUpdateTcaPolicy(String actionCd) throws Exception {
90         ModelProperties prop = new ModelProperties(modelName, controlName, actionCd, false, modelBpmnProp, modelProp);
91         Tca tca = prop.getType(Tca.class);
92         if (tca.isFound()) {
93             String tcaPolicyRequestUuid = UUID.randomUUID().toString();
94             String policyJson = TcaRequestFormatter.createPolicyJson(refProp, prop);
95             String responseMessage = "";
96             try {
97                 responseMessage = policyClient.sendMicroServiceInJson(policyJson, prop, tcaPolicyRequestUuid);
98             } catch (Exception e) {
99                 assertTrue(e.getMessage().contains("Exception while communicating with Policy"));
100             }
101         }
102     }
103
104     private void deleteOperationalPolicy(String actionCd) throws Exception {
105         ModelProperties prop = new ModelProperties(modelName, controlName, actionCd, false, modelBpmnProp, modelProp);
106
107         Policy policy = prop.getType(Policy.class);
108         if (policy.isFound()) {
109             prop.setCurrentModelElementId(policy.getId());
110             for (PolicyChain policyChain : policy.getPolicyChains()) {
111                 prop.setPolicyUniqueId(policyChain.getPolicyId());
112                 String responseMessage = policyClient.deleteBrms(prop);
113             }
114         }
115     }
116
117     private void deleteTcaPolicy(String actionCd) throws Exception {
118         ModelProperties prop = new ModelProperties(modelName, controlName, actionCd, false, modelBpmnProp, modelProp);
119
120         Tca tca = prop.getType(Tca.class);
121         if (tca.isFound()) {
122             prop.setCurrentModelElementId(tca.getId());
123             String responseMessage = "";
124             try {
125                 responseMessage = policyClient.deleteMicrosService(prop);
126             } catch (Exception e) {
127                 assertTrue(e.getMessage().contains("Policy delete failed: PE500 "));
128             }
129         }
130     }
131
132     // @Test
133     /**
134      * Temporarily disabled Test.
135      */
136     public void testCreateUpdateDeleteOperationalPolicy() throws Exception {
137
138         createUpdateOperationalPolicy(CldsEvent.ACTION_SUBMIT);
139
140         TimeUnit.SECONDS.sleep(20);
141
142         deleteOperationalPolicy(CldsEvent.ACTION_DELETE);
143     }
144
145     @Test
146     public void testCreateUpdateDeleteTcaPolicy() throws Exception {
147
148         createUpdateTcaPolicy(CldsEvent.ACTION_SUBMIT);
149
150         TimeUnit.SECONDS.sleep(20);
151
152         deleteTcaPolicy(CldsEvent.ACTION_DELETE);
153     }
154 }