Push variuos changes
[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.mockito.Mockito;
29 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
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 import static org.mockito.Mockito.mock;
38
39 @RunWith(SpringJUnit4ClassRunner.class)
40 public class MusicExceptionMapperTest {
41
42     @Test
43     public void testToResponse() {
44         MusicExceptionMapper musicExceptionMapper = new MusicExceptionMapper();
45         UnrecognizedPropertyException unrecognizedPropertyException = mock(UnrecognizedPropertyException.class);
46         Response response = musicExceptionMapper.toResponse(unrecognizedPropertyException);
47         assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus());
48         assertTrue(((Map)response.getEntity()).get("error").toString().startsWith("Unknown field :"));
49
50         EOFException eofException = mock(EOFException.class);
51         response = musicExceptionMapper.toResponse(eofException);
52         assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus());
53         assertTrue(((Map)response.getEntity()).get("error").toString().equals("Request body cannot be empty".trim()));
54
55         IllegalArgumentException illegalArgumentException = mock(IllegalArgumentException.class);
56         Mockito.when(illegalArgumentException.getMessage()).thenReturn("ERROR MSG");
57         response = musicExceptionMapper.toResponse(illegalArgumentException);
58         assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus());
59         assertTrue(((Map)response.getEntity()).get("error").toString().equals("ERROR MSG".trim()));
60     }
61 }