DMAAP-MR Unit test improvements
[dmaap/messagerouter/messageservice.git] / src / test / java / org / onap / dmaap / service / MetricsRestServiceTest.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.service;
22
23 import static org.mockito.Mockito.doThrow;
24
25 import java.io.IOException;
26
27 import org.junit.Test;
28
29 import org.junit.runner.RunWith;
30 import org.mockito.ArgumentMatchers;
31 import org.mockito.InjectMocks;
32 import org.mockito.Mock;
33 import org.mockito.junit.MockitoJUnitRunner;
34 import org.onap.dmaap.dmf.mr.beans.DMaaPContext;
35 import org.onap.dmaap.dmf.mr.CambriaApiException;
36 import org.onap.dmaap.dmf.mr.service.MetricsService;
37
38
39 @RunWith(MockitoJUnitRunner.class)
40 public class MetricsRestServiceTest {
41
42         @InjectMocks
43         MetricsRestService metricsRestService;
44
45         @Mock
46         private MetricsService metricsService;
47
48         @Test
49         public void testGetMetrics() throws CambriaApiException {
50
51                 metricsRestService.getMetrics();
52
53         }
54
55         @Test(expected = CambriaApiException.class)
56         public void testGetMetrics_IOException() throws CambriaApiException, IOException {
57                 doThrow(new IOException("error")).when(metricsService).get(ArgumentMatchers.any(DMaaPContext.class));
58                 metricsRestService.getMetrics();
59         }
60
61
62         @Test
63         public void testGetMetricsByName() throws CambriaApiException {
64
65                 metricsRestService.getMetricsByName("metricsName");
66         }
67
68         @Test(expected = CambriaApiException.class)
69         public void testGetMetricsByName_IOException() throws CambriaApiException, IOException {
70                 doThrow(new IOException("error")).when(metricsService).getMetricByName(ArgumentMatchers.any(DMaaPContext.class), ArgumentMatchers.any(String.class));
71                 metricsRestService.getMetricsByName("metricsName");
72         }
73
74 }