c8e1266b904a60b281a5f4fb6e2c1a450dda971a
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / client / ResponseExceptionMapperImplTest.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.client;
22
23 import static org.assertj.core.api.Assertions.assertThatCode;
24 import static org.assertj.core.api.Assertions.assertThatThrownBy;
25 import static org.mockito.Mockito.mock;
26 import static org.mockito.Mockito.when;
27
28 import java.io.ByteArrayInputStream;
29 import java.io.UnsupportedEncodingException;
30 import java.nio.charset.StandardCharsets;
31
32 import javax.ws.rs.BadRequestException;
33 import javax.ws.rs.ForbiddenException;
34 import javax.ws.rs.InternalServerErrorException;
35 import javax.ws.rs.NotAcceptableException;
36 import javax.ws.rs.NotAllowedException;
37 import javax.ws.rs.NotAuthorizedException;
38 import javax.ws.rs.NotFoundException;
39 import javax.ws.rs.NotSupportedException;
40 import javax.ws.rs.WebApplicationException;
41 import javax.ws.rs.core.Response;
42 import javax.ws.rs.core.Response.Status;
43
44 import org.junit.Test;
45 import org.junit.runner.RunWith;
46 import org.onap.so.BaseTest;
47 import junitparams.JUnitParamsRunner;
48 import junitparams.Parameters;
49
50 @RunWith(JUnitParamsRunner.class)
51 public class ResponseExceptionMapperImplTest{
52
53     private static final ResponseExceptionMapperImpl mapper = new ResponseExceptionMapperImpl();
54
55     public static Object[][] statusesAndCorrespondingExceptions() {
56         return new Object[][]{
57                 {Status.BAD_REQUEST, BadRequestException.class},
58                 {Status.UNAUTHORIZED, NotAuthorizedException.class},
59                 {Status.FORBIDDEN, ForbiddenException.class},
60                 {Status.NOT_FOUND, NotFoundException.class},
61                 {Status.METHOD_NOT_ALLOWED, NotAllowedException.class},
62                 {Status.NOT_ACCEPTABLE, NotAcceptableException.class},
63                 {Status.PRECONDITION_FAILED, PreconditionFailedException.class},
64                 {Status.UNSUPPORTED_MEDIA_TYPE, NotSupportedException.class},
65                 {Status.INTERNAL_SERVER_ERROR, InternalServerErrorException.class},
66                 {Status.SERVICE_UNAVAILABLE, WebApplicationException.class},
67                 {Status.BAD_GATEWAY, WebApplicationException.class},
68         };
69     }
70
71     @Test
72     @Parameters(method = "statusesAndCorrespondingExceptions")
73     public void shouldThrowExceptionWhenStatusIsNotOk(Status status, Class<Exception> expectedException) {
74         // given
75         Response response = createMockResponse(status);
76         // when, then
77         assertThatThrownBy(() -> mapper.map(response)).isInstanceOf(expectedException);
78     }
79
80     @Test
81     public void shouldNotThrowExceptionWhenStatusIsOk() {
82         // given
83         Response response = createMockResponse(Status.OK);
84         // when, then
85         assertThatCode(() -> mapper.map(response)).doesNotThrowAnyException();
86     }
87
88     @Test
89     public void shouldThrowExceptionWithCustomMessageWhenResponseHasEntity() throws UnsupportedEncodingException {
90         // given
91         Response response = createMockResponse(Status.BAD_REQUEST);
92         when(response.hasEntity()).thenReturn(true);
93         when(response.getEntity()).thenReturn(new ByteArrayInputStream("test message".getBytes(StandardCharsets.UTF_8)));
94         // when, then
95         assertThatThrownBy(() -> mapper.map(response)).isInstanceOf(BadRequestException.class)
96                 .hasMessage("test message");
97     }
98
99     @Test
100     public void shouldThrowExceptionWithDefaultMessageWhenResponseHasNoEntity() {
101         // given
102         Response response = createMockResponse(Status.BAD_REQUEST);
103         when(response.hasEntity()).thenReturn(false);
104         // when, then
105         assertThatThrownBy(() -> mapper.map(response)).isInstanceOf(BadRequestException.class)
106                 .hasMessage("empty message");
107     }
108
109     private static Response createMockResponse(Status status) {
110         Response responseContext = mock(Response.class);
111         when(responseContext.getStatusInfo()).thenReturn(status);
112         when(responseContext.getStatus()).thenReturn(status.getStatusCode());
113         return responseContext;
114     }
115 }