4f5375719f2784fb7b5833147772d4e265f4f933
[so.git] / bpmn / MSOInfrastructureBPMN / src / test / groovy / org / openecomp / mso / bpmn / infrastructure / scripts / CreateVfModuleVolumeInfraV1Test.groovy
1 /*- 
2  * ============LICENSE_START======================================================= 
3  * OPENECOMP - MSO 
4  * ================================================================================ 
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. 
6  * ================================================================================ 
7  * Licensed under the Apache License, Version 2.0 (the "License"); 
8  * you may not use this file except in compliance with the License. 
9  * You may obtain a copy of the License at 
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0 
12  * 
13  * Unless required by applicable law or agreed to in writing, software 
14  * distributed under the License is distributed on an "AS IS" BASIS, 
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
16  * See the License for the specific language governing permissions and 
17  * limitations under the License. 
18  * ============LICENSE_END========================================================= 
19  */ 
20
21 package org.openecomp.mso.bpmn.infrastructure.scripts;
22
23 import static org.junit.Assert.*;
24 import static org.mockito.Mockito.*
25
26 import org.camunda.bpm.engine.impl.persistence.entity.ExecutionEntity
27 import org.mockito.ArgumentCaptor
28 import org.mockito.MockitoAnnotations
29 import org.mockito.runners.MockitoJUnitRunner
30 import org.junit.Before
31 import org.junit.Test
32 import org.junit.runner.RunWith
33 import org.openecomp.mso.bpmn.common.scripts.MsoGroovyTest;
34
35
36 @RunWith(MockitoJUnitRunner.class)
37 import org.apache.commons.lang3.*
38
39
40 class CreateVfModuleVolumeInfraV1Test extends MsoGroovyTest {
41
42         def jsonRequest = """
43 {
44         "requestDetails": {
45                 "modelInfo": {
46                         "modelType": "volumeGroup",
47                         "modelId": "ff5256d2-5a33-55df-13ab-12abad84e7ff",
48                         "modelNameVersionId": "fe6478e5-ea33-3346-ac12-ab121484a3fe",
49                         "modelName": "vSAMP12::base::module-0",
50                         "modelVersion": "1"
51                 },
52                 "cloudConfiguration": {
53                         "lcpCloudRegionId": "mdt1",
54                         "tenantId": "88a6ca3ee0394ade9403f075db23167e"
55                 },
56                 "requestInfo": {
57                         "instanceName": "MSOTESTVOL101a-vSAMP12_base_vol_module-0",
58                         "source": "VID",
59                         "suppressRollback": false
60                 },
61                 "relatedInstanceList": [
62                         {
63                                 "relatedInstance": {
64                                         "instanceId": "{service-instance-id}",
65                                         "modelInfo": {
66                                                 "modelType": "service",
67                                                 "modelId": "ff3514e3-5a33-55df-13ab-12abad84e7ff",
68                                                 "modelNameVersionId": "fe6985cd-ea33-3346-ac12-ab121484a3fe",
69                                                 "modelName": "Test",
70                                                 "modelVersion": "2.0"
71                                         }
72                                 }
73                         }, {
74                                 "relatedInstance": {
75                                         "instanceId": "{vnf-instance-id}",
76                                         "modelInfo": {
77                                                 "modelType": "vnf",
78                                                 "modelId": "ff5256d1-5a33-55df-13ab-12abad84e7ff",
79                                                 "modelNameVersionId": "fe6478e4-ea33-3346-ac12-ab121484a3fe",
80                                                 "modelName": "vSAMP12",
81                                                 "modelVersion": "1",
82                                                 "modelCustomizationName": "vSAMP12"
83                                         }
84                                 }
85                         }
86                 ],
87                 "requestParameters": {
88                         "serviceId": "a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb",
89                         "userParams": [
90                                 {"name": "vnfName", "value": "STMTN5MMSC20" },
91                                 {"name": "vnfName2", "value": "US1117MTSNJVBR0246" },
92                                 {"name": "vnfNmInformation", "value": "" },
93                                 {"name": "vnfType", "value": "pcrf-capacity" },
94                                 {"name": "vnfId", "value": "skask" },
95                                 {"name": "vnfStackId", "value": "slowburn" },
96                                 {"name": "vnfStatus", "value": "created" },
97                                 {"name": "aicCloudRegion", "value": "MDTWNJ21" },
98                                 {"name": "availabilityZone", "value": "slcp3-esx-az01" },
99                                 {"name": "oamNetworkName", "value": "VLAN-OAM-1323" },
100                                 {"name": "vmName", "value": "slcp34246vbc246ceb" },
101                                 {"name": "ipagNetworkId", "value": "970cd2b9-7f09-4a12-af47-182ea38ba1f0" },
102                                 {"name": "vpeNetworkId", "value": "545cc2c3-1930-4100-b534-5d82d0e12bb6" }
103                         ]
104                 }
105         }
106 }
107 """
108         
109         def volumeRequestXml = """<volume-request xmlns="http://www.w3.org/2001/XMLSchema">
110    <request-info>
111       <action>CREATE_VF_MODULE_VOL</action>
112       <source>VID</source>
113       <service-instance-id/>
114    </request-info>
115    <volume-inputs>
116       <volume-group-id/>
117       <volume-group-name>MSOTESTVOL101a-vSAMP12_base_vol_module-0</volume-group-name>
118       <vnf-type>Test/vSAMP12</vnf-type>
119       <vf-module-model-name>vSAMP12::base::module-0</vf-module-model-name>
120       <asdc-service-model-version>2.0</asdc-service-model-version>
121       <aic-cloud-region>mdt1</aic-cloud-region>
122       <tenant-id>88a6ca3ee0394ade9403f075db23167e</tenant-id>
123       <service-id>a9a77d5a-123e-4ca2-9eb9-0b015d2ee0fb</service-id>
124       <backout-on-failure>true</backout-on-failure>
125       <model-customization-id/>
126    </volume-inputs>
127    <volume-params>
128       <param name="vnf_name">STMTN5MMSC20</param>
129       <param name="vnf_name2">US1117MTSNJVBR0246</param>
130       <param name="vnf_nm_information"/>
131       <param name="vnf_type">pcrf-capacity</param>
132       <param name="vnf_id">skask</param>
133       <param name="vnf_stack_id">slowburn</param>
134       <param name="vnf_status">created</param>
135       <param name="aic_cloud_region">MDTWNJ21</param>
136       <param name="availability_zone">slcp3-esx-az01</param>
137       <param name="oam_network_name">VLAN-OAM-1323</param>
138       <param name="vm_name">slcp34246vbc246ceb</param>
139       <param name="ipag_network_id">970cd2b9-7f09-4a12-af47-182ea38ba1f0</param>
140       <param name="vpe_network_id">545cc2c3-1930-4100-b534-5d82d0e12bb6</param>
141    </volume-params>
142 </volume-request>"""
143                 
144         def completeMsoRequestXml = """<aetgt:MsoCompletionRequest xmlns:aetgt="http://org.openecomp/mso/workflow/schema/v1"
145                             xmlns:ns="http://org.openecomp/mso/request/types/v1"
146                             xmlns="http://org.openecomp/mso/infra/vnf-request/v1">
147    <request-info>
148       <request-id>1234</request-id>
149       <action>CREATE</action>
150       <source>VID</source>
151    </request-info>
152    <aetgt:status-message>Volume Group has been created successfully.</aetgt:status-message>
153    <aetgt:mso-bpel-name>BPMN VF Module Volume action: CREATE</aetgt:mso-bpel-name>
154 </aetgt:MsoCompletionRequest>"""
155
156
157     @Before
158         public void init()
159         {
160                 MockitoAnnotations.initMocks(this)
161         }
162         
163
164         @Test
165         public void testPreProcessRequest() {
166                 
167                 ExecutionEntity mockExecution = setupMock('CreateVfModuleVolumeInfraV1')
168
169                 when(mockExecution.getVariable("prefix")).thenReturn('CVMVINFRAV1_')
170                 when(mockExecution.getVariable("bpmnRequest")).thenReturn(jsonRequest)
171                 when(mockExecution.getVariable("serviceInstanceId")).thenReturn('')
172                 when(mockExecution.getVariable("vnfId")).thenReturn('test-vnf-id')
173                 when(mockExecution.getVariable("mso-request-id")).thenReturn('1234')
174                                                                 
175                 CreateVfModuleVolumeInfraV1 createVfModuleVolumeInfraV1 = new CreateVfModuleVolumeInfraV1()
176                 createVfModuleVolumeInfraV1.preProcessRequest(mockExecution, 'true')
177                 
178                 // Capture the arguments to setVariable
179                 ArgumentCaptor<String> captor1 = ArgumentCaptor.forClass(String.class);
180                 ArgumentCaptor<String> captor2 = ArgumentCaptor.forClass(String.class);
181                 
182                 verify(mockExecution, times(15)).setVariable(captor1.capture(), captor2.capture())
183                 
184                 List<String> arg2List = captor2.getAllValues()
185                 String volumeRequestActual = arg2List.get(6)
186                 String isVidRequestActual = arg2List.get(8) 
187                 
188                 assertEquals(volumeRequestXml, volumeRequestActual.trim())
189                 assertEquals('true', isVidRequestActual)
190         }
191         
192         @Test
193         public void testPostProcessResponse() {
194                 
195                 ExecutionEntity mockExecution = setupMock('CreateVfModuleVolumeInfraV1')
196                 when(mockExecution.getVariable("dbReturnCode")).thenReturn('000')
197                 when(mockExecution.getVariable("CVMVINFRAV1_createDBResponse")).thenReturn('')
198                 when(mockExecution.getVariable("mso-request-id")).thenReturn('1234')
199                 when(mockExecution.getVariable("CVMVINFRAV1_source")).thenReturn('VID')
200                                                                 
201                 CreateVfModuleVolumeInfraV1 createVfModuleVolumeInfraV1 = new CreateVfModuleVolumeInfraV1()
202                 createVfModuleVolumeInfraV1.postProcessResponse(mockExecution, 'true')
203                 
204                 verify(mockExecution).setVariable('CVMVINFRAV1_Success', true)
205                 verify(mockExecution).setVariable('CVMVINFRAV1_CompleteMsoProcessRequest', completeMsoRequestXml)
206         }
207         
208
209 }