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