a7e88ca5feb2bda050675ebc6d7b8fc364232996
[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 org.junit.After;
24 import org.junit.Before;
25 import org.junit.Test;
26
27 import org.junit.runner.RunWith;
28 import org.mockito.InjectMocks;
29 import org.mockito.Mock;
30 import org.mockito.MockitoAnnotations;
31 import org.powermock.core.classloader.annotations.PowerMockIgnore;
32 import org.powermock.core.classloader.annotations.PrepareForTest;
33 import org.powermock.modules.junit4.PowerMockRunner;
34
35 import com.att.ajsc.beans.PropertiesMapBean;
36 import org.onap.dmaap.dmf.mr.CambriaApiException;
37 import org.onap.dmaap.dmf.mr.service.MetricsService;
38
39
40 @RunWith(PowerMockRunner.class)
41 @PowerMockIgnore("jdk.internal.reflect.*")
42 @PrepareForTest({ PropertiesMapBean.class })
43 public class MetricsRestServiceTest {
44
45         @InjectMocks
46         MetricsRestService metricsRestService;
47
48         @Mock
49         private MetricsService metricsService;
50         
51         @Before
52         public void setUp() throws Exception {
53                 MockitoAnnotations.initMocks(this);
54         }
55
56         @After
57         public void tearDown() throws Exception {
58         }
59
60         @Test
61         public void testGetMetrics() throws CambriaApiException {
62
63                 metricsRestService.getMetrics();
64
65         }
66         
67         @Test
68         public void testGetMetricsByName() throws CambriaApiException {
69
70                 metricsRestService.getMetricsByName("metricsName");
71
72         }
73
74
75
76 }