/*- * ============LICENSE_START======================================================= * ONAP - SO * ================================================================================ * Copyright (C) 2017 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.openecomp.mso.camunda.tests; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import java.io.IOException; import org.apache.http.HttpResponse; import org.apache.http.HttpStatus; import org.apache.http.ProtocolVersion; import org.apache.http.entity.StringEntity; import org.apache.http.message.BasicHttpResponse; import org.apache.http.message.BasicStatusLine; import org.codehaus.jackson.JsonGenerationException; import org.codehaus.jackson.map.JsonMappingException; import org.junit.Test; import org.openecomp.mso.apihandler.common.ResponseHandler; /** * This class implements test methods of CamundaResoponseHandler. */ public class ResponseHandlerTest { @Test public void tesParseCamundaResponse() throws JsonGenerationException, JsonMappingException, IOException { // String body // ="{\"links\":[{\"method\":\"GET\",\"href\":\"http://localhost:9080/engine-rest/process-instance/2047c658-37ae-11e5-9505-7a1020524153\",\"rel\":\"self\"}],\"id\":\"2047c658-37ae-11e5-9505-7a1020524153\",\"definitionId\":\"dummy:10:73298961-37ad-11e5-9505-7a1020524153\",\"businessKey\":null,\"caseInstanceId\":null,\"ended\":true,\"suspended\":false}"; String body = "{ \"response\": \"xml\"," + "\"messageCode\": 200," + "\"message\": \"Successfully started the process\"}"; HttpResponse response = createResponse(200, body, "application/json"); ResponseHandler respHandler = new ResponseHandler(response, 1); int status = respHandler.getStatus(); assertEquals(status, HttpStatus.SC_ACCEPTED); assertEquals(respHandler.getResponse().getMessage(), "Successfully started the process"); } @Test public void tesParseBpelResponse() throws JsonGenerationException, JsonMappingException, IOException { String body = "" + "req5" + "Layer3ServiceActivateRequest" + "OMX" + "n" + ""; HttpResponse response = createResponse(200, body, "text/xml"); ResponseHandler respHandler = new ResponseHandler(response, 0); int status = respHandler.getStatus(); assertEquals(status, HttpStatus.SC_ACCEPTED); assertTrue(respHandler.getResponseBody() != null); } @Test public void tes404ErrorResponse() throws JsonGenerationException, JsonMappingException, IOException { HttpResponse response = createResponse(HttpStatus.SC_NOT_FOUND, "error", "text/html"); ResponseHandler respHandler = new ResponseHandler(response, 1); int status = respHandler.getStatus(); assertEquals(HttpStatus.SC_NOT_IMPLEMENTED, status); } @Test public void tesGenricErrorResponse() throws JsonGenerationException, JsonMappingException, IOException { String body = "{ \"response\": \"xml\"," + "\"messageCode\": 500," + "\"message\": \"Something went wrong\"}"; HttpResponse response = createResponse(500, body, "application/json"); ResponseHandler respHandler = new ResponseHandler(response, 1); int status = respHandler.getStatus(); assertEquals(HttpStatus.SC_BAD_GATEWAY, status); assertEquals(respHandler.getResponse().getMessage(), "Something went wrong"); System.out.println(respHandler.getResponseBody()); } private HttpResponse createResponse(int respStatus, String respBody, String contentType) { HttpResponse response = new BasicHttpResponse(new BasicStatusLine(new ProtocolVersion("HTTP", 1, 1), respStatus, "")); response.setStatusCode(respStatus); try { response.setEntity(new StringEntity(respBody)); response.setHeader("Content-Type", contentType); } catch (Exception e) { e.printStackTrace(); } return response; } }