Merge "AppMessages.java - Sonar Fixes"
[music.git] / src / test / java / org / onap / music / exceptions / MusicExceptionMapperTest.java
1 /*
2  * ============LICENSE_START==========================================
3  * org.onap.music
4  * ===================================================================
5  * Copyright (c) 2019 IBM Intellectual Property
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  *
19  * ============LICENSE_END=============================================
20  * ====================================================================
21  */
22
23 package org.onap.music.exceptions;
24
25 import org.codehaus.jackson.map.exc.UnrecognizedPropertyException;
26 import org.junit.Test;
27 import org.junit.runner.RunWith;
28 import org.powermock.api.mockito.PowerMockito;
29 import org.powermock.modules.junit4.PowerMockRunner;
30
31 import javax.ws.rs.core.Response;
32 import java.io.EOFException;
33 import java.util.Map;
34
35 import static org.junit.Assert.assertEquals;
36 import static org.junit.Assert.assertTrue;
37
38 @RunWith(PowerMockRunner.class)
39 public class MusicExceptionMapperTest {
40
41     @Test
42     public void testToResponse() {
43         MusicExceptionMapper musicExceptionMapper = new MusicExceptionMapper();
44         UnrecognizedPropertyException unrecognizedPropertyException = PowerMockito.mock(UnrecognizedPropertyException.class);
45         Response response = musicExceptionMapper.toResponse(unrecognizedPropertyException);
46         assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus());
47         assertTrue(((Map)response.getEntity()).get("error").toString().startsWith("Unknown field :"));
48
49         EOFException eofException = PowerMockito.mock(EOFException.class);
50         response = musicExceptionMapper.toResponse(eofException);
51         assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus());
52         assertTrue(((Map)response.getEntity()).get("error").toString().equals("Request body cannot be empty".trim()));
53
54         IllegalArgumentException illegalArgumentException = PowerMockito.mock(IllegalArgumentException.class);
55         PowerMockito.when(illegalArgumentException.getMessage()).thenReturn("ERROR MSG");
56         response = musicExceptionMapper.toResponse(illegalArgumentException);
57         assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus());
58         assertTrue(((Map)response.getEntity()).get("error").toString().equals("ERROR MSG".trim()));
59     }
60 }