89c9400189e6521162a58f7b3f35ca0c79728158
[dmaap/messagerouter/messageservice.git] / src / test / java / com / att / nsa / dmaap / DMaaPCambriaExceptionMapperTest.java
1 /*-\r
2  * ============LICENSE_START=======================================================\r
3  * ONAP Policy Engine\r
4  * ================================================================================\r
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  * \r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * \r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ============LICENSE_END=========================================================\r
19  */\r
20 \r
21 package com.att.nsa.dmaap;\r
22 \r
23 import static org.junit.Assert.assertTrue;\r
24 \r
25 import org.json.JSONObject;\r
26 import org.junit.After;\r
27 import org.junit.Before;\r
28 import org.junit.Test;\r
29 import org.junit.runner.RunWith;\r
30 import org.mockito.InjectMocks;\r
31 import org.mockito.Mock;\r
32 import org.powermock.api.mockito.PowerMockito;\r
33 import org.powermock.modules.junit4.PowerMockRunner;\r
34 \r
35 import org.onap.dmaap.dmf.mr.CambriaApiException;\r
36 import org.onap.dmaap.dmf.mr.exception.DMaaPErrorMessages;\r
37 import org.onap.dmaap.dmf.mr.exception.ErrorResponse;\r
38 @RunWith(PowerMockRunner.class)\r
39 public class DMaaPCambriaExceptionMapperTest {\r
40 \r
41         @InjectMocks\r
42         DMaaPCambriaExceptionMapper mapper;\r
43 \r
44         @Mock\r
45         private ErrorResponse errRes;\r
46         \r
47         @Mock\r
48         private DMaaPErrorMessages msgs;\r
49         \r
50         @Mock\r
51         CambriaApiException exc;\r
52         \r
53         @Mock\r
54         JSONObject json;\r
55 \r
56         \r
57         @Before\r
58         public void setUp() throws Exception {\r
59         }\r
60 \r
61         @After\r
62         public void tearDown() throws Exception {\r
63         }\r
64 \r
65         @Test\r
66         public void testToResponse() {\r
67                 try {\r
68                         mapper.toResponse(null);\r
69                 } catch (NullPointerException e) {\r
70                         assertTrue(true);\r
71                 }\r
72 \r
73         }\r
74 \r
75         \r
76         @Test\r
77         public void testToResponseCambriaApiException2() {\r
78                 PowerMockito.when(msgs.getNotFound()).thenReturn("Not found");\r
79                 try {\r
80                         mapper.toResponse(new CambriaApiException(404,"Not found"));\r
81                 } catch (NullPointerException e) {\r
82                         assertTrue(true);\r
83                 }\r
84                 assertTrue(true);\r
85         }\r
86 }