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