a0bed927e8c34cfb4de53dffbc36aa8de41e51ca
[so.git] / mso-api-handlers / mso-api-handler-common / src / test / java / org / openecomp / mso / camunda / tests / BPELRestClientTest.java
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.camunda.tests;
22
23
24 import static org.junit.Assert.assertEquals;
25
26 import java.io.IOException;
27 import java.util.Properties;
28
29 import org.apache.http.HttpResponse;
30 import org.apache.http.HttpStatus;
31 import org.apache.http.ProtocolVersion;
32 import org.apache.http.client.HttpClient;
33 import org.apache.http.client.methods.HttpPost;
34 import org.apache.http.entity.StringEntity;
35 import org.apache.http.message.BasicHttpResponse;
36 import org.apache.http.message.BasicStatusLine;
37 import org.codehaus.jackson.JsonGenerationException;
38 import org.codehaus.jackson.map.JsonMappingException;
39 import org.junit.Before;
40 import org.junit.Test;
41 import org.mockito.Mock;
42 import org.mockito.Mockito;
43 import org.mockito.MockitoAnnotations;
44
45 import org.openecomp.mso.apihandler.common.CommonConstants;
46 import org.openecomp.mso.apihandler.common.RequestClient;
47 import org.openecomp.mso.apihandler.common.RequestClientFactory;
48 import org.openecomp.mso.properties.MsoJavaProperties;
49
50
51 /**
52  * This class implements test methods of Camunda Beans.
53  * 
54  *
55  */
56 public class BPELRestClientTest {
57
58
59
60         @Mock
61         private HttpClient mockHttpClient;
62
63         @Before
64         public void setUp() {
65                 MockitoAnnotations.initMocks(this);
66         }
67
68         @Test
69         public void tesBPELPost() throws JsonGenerationException,
70         JsonMappingException, IOException {
71
72
73                 String responseBody ="<layer3activate:service-response xmlns:layer3activate=\"http://org.openecomp/mso/request/layer3serviceactivate/schema/v1\""
74                                                                                                 + "xmlns:reqtype=\"http://org.openecomp/mso/request/types/v1\""
75                                                                                                 + "xmlns:aetgt=\"http://schemas.activebpel.org/REST/2007/12/01/aeREST.xsd\""
76                                                                                                 + "xmlns:types=\"http://schemas.activebpel.org/REST/2007/12/01/aeREST.xsd\">"
77                                                                                                 + "<reqtype:request-id>req5</reqtype:request-id>"
78                                                                                                 + "<reqtype:request-action>Layer3ServiceActivateRequest</reqtype:request-action>"
79                                                                                                 + "<reqtype:source>OMX</reqtype:source>"
80                                                                                                 + "<reqtype:ack-final-indicator>n</reqtype:ack-final-indicator>"
81                                                                                                 + "</layer3activate:service-response>";
82                 
83                 HttpResponse mockResponse = createResponse(200, responseBody);
84                 mockHttpClient = Mockito.mock(HttpClient.class);
85                 Mockito.when(mockHttpClient.execute(Mockito.any(HttpPost.class)))
86                 .thenReturn(mockResponse);
87
88                 String reqXML = "<xml>test</xml>";
89                 String orchestrationURI = "/active-bpel/services/REST/MsoLayer3ServiceActivate";
90
91                 MsoJavaProperties props = new MsoJavaProperties();
92                 props.setProperty(CommonConstants.BPEL_URL, "http://localhost:8089");
93                 props.setProperty("bpelAuth", "786864AA53D0DCD881AED1154230C0C3058D58B9339D2EFB6193A0F0D82530E1");
94
95                 RequestClient requestClient = RequestClientFactory.getRequestClient(orchestrationURI, props);
96                 requestClient.setClient(mockHttpClient);
97                 HttpResponse response = requestClient.post(reqXML, "reqId", "timeout", "version", null, null);
98
99
100                 int statusCode = response.getStatusLine().getStatusCode();
101                 assertEquals(requestClient.getType(), CommonConstants.BPEL);
102                 assertEquals(statusCode, HttpStatus.SC_OK);
103
104
105         }
106
107         private HttpResponse createResponse(int respStatus, 
108                         String respBody) {
109                 HttpResponse response = new BasicHttpResponse(
110                                 new BasicStatusLine(
111                                                 new ProtocolVersion("HTTP", 1, 1), respStatus, ""));
112                 response.setStatusCode(respStatus);
113                 try {
114                         response.setEntity(new StringEntity(respBody));
115                         response.setHeader("Content-Type", "text/xml");
116                 } catch (Exception e) {
117                         e.printStackTrace();
118                 }
119                 return response;
120         }
121
122
123
124
125
126 }