4a51d34c3e46f107f743c6fe7c30c968f73284f1
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / bpmn / common / WorkflowContextHolderTest.java
1 /*- 
2  * ============LICENSE_START======================================================= 
3  * ONAP - SO 
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.onap.so.bpmn.common;
22
23
24
25 import java.util.UUID;
26 import org.junit.Assert;
27 import org.junit.Test;
28 import org.onap.so.bpmn.common.workflow.context.WorkflowCallbackResponse;
29 import org.onap.so.bpmn.common.workflow.context.WorkflowContext;
30 import org.onap.so.bpmn.common.workflow.context.WorkflowContextHolder;
31 import org.onap.so.bpmn.common.workflow.context.WorkflowResponse;
32
33
34 public class WorkflowContextHolderTest {
35
36
37         @Test
38         public void testProcessCallback() throws Exception {
39                 String requestId = UUID.randomUUID().toString();                
40                 String message = "TEST MESSATGE";
41                 String responseMessage = "Successfully processed request";
42                 int testCode = 200;             
43                 
44                 
45                 WorkflowContextHolder contextHolder = WorkflowContextHolder.getInstance();
46                  
47                 WorkflowCallbackResponse callbackResponse = new WorkflowCallbackResponse();
48                 callbackResponse.setMessage(message);
49                 callbackResponse.setResponse(responseMessage);
50                 callbackResponse.setStatusCode(testCode);
51                 
52                 contextHolder.processCallback("testAsyncProcess","process-instance-id",requestId,callbackResponse);
53                 
54                 //same object returned
55                 WorkflowContext contextFound = contextHolder.getWorkflowContext(requestId);
56                 if(contextFound == null)
57                         throw new Exception("Expected to find Context Object");
58                 
59                 WorkflowResponse testResponse = contextFound.getWorkflowResponse();
60                 Assert.assertEquals(200,testResponse.getMessageCode());
61                 Assert.assertEquals(message, testResponse.getMessage());
62                 Assert.assertEquals(responseMessage, testResponse.getResponse());
63                 
64                 
65
66         }
67
68 }