bump the version
[dmaap/messagerouter/msgrtr.git] / src / test / java / org / onap / dmaap / mr / test / dme2 / DME2MetricsTest.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.dme2;
23
24 import java.net.URI;
25 import java.net.URISyntaxException;
26 import java.util.HashMap;
27 import java.util.Properties;
28
29 import org.apache.log4j.Logger;
30
31 import junit.framework.TestCase;
32
33 import com.att.aft.dme2.api.DME2Client;
34 import com.att.aft.dme2.api.DME2Exception;
35
36 public class DME2MetricsTest extends TestCase {
37         private static final Logger LOGGER = Logger.getLogger(DME2MetricsTest.class);
38
39         public void testGetMetrics() {
40                 LOGGER.info("Test case get metrics initiated...");
41                 
42                 Properties props = LoadPropertyFile.getPropertyFileDataProducer();
43                 String latitude = props.getProperty("Latitude");
44                 String longitude = props.getProperty("Longitude");
45                 String version = props.getProperty("Version");
46                 String serviceName = props.getProperty("ServiceName");
47                 String env = props.getProperty("Environment");
48                 String partner = props.getProperty("Partner");
49                 String subContextPath = props.getProperty("SubContextPathGetMetrics");
50                 String protocol = props.getProperty("Protocol");
51                 String methodType = props.getProperty("MethodTypeGet");
52                 String user = props.getProperty("user");
53                 String password = props.getProperty("password");
54                 String contenttype = props.getProperty("contenttype");
55                 String url = protocol + "://DME2SEARCH/" + "service=" + serviceName + "/" + "version=" + version + "/"
56                                 + "envContext=" + env + "/" + "partner=" + partner;
57                 LoadPropertyFile.loadAFTProperties(latitude, longitude);
58                 HashMap<String, String> hm = new HashMap<String, String>();
59                 hm.put("AFT_DME2_EP_READ_TIMEOUT_MS", "50000");
60                 hm.put("AFT_DME2_ROUNDTRIP_TIMEOUT_MS", "240000");
61                 hm.put("AFT_DME2_EP_CONN_TIMEOUT", "5000");
62
63                 try {
64                         DME2Client sender = new DME2Client(new URI(url), 5000L);
65                         sender.setAllowAllHttpReturnCodes(true);
66                         sender.setMethod(methodType);
67                         sender.setSubContext(subContextPath);
68                         sender.setPayload("");
69                         sender.addHeader("Content-Type", contenttype);
70                         sender.setCredentials(user, password);
71                         sender.setHeaders(hm);
72
73                         LOGGER.info("Getting Metrics Details");
74                         String reply = sender.sendAndWait(5000L);
75                         assertTrue(LoadPropertyFile.isValidJsonString(reply));
76                         LOGGER.info("response =" + reply);
77
78                 } catch (DME2Exception e) {
79                         e.printStackTrace();
80                 } catch (URISyntaxException e) {
81                         e.printStackTrace();
82                 } catch (Exception e) {
83                         e.printStackTrace();
84                 }
85         }
86
87         public void testGetMetricsByName() {
88                 LOGGER.info("Test case get metrics by name initiated");
89                 Properties props = LoadPropertyFile.getPropertyFileDataProducer();
90                 String latitude = props.getProperty("Latitude");
91                 String longitude = props.getProperty("Longitude");
92                 String version = props.getProperty("Version");
93                 String serviceName = props.getProperty("ServiceName");
94                 String env = props.getProperty("Environment");
95                 String partner = props.getProperty("Partner");
96                 String subContextPath = props.getProperty("SubContextPathGetMetricsByName");
97                 String protocol = props.getProperty("Protocol");
98                 String methodType = props.getProperty("MethodTypeGet");
99                 String user = props.getProperty("user");
100                 String password = props.getProperty("password");
101                 String contenttype = props.getProperty("contenttype");
102                 String url = protocol + "://DME2SEARCH/" + "service=" + serviceName + "/" + "version=" + version + "/"
103                                 + "envContext=" + env + "/" + "partner=" + partner;
104                 LoadPropertyFile.loadAFTProperties(latitude, longitude);
105                 HashMap<String, String> hm = new HashMap<String, String>();
106                 hm.put("AFT_DME2_EP_READ_TIMEOUT_MS", "50000");
107                 hm.put("AFT_DME2_ROUNDTRIP_TIMEOUT_MS", "240000");
108                 hm.put("AFT_DME2_EP_CONN_TIMEOUT", "5000");
109                 try {
110                         DME2Client sender = new DME2Client(new URI(url), 5000L);
111                         sender.setAllowAllHttpReturnCodes(true);
112                         sender.setMethod(methodType);
113                         sender.setSubContext(subContextPath);
114                         sender.setPayload("");
115                         sender.addHeader("Content-Type", contenttype);
116                         sender.setCredentials(user, password);
117                         sender.setHeaders(hm);
118
119                         LOGGER.info("Getting Metrics By name");
120                         String reply = sender.sendAndWait(5000L);
121                         assertTrue(LoadPropertyFile.isValidJsonString(reply));
122                         LOGGER.info("response =" + reply);
123
124                 } catch (DME2Exception e) {
125                         e.printStackTrace();
126                 } catch (URISyntaxException e) {
127                         e.printStackTrace();
128                 } catch (Exception e) {
129                         e.printStackTrace();
130                 }
131         }
132 }