0a3931a12f37555453618053144b75a32f9149c3
[so.git] / bpmn / mso-infrastructure-bpmn / src / test / java / org / onap / so / bpmn / common / UpdateAAIVfModuleIT.java
1 /*- 
2  * ============LICENSE_START======================================================= 
3  * ONAP - SO 
4  * ================================================================================ 
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. 
6  * ================================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License"); 
10  * you may not use this file except in compliance with the License. 
11  * You may obtain a copy of the License at 
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0 
14  * 
15  * Unless required by applicable law or agreed to in writing, software 
16  * distributed under the License is distributed on an "AS IS" BASIS, 
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
18  * See the License for the specific language governing permissions and 
19  * limitations under the License. 
20  * ============LICENSE_END========================================================= 
21  */ 
22
23 package org.onap.so.bpmn.common;
24
25 import static org.onap.so.bpmn.mock.StubResponseAAI.MockAAIVfModuleBadPatch;
26 import static org.onap.so.bpmn.mock.StubResponseAAI.MockGetGenericVnfById;
27 import static org.onap.so.bpmn.mock.StubResponseAAI.MockGetGenericVnfByIdWithPriority;
28 import static org.onap.so.bpmn.mock.StubResponseAAI.MockGetGenericVnfById_404;
29 import static org.onap.so.bpmn.mock.StubResponseAAI.MockPatchVfModuleId;
30 import static org.onap.so.bpmn.mock.StubResponseAAI.MockPutGenericVnf;
31
32 import java.io.IOException;
33 import java.util.HashMap;
34 import java.util.Map;
35 import java.util.UUID;
36
37 import org.camunda.bpm.engine.test.Deployment;
38 import org.junit.Assert;
39 import org.junit.Ignore;
40 import org.junit.Test;
41 import org.onap.so.BaseIntegrationTest;
42 import org.onap.so.bpmn.mock.FileUtil;
43 import org.slf4j.Logger;
44 import org.slf4j.LoggerFactory;
45
46 /**
47  * Unit tests for UpdateAAIVfModuleTest.bpmn.
48  */
49
50 public class UpdateAAIVfModuleIT extends BaseIntegrationTest {
51         
52         Logger logger = LoggerFactory.getLogger(CreateAAIVfModuleIT.class);
53         
54                 
55         /**
56          * Test the happy path through the flow.
57          */
58         @Test   
59         
60         public void happyPath() throws IOException {
61                 logStart();
62                 
63                 String updateAAIVfModuleRequest = FileUtil.readResourceFile("__files/VfModularity/UpdateAAIVfModuleRequest.xml"); 
64                 MockGetGenericVnfByIdWithPriority(wireMockServer, "/skask/vf-modules/vf-module/supercool", 200, "VfModularity/VfModule-supercool.xml");
65                 MockPutGenericVnf(wireMockServer, "/skask/vf-modules/vf-module/supercool", "PCRF", 200);
66                 MockPatchVfModuleId(wireMockServer, "skask", "supercool");
67                 
68                 String businessKey = UUID.randomUUID().toString();
69                 Map<String, Object> variables = new HashMap<>();
70                 variables.put("mso-request-id", UUID.randomUUID().toString());
71                 variables.put("isDebugLogEnabled","true");
72                 variables.put("UpdateAAIVfModuleRequest", updateAAIVfModuleRequest);
73                 invokeSubProcess("UpdateAAIVfModule", businessKey, variables);
74                 
75                 Assert.assertTrue(isProcessEnded(businessKey));
76                 String response = (String) getVariableFromHistory(businessKey, "UAAIVfMod_updateVfModuleResponse");
77                 Integer responseCode = (Integer) getVariableFromHistory(businessKey, "UAAIVfMod_updateVfModuleResponseCode");
78                 logger.debug("Subflow response code: {}", responseCode);
79                 logger.debug("Subflow response: {}", response);
80                 Assert.assertEquals(200, responseCode.intValue());
81                 
82                 logEnd();
83         }
84
85         /**
86          * Test the case where the GET to AAI returns a 404.
87          */
88         @Test   
89         
90         public void badGet() throws IOException {
91                 
92                 logStart();
93                 
94                 String updateAAIVfModuleRequest = FileUtil.readResourceFile("__files/VfModularity/UpdateAAIVfModuleRequest.xml"); 
95                 MockGetGenericVnfById(wireMockServer, "/skask/vf-modules/vf-module/.*", "VfModularity/VfModule-supercool.xml", 404);
96                 
97                 String businessKey = UUID.randomUUID().toString();
98                 Map<String, Object> variables = new HashMap<>();
99                 variables.put("mso-request-id", UUID.randomUUID().toString());
100                 variables.put("isDebugLogEnabled","true");
101                 variables.put("UpdateAAIVfModuleRequest", updateAAIVfModuleRequest);
102                 invokeSubProcess("UpdateAAIVfModule", businessKey, variables);
103                 
104                 Assert.assertTrue(isProcessEnded(businessKey));
105                 String response = (String) getVariableFromHistory(businessKey, "UAAIVfMod_getVfModuleResponse");
106                 Integer responseCode = (Integer) getVariableFromHistory(businessKey, "UAAIVfMod_getVfModuleResponseCode");
107                 logger.debug("Subflow response code: {}", responseCode);
108                 logger.debug("Subflow response: {}", response);
109                 Assert.assertEquals(404, responseCode.intValue());
110                 
111                 logEnd();
112         }
113
114         /**
115          * Test the case where the GET to AAI is successful, but he subsequent PUT returns 404.
116          */
117         @Test   
118         
119         public void badPatch() throws IOException {
120                 
121                 logStart();
122                 
123                 String updateAAIVfModuleRequest = FileUtil.readResourceFile("__files/VfModularity/UpdateAAIVfModuleRequest.xml"); 
124                 MockGetGenericVnfById_404(wireMockServer, "/skask/vf-modules/vf-module/supercool");
125                 MockGetGenericVnfById(wireMockServer, "/skask/vf-modules/vf-module/supercool", "VfModularity/VfModule-supercool.xml", 200);
126                 MockAAIVfModuleBadPatch(wireMockServer, "/aai/v[0-9]+/network/generic-vnfs/generic-vnf/skask/vf-modules/vf-module/supercool", 404);
127                 
128                 String businessKey = UUID.randomUUID().toString();
129                 Map<String, Object> variables = new HashMap<>();
130                 variables.put("mso-request-id", UUID.randomUUID().toString());
131                 variables.put("isDebugLogEnabled","true");
132                 variables.put("UpdateAAIVfModuleRequest", updateAAIVfModuleRequest);
133                 invokeSubProcess("UpdateAAIVfModule", businessKey, variables);
134                 
135                 Assert.assertTrue(isProcessEnded(businessKey));
136                 String response = (String) getVariableFromHistory(businessKey, "UAAIVfMod_updateVfModuleResponse");
137                 Integer responseCode = (Integer) getVariableFromHistory(businessKey, "UAAIVfMod_updateVfModuleResponseCode");
138                 logger.debug("Subflow response code: {}", responseCode);
139                 logger.debug("Subflow response: {}", response);
140                 Assert.assertEquals(404, responseCode.intValue());
141                 
142                 logEnd();
143         }
144 }
145