DMAAP-MR - Merge MR repos
[dmaap/messagerouter/messageservice.git] / src / test / java / org / onap / dmaap / mr / test / dmaap / DmaapMetricsTest.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 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  *        http://www.apache.org/licenses/LICENSE-2.0
11  *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package org.onap.dmaap.mr.test.dmaap;
23
24 public class DmaapMetricsTest {
25         /*private static final Logger LOGGER = Logger.getLogger(DmaapMetricsTest.class);
26         Client client = ClientBuilder.newClient();
27         WebTarget target = client.target(LoadPropertyFile.getPropertyFileData().getProperty("url"));
28
29         public void assertStatus(Response response) {
30                 assertTrue(response.getStatus() == HttpStatus.SC_OK);
31         }
32
33
34         // 1.get metrics
35         public void testMetrics() {
36                 LOGGER.info("test case get all metrics");
37                 target = target.path("/metrics");
38                 Response response = target.request().get();
39                 assertStatus(response);
40                 LOGGER.info("successfully returned after fetching all metrics");
41                 InputStream is = (InputStream) response.getEntity();
42                 Scanner s = new Scanner(is);
43                 s.useDelimiter("\\A");
44                 String data = s.next();
45                 s.close();
46                 LOGGER.info("DmaapMetricTest Test all metrics" + data);
47         }
48
49         // 2.get metrics by name
50         public void testMetricsByName() {
51                 LOGGER.info("test case get metrics by name");
52                 target = target.path("/metrics/startTime");
53                 Response response = target.request().get();
54                 assertStatus(response);
55                 LOGGER.info("successfully returned after fetching specific metrics");
56                 InputStream is = (InputStream) response.getEntity();
57                 Scanner s = new Scanner(is);
58                 s.useDelimiter("\\A");
59                 String data = s.next();
60                 s.close();
61                 LOGGER.info("DmaapMetricTest metrics by name" + data);
62         }
63 */
64 }