Migrate to Java 8 Time API
[appc.git] / appc-dispatcher / appc-command-executor / appc-command-executor-core / src / test / java / org / openecomp / appc / executor / TestCommandExecutionTask.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
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
22 package org.openecomp.appc.executor;
23 /**
24  *
25  */
26
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.junit.runner.RunWith;
30 import org.mockito.Mockito;
31 import org.mockito.invocation.InvocationOnMock;
32 import org.mockito.stubbing.Answer;
33 import org.openecomp.appc.domainmodel.lcm.*;
34 import org.openecomp.appc.domainmodel.lcm.Flags.Mode;
35 import org.openecomp.appc.executor.impl.CommandTask;
36 import org.openecomp.appc.executor.impl.CommandTaskFactory;
37 import org.openecomp.appc.executor.impl.LCMCommandTask;
38 import org.openecomp.appc.executor.impl.LCMReadonlyCommandTask;
39 import org.openecomp.appc.executor.objects.*;
40 import org.openecomp.appc.lifecyclemanager.LifecycleManager;
41 import org.openecomp.appc.requesthandler.RequestHandler;
42 import org.openecomp.appc.workflow.WorkFlowManager;
43 import org.openecomp.appc.workflow.objects.WorkflowRequest;
44 import org.openecomp.appc.workflow.objects.WorkflowResponse;
45 import org.openecomp.sdnc.sli.SvcLogicContext;
46 import org.openecomp.sdnc.sli.SvcLogicException;
47 import org.openecomp.sdnc.sli.SvcLogicResource;
48 import org.openecomp.sdnc.sli.aai.AAIService;
49 import org.osgi.framework.Bundle;
50 import org.osgi.framework.BundleContext;
51 import org.osgi.framework.FrameworkUtil;
52 import org.osgi.framework.ServiceReference;
53 import org.powermock.api.mockito.PowerMockito;
54 import org.powermock.core.classloader.annotations.PrepareForTest;
55 import org.powermock.modules.junit4.PowerMockRunner;
56
57 import java.time.Instant;
58 import java.util.Date;
59 import java.util.HashMap;
60 import java.util.Map;
61 import java.util.Properties;
62
63 import static junit.framework.Assert.assertEquals;
64 import static org.mockito.Matchers.*;
65
66
67
68 @RunWith(PowerMockRunner.class)
69 @PrepareForTest( {FrameworkUtil.class, CommandTask.class, LCMCommandTask.class})
70 public class TestCommandExecutionTask {
71
72         private static final String TTL_FLAG= "TTL";
73         private static final String API_VERSION= "2.0.0";
74         private static final String ORIGINATOR_ID= "1";
75         private LCMCommandTask executionTask;
76         private LCMReadonlyCommandTask LCMReadonlyCommandTask;
77         private CommandTaskFactory factory ;
78
79         private RequestHandler requestHandler;
80         private WorkFlowManager workflowManager;
81         private AAIService aaiService;
82         private LifecycleManager lifecyclemanager;
83
84         private final BundleContext bundleContext=Mockito.mock(BundleContext.class);
85         private final Bundle bundleService=Mockito.mock(Bundle.class);
86         private final ServiceReference sref=Mockito.mock(ServiceReference.class);
87
88         @Before
89         public void init() throws SvcLogicException {
90
91                 // ***
92                 AAIService aaiService = Mockito.mock(AAIService.class);;
93                 PowerMockito.mockStatic(FrameworkUtil.class);
94                 PowerMockito.when(FrameworkUtil.getBundle(AAIService.class)).thenReturn(bundleService);
95                 PowerMockito.when(bundleService.getBundleContext()).thenReturn(bundleContext);
96                 PowerMockito.when(bundleContext.getServiceReference(AAIService.class.getName())).thenReturn(sref);
97                 PowerMockito.when(bundleContext.getService(sref)).thenReturn(aaiService);
98                 PowerMockito.when(aaiService.query(anyString(),anyBoolean(),anyString(),anyString(),anyString(),anyString(),(SvcLogicContext)anyObject())).thenAnswer(new Answer<SvcLogicResource.QueryStatus>() {
99                         @Override
100                         public SvcLogicResource.QueryStatus answer(InvocationOnMock invocation) throws Throwable {
101                                 Object[] args = invocation.getArguments();
102                                 SvcLogicContext ctx =(SvcLogicContext)args[6];
103                                 String prefix = (String)args[4];
104                                 String key = (String)args[3];
105                                 if(key.contains("'28'")){
106                                         return  SvcLogicResource.QueryStatus.FAILURE ;
107                                 }else if ( key.contains("'8'")) {
108                                         return  SvcLogicResource.QueryStatus.NOT_FOUND ;
109                                 }else {
110                                         ctx.setAttribute(prefix + ".vnf-type", "FIREWALL");
111                                         ctx.setAttribute(prefix + ".orchestration-status", "INSTANTIATED");
112                                 }
113                                 return  SvcLogicResource.QueryStatus.SUCCESS ;
114                         }
115                 });
116                 PowerMockito.when(aaiService.update(anyString(),anyString(),(Map)anyObject(),anyString(),(SvcLogicContext)anyObject())).thenReturn(SvcLogicResource.QueryStatus.SUCCESS);
117
118                 requestHandler =  Mockito.mock(RequestHandler.class);
119                 workflowManager = Mockito.mock(WorkFlowManager.class);
120                 lifecyclemanager = Mockito.mock(LifecycleManager.class );
121
122                 executionTask = new LCMCommandTask(requestHandler,workflowManager,lifecyclemanager);
123                 LCMReadonlyCommandTask = new LCMReadonlyCommandTask(requestHandler,workflowManager);
124                 factory = new CommandTaskFactory();
125                 factory.setLifecyclemanager(lifecyclemanager);
126                 factory.setWorkflowManager(workflowManager);
127                 factory.setRequestHandler(requestHandler);
128                 Mockito.when(workflowManager.executeWorkflow((WorkflowRequest)anyObject())).thenReturn(getWorkflowResponse () );
129         }
130
131
132         @Test
133         public void testFactory(){
134                 CommandTask task = factory.getExecutionTask("Configure");
135                 assertEquals(LCMCommandTask.class,task.getClass() );
136                 task = factory.getExecutionTask("Sync");
137                 assertEquals(LCMReadonlyCommandTask.class,task.getClass() );
138
139         }
140
141
142
143         @Test
144         public void testOnRequestCompletion(){
145                 Mockito.doNothing().when(requestHandler).onRequestTTLEnd((RuntimeContext) anyObject(),anyBoolean());
146                 RuntimeContext request = pouplateCommandExecutorInput("FIREWALL", 30, "1.0", Instant.now(), API_VERSION, "11", ORIGINATOR_ID, "", VNFOperation.Configure, "1", "");
147                 CommandResponse response = getCommandResponse(VNFOperation.Configure, true, "11", "","1");
148                 executionTask.onRequestCompletion(request, response);
149         }
150
151         @Test
152         public void testRunGetConfig(){
153                 RuntimeContext request = pouplateCommandExecutorInput("FIREWALL", 30, "1.0", Instant.now(), API_VERSION, "11", ORIGINATOR_ID, "", VNFOperation.Sync, "1", "");
154                 LCMReadonlyCommandTask.setCommandRequest(request);
155                 LCMReadonlyCommandTask.run();
156         }
157
158         @Test
159         public void testRun(){
160                 RuntimeContext request = pouplateCommandExecutorInput("FIREWALL", 30, "1.0", Instant.now(), API_VERSION, "11", ORIGINATOR_ID, "", VNFOperation.Sync, "1", "");
161                 executionTask.setCommandRequest(request);
162                 executionTask.run();
163         }
164
165         @Test
166         public void testRunNegative(){
167                 RuntimeContext request = pouplateCommandExecutorInput("FIREWALL", 30, "1.0", Instant.now(), API_VERSION, "11", ORIGINATOR_ID, "", VNFOperation.Sync, "1", "");
168                 executionTask.setCommandRequest(request);
169                 executionTask.run();
170         }
171
172
173         CommandResponse getCommandResponse(VNFOperation action , boolean success, String responseId, String payload, String vnfId){
174                 CommandResponse commandResponse = new CommandResponse();
175                 RuntimeContext runtimeContext = new RuntimeContext();
176                 commandResponse.setRuntimeContext(runtimeContext);
177                 ResponseContext responseContext = new ResponseContext();
178                 runtimeContext.setResponseContext(responseContext);
179                 RequestContext requestContext = new RequestContext();
180                 runtimeContext.setRequestContext(requestContext);
181                 CommonHeader commonHeader = new CommonHeader();
182                 requestContext.setCommonHeader(commonHeader);
183                 responseContext.setCommonHeader(commonHeader);
184                 commonHeader.setFlags(new Flags(null, false, 0));
185                 ActionIdentifiers actionIdentifiers = new ActionIdentifiers();
186                 requestContext.setActionIdentifiers(actionIdentifiers);
187                 VNFContext vnfContext = new VNFContext();
188                 runtimeContext.setVnfContext(vnfContext);
189                 requestContext.setAction(action);
190                 runtimeContext.setRpcName(action.name().toLowerCase());
191                 commonHeader.setApiVer(API_VERSION);
192                 responseContext.setStatus(new Status(100, null));
193                 commonHeader.setRequestId(responseId);
194                 responseContext.setPayload(payload);
195                 commonHeader.setTimestamp(Instant.now());
196                 vnfContext.setId(vnfId);
197                 return commandResponse;
198         }
199
200
201
202         @Test
203         public void testPositiveFlow_configure()  {
204
205                 String requestId = "1";
206
207                 RuntimeContext commandExecutorInput = pouplateCommandExecutorInput("FIREWALL",30, "1.0", Instant.now(), API_VERSION, requestId, ORIGINATOR_ID, "", VNFOperation.Configure, "33", "");
208         }
209
210
211         private Map<String,Object> setTTLInFlags( String value){
212                 Map<String,Object> flags = new HashMap<String,Object>();
213                 if( value != null || !("".equalsIgnoreCase(value))){
214                         flags.put(TTL_FLAG, value);
215                 }
216                 return flags;
217         }
218
219
220         public WorkflowResponse getWorkflowResponse (){
221                 WorkflowResponse wfResponse = new WorkflowResponse();
222                 ResponseContext responseContext = createResponseContextWithSuObjects();
223                 wfResponse.setResponseContext(responseContext);
224                 responseContext.setPayload("");
225                 wfResponse.getResponseContext().setStatus(new Status(100, null));
226                 return wfResponse;
227         }
228
229         private RuntimeContext pouplateCommandExecutorInput(String vnfType, int ttl, String vnfVersion, Instant timeStamp, String apiVersion, String requestId, String originatorID, String subRequestID, VNFOperation action, String vnfId , String payload){
230                 RuntimeContext commandExecutorInput = createCommandExecutorInputWithSubObjects();
231                 RequestContext requestContext = commandExecutorInput.getRequestContext();
232                 ResponseContext responseContext = createResponseContextWithSuObjects();
233                 commandExecutorInput.setResponseContext(responseContext);
234
235                 requestContext.getCommonHeader().setFlags(new Flags(null, false, ttl));
236                 requestContext.getCommonHeader().setApiVer(apiVersion);
237                 requestContext.getCommonHeader().setTimestamp(timeStamp);
238                 requestContext.getCommonHeader().setRequestId(requestId);
239                 requestContext.getCommonHeader().setSubRequestId(subRequestID);
240                 requestContext.getCommonHeader().setOriginatorId(originatorID);
241                 requestContext.setAction(action);
242                 requestContext.setPayload(payload);
243                 requestContext.getActionIdentifiers().setVnfId(vnfId);
244                 VNFContext vnfContext = commandExecutorInput.getVnfContext();
245                 vnfContext.setType(vnfType);
246                 vnfContext.setId(vnfId);
247                 vnfContext.setVersion(vnfVersion);
248                 return commandExecutorInput;
249         }
250
251         private RuntimeContext createCommandExecutorInputWithSubObjects() {
252                 return createRuntimeContextWithSubObjects();
253         }
254
255         private RuntimeContext createRuntimeContextWithSubObjects() {
256                 RuntimeContext runtimeContext = new RuntimeContext();
257                 RequestContext requestContext = new RequestContext();
258                 runtimeContext.setRequestContext(requestContext);
259                 CommonHeader commonHeader = new CommonHeader();
260                 requestContext.setCommonHeader(commonHeader);
261                 commonHeader.setFlags(new Flags(null, false, 0));
262                 ActionIdentifiers actionIdentifiers = new ActionIdentifiers();
263                 requestContext.setActionIdentifiers(actionIdentifiers);
264                 VNFContext vnfContext = new VNFContext();
265                 runtimeContext.setVnfContext(vnfContext);
266                 return runtimeContext;
267
268         }
269
270         private ResponseContext createResponseContextWithSuObjects(){
271                 ResponseContext responseContext = new ResponseContext();
272                 CommonHeader commonHeader = new CommonHeader();
273                 responseContext.setCommonHeader(commonHeader);
274                 responseContext.setStatus(new Status(0, null));
275                 commonHeader.setFlags(new Flags(null, false, 0));
276                 return responseContext;
277         }
278
279 }
280