aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/so-bpmn-infrastructure-flows/src/test/groovy/org/onap/so/bpmn/infrastructure/scripts/ScaleCustomE2EServiceInstanceTest.groovy
blob: e196a62e1fdfed0abae9fa3809c4bee10766f44b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.so.bpmn.infrastructure.scripts

import static org.mockito.Mockito.*

import org.apache.commons.lang3.*
import org.camunda.bpm.engine.ProcessEngineServices
import org.camunda.bpm.engine.RepositoryService
import org.camunda.bpm.engine.impl.persistence.entity.ExecutionEntity
import org.camunda.bpm.engine.repository.ProcessDefinition
import org.camunda.bpm.engine.runtime.Execution
import org.junit.Before
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
import org.mockito.MockitoAnnotations
import org.mockito.runners.MockitoJUnitRunner
import org.onap.so.bpmn.common.scripts.MsoUtils
import org.onap.so.bpmn.core.WorkflowException
import org.onap.so.bpmn.common.scripts.ExceptionUtil


import com.github.tomakehurst.wiremock.junit.WireMockRule

@RunWith(MockitoJUnitRunner.class)
class SacleCustomE2EServiceInstanceTest{
    @Rule
    public WireMockRule wireMockRule = new WireMockRule(8090);

    String Prefix="CRESI_"
    ExceptionUtil exceptionUtil = new ExceptionUtil()
    String globalSubscriberId="test_custormer"
    String requestDescription = "request description for test"
    def utils = new MsoUtils()

    String jsonIncomingRequest = """{"service":{
                                        "serviceType":"example-service-type",
                                        "globalSubscriberId":"test_custormer",
                                        "resources":[
                                            {
                                                "resourceInstanceId":"ns111",
                                                "scaleType":"SCALE_NS",
                                                "scaleNsData":{
                                                    "scaleNsByStepsData":{
                                                        "numberOfSteps":"4",
                                                        "aspectId":"TIC_EDGE_HW",
                                                        "scalingDirection":"UP"
                                                        }
                                                }
                                            },
                                            {
                                                "resourceInstanceId":"ns333",
                                                "scaleType":"SCALE_NS",
                                                "scaleNsData":{
                                                    "scaleNsByStepsData":{
                                                        "numberOfSteps":"4",
                                                        "aspectId":"TIC_EDGE_HW",
                                                        "scalingDirection":"UP"
                                                    }
                                                }
                                            }],
                                        "serviceInstanceName":"XXXX"
                                     },
                                     "operationId":"0a5b1651-c56e-4263-8c26-c8f8a6ef72d8"
                                   }"""

    String xmlMsoCompletionRequest = """<aetgt:MsoCompletionRequest xmlns:aetgt="http://org.onap/so/workflow/schema/v1"
                            xmlns:ns="http://org.onap/so/request/types/v1"
                            xmlns:w1aaan0="http://org.onap/so/infra/vnf-request/v1">
   <w1aaan0:request-info>
      <w1aaan0:request-id>56c881ad-6c9d-4b79-aacc-401e5640b47f</w1aaan0:request-id>
      <w1aaan0:action>SCALE</w1aaan0:action>
      <w1aaan0:source>null</w1aaan0:source>
   </w1aaan0:request-info>
   <status-message>Service Instance was scaled successfully.</status-message>
   <serviceInstanceId>56c881ad-6c9d-4b79-aacc-401e5640b47f</serviceInstanceId>
   <mso-bpel-name>ScaleGenericALaCarteServiceInstance</mso-bpel-name>
</aetgt:MsoCompletionRequest>"""

    String requestInfo = """<request-info xmlns="http://org.onap/so/infra/vnf-request/v1">
					<request-id>56c881ad-6c9d-4b79-aacc-401e5640b47f</request-id>
					<action>SCALE</action>
					<source>null</source>
				   </request-info>"""

    String payload ="""<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
                        xmlns:ns="http://org.onap.so/requestsdb">
                        <soapenv:Header/>
                        <soapenv:Body>
                            <ns:updateServiceOperationStatus xmlns:ns="http://org.onap.so/requestsdb">
                            <serviceId>56c881ad-6c9d-4b79-aacc-401e5640b47f</serviceId>
                            <operationId>0a5b1651-c56e-4263-8c26-c8f8a6ef72d8</operationId>
                            <operationType>SCALE</operationType>
                            <userId></userId>
                            <result>processing</result>
                            <operationContent>Prepare service scaling</operationContent>
                            <progress>0</progress>
                            <reason></reason>
                        </ns:updateServiceOperationStatus>
                    </soapenv:Body>
                </soapenv:Envelope>"""

