Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-api-handlers / mso-api-handler-infra / src / test / java / org / onap / so / apihandler / common / ResponseBuilderTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 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.apihandler.common;
22
23 import static org.junit.Assert.assertEquals;
24 import javax.ws.rs.core.HttpHeaders;
25 import javax.ws.rs.core.Response;
26 import org.apache.http.HttpStatus;
27 import org.junit.Test;
28 import org.onap.so.apihandlerinfra.BaseTest;
29 import org.onap.so.apihandlerinfra.exceptions.ApiException;
30 import org.springframework.beans.factory.annotation.Autowired;
31
32 public class ResponseBuilderTest extends BaseTest {
33
34     @Autowired
35     private ResponseBuilder builder;
36
37     @Test
38     public void testBuildResponseResponse() throws ApiException {
39
40         String requestId = null;
41         String apiVersion = "1";
42         String jsonResponse = "Successfully started the process";
43
44         Response response = builder.buildResponse(HttpStatus.SC_ACCEPTED, requestId, jsonResponse, apiVersion);
45
46         assertEquals(202, response.getStatus());
47         assertEquals("application/json", response.getHeaders().get(HttpHeaders.CONTENT_TYPE).get(0));
48         assertEquals("0", response.getHeaders().get("X-MinorVersion").get(0));
49         assertEquals("0", response.getHeaders().get("X-PatchVersion").get(0));
50         assertEquals("1.0.0", response.getHeaders().get("X-LatestVersion").get(0));
51
52     }
53
54     @Test
55     public void testBuildResponseVersion() throws ApiException {
56
57         String requestId = "123456-67889";
58         String apiVersion = "v5";
59         String jsonResponse = "Successfully started the process";
60
61         Response response = builder.buildResponse(HttpStatus.SC_CREATED, requestId, jsonResponse, apiVersion);
62
63         assertEquals(201, response.getStatus());
64         assertEquals("application/json", response.getHeaders().get(HttpHeaders.CONTENT_TYPE).get(0));
65         assertEquals("0", response.getHeaders().get("X-MinorVersion").get(0));
66         assertEquals("0", response.getHeaders().get("X-PatchVersion").get(0));
67         assertEquals("5.0.0", response.getHeaders().get("X-LatestVersion").get(0));
68
69     }
70
71 }