update the package name
[dmaap/messagerouter/messageservice.git] / src / test / java / org / onap / dmaap / DMaaPCambriaExceptionMapperTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
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.dmaap;
22
23 import static org.junit.Assert.assertTrue;
24
25 import org.json.JSONObject;
26 import org.junit.After;
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.junit.runner.RunWith;
30 import org.mockito.InjectMocks;
31 import org.mockito.Mock;
32 import org.powermock.api.mockito.PowerMockito;
33 import org.powermock.modules.junit4.PowerMockRunner;
34
35 import org.onap.dmaap.dmf.mr.CambriaApiException;
36 import org.onap.dmaap.dmf.mr.exception.DMaaPErrorMessages;
37 import org.onap.dmaap.dmf.mr.exception.ErrorResponse;
38 @RunWith(PowerMockRunner.class)
39 public class DMaaPCambriaExceptionMapperTest {
40
41         @InjectMocks
42         DMaaPCambriaExceptionMapper mapper;
43
44         @Mock
45         private ErrorResponse errRes;
46         
47         @Mock
48         private DMaaPErrorMessages msgs;
49         
50         @Mock
51         CambriaApiException exc;
52         
53         @Mock
54         JSONObject json;
55
56         
57         @Before
58         public void setUp() throws Exception {
59         }
60
61         @After
62         public void tearDown() throws Exception {
63         }
64
65         @Test
66         public void testToResponse() {
67                 try {
68                         mapper.toResponse(null);
69                 } catch (NullPointerException e) {
70                         assertTrue(true);
71                 }
72
73         }
74
75         
76         @Test
77         public void testToResponseCambriaApiException2() {
78                 PowerMockito.when(msgs.getNotFound()).thenReturn("Not found");
79                 try {
80                         mapper.toResponse(new CambriaApiException(404,"Not found"));
81                 } catch (NullPointerException e) {
82                         assertTrue(true);
83                 }
84                 assertTrue(true);
85         }
86 }