    @Before
    public void init()
    {
        MockitoAnnotations.initMocks(this)
    }

    @Test
    public void preProcessRequestTest() {
        println "************ preProcessRequest_Payload ************* "
        ExecutionEntity mockExecution = mock(ExecutionEntity.class)

        // Initialize prerequisite variables
        when(mockExecution.getVariable("isDebugLogEnabled")).thenReturn("true")
        when(mockExecution.getVariable("bpmnRequest")).thenReturn(jsonIncomingRequest)

        when(mockExecution.getVariable("mso-request-id")).thenReturn("56c881ad-6c9d-4b79-aacc-401e5640b47f")
        when(mockExecution.getVariable("serviceInstanceId")).thenReturn("56c881ad-6c9d-4b79-aacc-401e5640b47f")

        ScaleCustomE2EServiceInstance scaleCustomE2EServiceInstance = new ScaleCustomE2EServiceInstance()
        scaleCustomE2EServiceInstance.preProcessRequest(mockExecution)

        verify(mockExecution).setVariable("globalSubscriberId", globalSubscriberId)
        verify(mockExecution).setVariable("prefix", Prefix)
        verify(mockExecution).setVariable("requestDescription", requestDescription)
    }

    @Test
    public void sendSyncResponseTest() {
        println "************ sendSyncResponse ************* "
        ExecutionEntity mockExecution = mock(ExecutionEntity.class)

        when(mockExecution.getVariable("isDebugLogEnabled")).thenReturn("true")
        when(mockExecution.getVariable("operationId")).thenReturn("3338b250-e995-4782-8936-081b66ba4dbf")
        when(mockExecution.getVariable("serviceInstanceId")).thenReturn("56c881ad-6c9d-4b79-aacc-401e5640b47f")

        ScaleCustomE2EServiceInstance scaleCustomE2EServiceInstance = new ScaleCustomE2EServiceInstance()
        scaleCustomE2EServiceInstance.sendSyncResponse(mockExecution)

        verify(mockExecution).setVariable("sentSyncResponse", true)
    }

    @Test
    public void prepareCompletionRequestTest() {
        println "************ prepareCompletionRequest ************* "
        ExecutionEntity mockExecution = mock(ExecutionEntity.class)

        when(mockExecution.getVariable("isDebugLogEnabled")).thenReturn("true")
        when(mockExecution.getVariable("msoRequestId")).thenReturn("56c881ad-6c9d-4b79-aacc-401e5640b47f")
        when(mockExecution.getVariable("serviceInstanceId")).thenReturn("56c881ad-6c9d-4b79-aacc-401e5640b47f")

        ScaleCustomE2EServiceInstance scaleCustomE2EServiceInstance = new ScaleCustomE2EServiceInstance()
        scaleCustomE2EServiceInstance.prepareCompletionRequest(mockExecution)

        verify(mockExecution).setVariable("CompleteMsoProcessRequest", xmlMsoCompletionRequest)

    }

    @Test
    public void prepareInitServiceOperationStatusTest() {
        println "************ prepareInitServiceOperationStatus ************* "
        ExecutionEntity mockExecution = mock(ExecutionEntity.class)

        when(mockExecution.getVariable("serviceInstanceId")).thenReturn("56c881ad-6c9d-4b79-aacc-401e5640b47f")
        //when(mockExecution.getVariable("serviceInstanceName")).thenReturn("XXXX")
        when(mockExecution.getVariable("operationId")).thenReturn("0a5b1651-c56e-4263-8c26-c8f8a6ef72d8")

        ScaleCustomE2EServiceInstance scaleCustomE2EServiceInstance = new ScaleCustomE2EServiceInstance()
        scaleCustomE2EServiceInstance.prepareInitServiceOperationStatus(mockExecution)

        payload = utils.formatXml(payload)
        verify(mockExecution).setVariable("CVFMI_updateServiceOperStatusRequest", payload)
    }

}